Cargo.toml

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