Cargo.toml

 1[package]
 2name = "multi_buffer"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lib]
 9path = "src/multi_buffer.rs"
10doctest = false
11
12[features]
13test-support = [
14    "copilot/test-support",
15    "text/test-support",
16    "language/test-support",
17    "gpui/test-support",
18    "util/test-support",
19    "tree-sitter-rust",
20    "tree-sitter-typescript"
21]
22
23[dependencies]
24aho-corasick = "1.1"
25anyhow.workspace = true
26client = { path = "../client" }
27clock = { path = "../clock" }
28collections = { path = "../collections" }
29convert_case = "0.6.0"
30futures.workspace = true
31git = { path = "../git" }
32gpui = { path = "../gpui" }
33indoc = "1.0.4"
34itertools = "0.10"
35language = { path = "../language" }
36lazy_static.workspace = true
37log.workspace = true
38lsp = { path = "../lsp" }
39ordered-float.workspace = true
40parking_lot.workspace = true
41postage.workspace = true
42pulldown-cmark = { version = "0.9.2", default-features = false }
43rand.workspace = true
44rich_text = { path = "../rich_text" }
45schemars.workspace = true
46serde.workspace = true
47serde_derive.workspace = true
48settings = { path = "../settings" }
49smallvec.workspace = true
50smol.workspace = true
51snippet = { path = "../snippet" }
52sum_tree = { path = "../sum_tree" }
53text = { path = "../text" }
54theme = { path = "../theme" }
55tree-sitter-html = { workspace = true, optional = true }
56tree-sitter-rust = { workspace = true, optional = true }
57tree-sitter-typescript = { workspace = true, optional = true }
58util = { path = "../util" }
59
60[dev-dependencies]
61copilot = { path = "../copilot", features = ["test-support"] }
62ctor.workspace = true
63env_logger.workspace = true
64gpui = { path = "../gpui", features = ["test-support"] }
65language = { path = "../language", features = ["test-support"] }
66lsp = { path = "../lsp", features = ["test-support"] }
67project = { path = "../project", features = ["test-support"] }
68rand.workspace = true
69settings = { path = "../settings", features = ["test-support"] }
70text = { path = "../text", features = ["test-support"] }
71tree-sitter-html.workspace = true
72tree-sitter-rust.workspace = true
73tree-sitter-typescript.workspace = true
74tree-sitter.workspace = true
75unindent.workspace = true
76util = { path = "../util", features = ["test-support"] }