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