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]
24client = { path = "../client" }
25clock = { path = "../clock" }
26collections = { path = "../collections" }
27git = { path = "../git" }
28gpui = { path = "../gpui" }
29language = { path = "../language" }
30lsp = { path = "../lsp" }
31rich_text = { path = "../rich_text" }
32settings = { path = "../settings" }
33snippet = { path = "../snippet" }
34sum_tree = { path = "../sum_tree" }
35text = { path = "../text" }
36theme = { path = "../theme" }
37util = { path = "../util" }
38
39aho-corasick = "1.1"
40anyhow.workspace = true
41convert_case = "0.6.0"
42futures.workspace = true
43indoc = "1.0.4"
44itertools = "0.10"
45lazy_static.workspace = true
46log.workspace = true
47ordered-float.workspace = true
48parking_lot.workspace = true
49postage.workspace = true
50pulldown-cmark = { version = "0.9.2", default-features = false }
51rand.workspace = true
52schemars.workspace = true
53serde.workspace = true
54serde_derive.workspace = true
55smallvec.workspace = true
56smol.workspace = true
57
58tree-sitter-rust = { workspace = true, optional = true }
59tree-sitter-html = { workspace = true, optional = true }
60tree-sitter-typescript = { workspace = true, optional = true }
61
62[dev-dependencies]
63copilot = { path = "../copilot", features = ["test-support"] }
64text = { path = "../text", features = ["test-support"] }
65language = { path = "../language", features = ["test-support"] }
66lsp = { path = "../lsp", features = ["test-support"] }
67gpui = { path = "../gpui", features = ["test-support"] }
68util = { path = "../util", features = ["test-support"] }
69project = { path = "../project", features = ["test-support"] }
70settings = { path = "../settings", features = ["test-support"] }
71
72ctor.workspace = true
73env_logger.workspace = true
74rand.workspace = true
75unindent.workspace = true
76tree-sitter.workspace = true
77tree-sitter-rust.workspace = true
78tree-sitter-html.workspace = true
79tree-sitter-typescript.workspace = true