Cargo.toml

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