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" }
26context_menu = { path = "../context_menu" }
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"] }
71workspace = { path = "../workspace", features = ["test-support"] }
72
73ctor.workspace = true
74env_logger.workspace = true
75rand.workspace = true
76unindent.workspace = true
77tree-sitter.workspace = true
78tree-sitter-rust.workspace = true
79tree-sitter-html.workspace = true
80tree-sitter-typescript.workspace = true