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