Cargo.toml

 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    "multi_buffer/test-support",
18    "project/test-support",
19    "util/test-support",
20    "workspace/test-support",
21    "tree-sitter-rust",
22    "tree-sitter-typescript"
23]
24
25[dependencies]
26client = { path = "../client" }
27clock = { path = "../clock" }
28copilot = { path = "../copilot" }
29db = { path = "../db" }
30collections = { path = "../collections" }
31# context_menu = { path = "../context_menu" }
32fuzzy = {  path = "../fuzzy" }
33git = { path = "../git" }
34gpui = { path = "../gpui" }
35language = { path = "../language" }
36lsp = { path = "../lsp" }
37multi_buffer = { path = "../multi_buffer" }
38project = { path = "../project" }
39rpc = { path = "../rpc" }
40rich_text = { path = "../rich_text" }
41settings = { path = "../settings" }
42snippet = { path = "../snippet" }
43sum_tree = { path = "../sum_tree" }
44text = { path = "../text" }
45theme = { path = "../theme" }
46ui = { path = "../ui" }
47util = { path = "../util" }
48sqlez = { path = "../sqlez" }
49workspace = { path = "../workspace" }
50
51aho-corasick = "1.1"
52anyhow.workspace = true
53convert_case = "0.6.0"
54futures.workspace = true
55indoc = "1.0.4"
56itertools = "0.10"
57lazy_static.workspace = true
58log.workspace = true
59ordered-float.workspace = true
60parking_lot.workspace = true
61postage.workspace = true
62rand.workspace = true
63schemars.workspace = true
64serde.workspace = true
65serde_json.workspace = true
66serde_derive.workspace = true
67smallvec.workspace = true
68smol.workspace = true
69
70tree-sitter-rust = { workspace = true, optional = true }
71tree-sitter-html = { workspace = true, optional = true }
72tree-sitter-typescript = { workspace = true, optional = true }
73
74[dev-dependencies]
75copilot = { path = "../copilot", features = ["test-support"] }
76text = { path = "../text", features = ["test-support"] }
77language = { path = "../language", features = ["test-support"] }
78lsp = { path = "../lsp", features = ["test-support"] }
79gpui = { path = "../gpui", features = ["test-support"] }
80util = { path = "../util", features = ["test-support"] }
81project = { path = "../project", features = ["test-support"] }
82settings = { path = "../settings", features = ["test-support"] }
83workspace = { path = "../workspace", features = ["test-support"] }
84multi_buffer = { path = "../multi_buffer", features = ["test-support"] }
85
86ctor.workspace = true
87env_logger.workspace = true
88rand.workspace = true
89unindent.workspace = true
90tree-sitter.workspace = true
91tree-sitter-rust.workspace = true
92tree-sitter-html.workspace = true
93tree-sitter-typescript.workspace = true