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