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" }
39settings = { path = "../settings" }
40snippet = { path = "../snippet" }
41sum_tree = { path = "../sum_tree" }
42text = { path = "../text" }
43theme = { path = "../theme" }
44util = { path = "../util" }
45sqlez = { path = "../sqlez" }
46workspace = { path = "../workspace" }
47
48aho-corasick = "1.1"
49anyhow.workspace = true
50convert_case = "0.6.0"
51futures.workspace = true
52indoc = "1.0.4"
53itertools = "0.10"
54lazy_static.workspace = true
55log.workspace = true
56ordered-float.workspace = true
57parking_lot.workspace = true
58postage.workspace = true
59pulldown-cmark = { version = "0.9.2", default-features = false }
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