1[package]
2name = "multi_buffer2"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/multi_buffer2.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 = { package = "client2", path = "../client2" }
24clock = { path = "../clock" }
25collections = { path = "../collections" }
26git = { package = "git3", path = "../git3" }
27gpui = { package = "gpui2", path = "../gpui2" }
28language = { package = "language2", path = "../language2" }
29lsp = { package = "lsp2", path = "../lsp2" }
30rich_text = { package = "rich_text2", path = "../rich_text2" }
31settings = { package = "settings2", path = "../settings2" }
32snippet = { path = "../snippet" }
33sum_tree = { path = "../sum_tree" }
34text = { package = "text2", path = "../text2" }
35theme = { package = "theme2", path = "../theme2" }
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 = { package = "copilot2", path = "../copilot2", features = ["test-support"] }
63text = { package = "text2", path = "../text2", features = ["test-support"] }
64language = { package = "language2", path = "../language2", features = ["test-support"] }
65lsp = { package = "lsp2", path = "../lsp2", features = ["test-support"] }
66gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
67util = { path = "../util", features = ["test-support"] }
68project = { package = "project2", path = "../project2", features = ["test-support"] }
69settings = { package = "settings2", path = "../settings2", 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