Cargo.toml

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