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