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