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"
40itertools = "0.10"
41lazy_static = "1.4"
42log = "0.4"
43ordered-float = "2.1.1"
44parking_lot = "0.11"
45postage = { version = "0.4", features = ["futures-traits"] }
46rand = { version = "0.8.3", optional = true }
47serde = { version = "1", features = ["derive", "rc"] }
48smallvec = { version = "1.6", features = ["union"] }
49smol = "1.2"
50
51[dev-dependencies]
52text = { path = "../text", features = ["test-support"] }
53language = { path = "../language", features = ["test-support"] }
54lsp = { path = "../lsp", features = ["test-support"] }
55gpui = { path = "../gpui", features = ["test-support"] }
56util = { path = "../util", features = ["test-support"] }
57project = { path = "../project", features = ["test-support"] }
58settings = { path = "../settings", features = ["test-support"] }
59workspace = { path = "../workspace", features = ["test-support"] }
60ctor = "0.1"
61env_logger = "0.8"
62rand = "0.8"
63unindent = "0.1.7"
64tree-sitter = "0.20"
65tree-sitter-rust = "0.20"