Cargo.toml

 1[package]
 2name = "project2"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/project2.rs"
 9doctest = false
10
11[features]
12test-support = [
13    "client/test-support",
14    "db/test-support",
15    "language/test-support",
16    "settings/test-support",
17    "text/test-support",
18    "prettier/test-support",
19    "gpui/test-support",
20]
21
22[dependencies]
23text = { package = "text2", path = "../text2" }
24copilot = { package = "copilot2", path = "../copilot2" }
25client = { package = "client2", path = "../client2" }
26clock = { path = "../clock" }
27collections = { path = "../collections" }
28db = { package = "db2", path = "../db2" }
29fs = { package = "fs2", path = "../fs2" }
30fsevent = { path = "../fsevent" }
31fuzzy = { package = "fuzzy2", path = "../fuzzy2" }
32git = { package = "git3", path = "../git3" }
33gpui = { package = "gpui2", path = "../gpui2" }
34language = { package = "language2", path = "../language2" }
35lsp = { package = "lsp2", path = "../lsp2" }
36node_runtime = { path = "../node_runtime" }
37prettier = { package = "prettier2", path = "../prettier2" }
38rpc = { package = "rpc2", path = "../rpc2" }
39settings = { package = "settings2", path = "../settings2" }
40sum_tree = { path = "../sum_tree" }
41terminal = { package = "terminal2", path = "../terminal2" }
42util = { path = "../util" }
43
44aho-corasick = "1.1"
45anyhow.workspace = true
46async-trait.workspace = true
47backtrace = "0.3"
48futures.workspace = true
49globset.workspace = true
50ignore = "0.4"
51lazy_static.workspace = true
52log.workspace = true
53parking_lot.workspace = true
54postage.workspace = true
55rand.workspace = true
56regex.workspace = true
57schemars.workspace = true
58serde.workspace = true
59serde_derive.workspace = true
60serde_json.workspace = true
61sha2 = "0.10"
62similar = "1.3"
63smol.workspace = true
64thiserror.workspace = true
65toml.workspace = true
66itertools = "0.10"
67
68[dev-dependencies]
69ctor.workspace = true
70env_logger.workspace = true
71pretty_assertions.workspace = true
72client = { package = "client2", path = "../client2", features = ["test-support"] }
73collections = { path = "../collections", features = ["test-support"] }
74db = { package = "db2", path = "../db2", features = ["test-support"] }
75fs = { package = "fs2", path = "../fs2",  features = ["test-support"] }
76gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
77language = { package = "language2", path = "../language2", features = ["test-support"] }
78lsp = { package = "lsp2", path = "../lsp2", features = ["test-support"] }
79settings = { package = "settings2", path = "../settings2", features = ["test-support"] }
80prettier = { package = "prettier2", path = "../prettier2", features = ["test-support"] }
81util = { path = "../util", features = ["test-support"] }
82rpc = { package = "rpc2", path = "../rpc2", features = ["test-support"] }
83git2.workspace = true
84tempdir.workspace = true
85unindent.workspace = true