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 "util/test-support",
15]
16
17[dependencies]
18text = { path = "../text" }
19clock = { path = "../clock" }
20gpui = { path = "../gpui" }
21language = { path = "../language" }
22project = { path = "../project" }
23sum_tree = { path = "../sum_tree" }
24theme = { path = "../theme" }
25util = { path = "../util" }
26workspace = { path = "../workspace" }
27aho-corasick = "0.7"
28anyhow = "1.0"
29lazy_static = "1.4"
30log = "0.4"
31parking_lot = "0.11"
32postage = { version = "0.4", features = ["futures-traits"] }
33serde = { version = "1", features = ["derive", "rc"] }
34smallvec = { version = "1.6", features = ["union"] }
35smol = "1.2"
36
37[dev-dependencies]
38text = { path = "../text", features = ["test-support"] }
39language = { path = "../language", features = ["test-support"] }
40gpui = { path = "../gpui", features = ["test-support"] }
41util = { path = "../util", features = ["test-support"] }
42ctor = "0.1"
43env_logger = "0.8"
44rand = "0.8"
45unindent = "0.1.7"
46tree-sitter = "0.20"
47tree-sitter-rust = "0.20"