1[package]
2name = "editor"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/editor.rs"
9doctest = false
10
11[features]
12test-support = [
13 "copilot/test-support",
14 "text/test-support",
15 "language/test-support",
16 "gpui/test-support",
17 "project/test-support",
18 "util/test-support",
19 "workspace/test-support",
20 "tree-sitter-rust",
21 "tree-sitter-typescript"
22]
23
24[dependencies]
25client = { path = "../client" }
26clock = { path = "../clock" }
27copilot = { path = "../copilot" }
28db = { path = "../db" }
29drag_and_drop = { path = "../drag_and_drop" }
30collections = { path = "../collections" }
31context_menu = { path = "../context_menu" }
32fuzzy = { path = "../fuzzy" }
33git = { path = "../git" }
34gpui = { path = "../gpui" }
35language = { path = "../language" }
36lsp = { path = "../lsp" }
37project = { path = "../project" }
38rpc = { path = "../rpc" }
39rich_text = { path = "../rich_text" }
40settings = { path = "../settings" }
41snippet = { path = "../snippet" }
42sum_tree = { path = "../sum_tree" }
43text = { path = "../text" }
44theme = { path = "../theme" }
45util = { path = "../util" }
46sqlez = { path = "../sqlez" }
47workspace = { path = "../workspace" }
48
49aho-corasick = "1.1"
50anyhow.workspace = true
51convert_case = "0.6.0"
52futures.workspace = true
53indoc = "1.0.4"
54itertools = "0.10"
55lazy_static.workspace = true
56log.workspace = true
57ordered-float.workspace = true
58parking_lot.workspace = true
59postage.workspace = true
60pulldown-cmark = { version = "0.9.2", default-features = false }
61rand.workspace = true
62schemars.workspace = true
63serde.workspace = true
64serde_derive.workspace = true
65smallvec.workspace = true
66smol.workspace = true
67
68tree-sitter-rust = { workspace = true, optional = true }
69tree-sitter-html = { workspace = true, optional = true }
70tree-sitter-typescript = { workspace = true, optional = true }
71
72[dev-dependencies]
73copilot = { path = "../copilot", features = ["test-support"] }
74text = { path = "../text", features = ["test-support"] }
75language = { path = "../language", features = ["test-support"] }
76lsp = { path = "../lsp", features = ["test-support"] }
77gpui = { path = "../gpui", features = ["test-support"] }
78util = { path = "../util", features = ["test-support"] }
79project = { path = "../project", features = ["test-support"] }
80settings = { path = "../settings", features = ["test-support"] }
81workspace = { path = "../workspace", features = ["test-support"] }
82
83ctor.workspace = true
84env_logger.workspace = true
85rand.workspace = true
86unindent.workspace = true
87tree-sitter.workspace = true
88tree-sitter-rust.workspace = true
89tree-sitter-html.workspace = true
90tree-sitter-typescript.workspace = true