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