Cargo.toml

 1[package]
 2name = "editor"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/editor.rs"
 8doctest = false
 9
10[features]
11test-support = [
12    "rand",
13    "text/test-support",
14    "language/test-support",
15    "gpui/test-support",
16    "project/test-support",
17    "util/test-support",
18    "workspace/test-support",
19]
20
21[dependencies]
22text = { path = "../text" }
23clock = { path = "../clock" }
24collections = { path = "../collections" }
25fuzzy = { path = "../fuzzy" }
26gpui = { path = "../gpui" }
27language = { path = "../language" }
28lsp = { path = "../lsp" }
29project = { path = "../project" }
30rpc = { path = "../rpc" }
31settings = { path = "../settings" }
32snippet = { path = "../snippet" }
33sum_tree = { path = "../sum_tree" }
34theme = { path = "../theme" }
35util = { path = "../util" }
36workspace = { path = "../workspace" }
37aho-corasick = "0.7"
38anyhow = "1.0"
39futures = "0.3"
40indoc = "1.0.4"
41itertools = "0.10"
42lazy_static = "1.4"
43log = { version = "0.4.16", features = ["kv_unstable_serde"] }
44ordered-float = "2.1.1"
45parking_lot = "0.11"
46postage = { version = "0.4", features = ["futures-traits"] }
47rand = { version = "0.8.3", optional = true }
48serde = { version = "1.0", features = ["derive", "rc"] }
49smallvec = { version = "1.6", features = ["union"] }
50smol = "1.2"
51
52[dev-dependencies]
53text = { path = "../text", features = ["test-support"] }
54language = { path = "../language", features = ["test-support"] }
55lsp = { path = "../lsp", features = ["test-support"] }
56gpui = { path = "../gpui", features = ["test-support"] }
57util = { path = "../util", features = ["test-support"] }
58project = { path = "../project", features = ["test-support"] }
59settings = { path = "../settings", features = ["test-support"] }
60workspace = { path = "../workspace", features = ["test-support"] }
61ctor = "0.1"
62env_logger = "0.9"
63rand = "0.8"
64unindent = "0.1.7"
65tree-sitter = "0.20"
66tree-sitter-rust = "0.20"