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