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    "client2/test-support",
14    "db2/test-support",
15    "language2/test-support",
16    "settings2/test-support",
17    "text/test-support",
18    "prettier2/test-support",
19]
20
21[dependencies]
22text = { path = "../text" }
23copilot2 = { path = "../copilot2" }
24client2 = { path = "../client2" }
25clock = { path = "../clock" }
26collections = { path = "../collections" }
27db2 = { path = "../db2" }
28fs2 = { path = "../fs2" }
29fsevent = { path = "../fsevent" }
30fuzzy2 = { path = "../fuzzy2" }
31git = { path = "../git" }
32gpui2 = { path = "../gpui2" }
33language2 = { path = "../language2" }
34lsp2 = { path = "../lsp2" }
35node_runtime = { path = "../node_runtime" }
36prettier2 = { path = "../prettier2" }
37rpc2 = { path = "../rpc2" }
38settings2 = { path = "../settings2" }
39sum_tree = { path = "../sum_tree" }
40terminal2 = { path = "../terminal2" }
41util = { path = "../util" }
42
43aho-corasick = "1.1"
44anyhow.workspace = true
45async-trait.workspace = true
46backtrace = "0.3"
47futures.workspace = true
48globset.workspace = true
49ignore = "0.4"
50lazy_static.workspace = true
51log.workspace = true
52parking_lot.workspace = true
53postage.workspace = true
54rand.workspace = true
55regex.workspace = true
56schemars.workspace = true
57serde.workspace = true
58serde_derive.workspace = true
59serde_json.workspace = true
60sha2 = "0.10"
61similar = "1.3"
62smol.workspace = true
63thiserror.workspace = true
64toml.workspace = true
65itertools = "0.10"
66
67[dev-dependencies]
68ctor.workspace = true
69env_logger.workspace = true
70pretty_assertions.workspace = true
71client2 = { path = "../client2", features = ["test-support"] }
72collections = { path = "../collections", features = ["test-support"] }
73db2 = { path = "../db2", features = ["test-support"] }
74fs2 = { path = "../fs2",  features = ["test-support"] }
75gpui2 = { path = "../gpui2", features = ["test-support"] }
76language2 = { path = "../language2", features = ["test-support"] }
77lsp2 = { path = "../lsp2", features = ["test-support"] }
78settings2 = { path = "../settings2", features = ["test-support"] }
79prettier2 = { path = "../prettier2", features = ["test-support"] }
80util = { path = "../util", features = ["test-support"] }
81rpc2 = { path = "../rpc2", features = ["test-support"] }
82git2.workspace = true
83tempdir.workspace = true
84unindent.workspace = true