Cargo.toml

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