Cargo.toml

 1[package]
 2name = "project"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/project.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 = { path = "../text" }
24copilot = { path = "../copilot" }
25client = { path = "../client" }
26clock = { path = "../clock" }
27collections = { path = "../collections" }
28db = { path = "../db" }
29fs = { path = "../fs" }
30fsevent = { path = "../fsevent" }
31fuzzy = {  path = "../fuzzy" }
32git = { path = "../git" }
33gpui = { path = "../gpui" }
34language = { path = "../language" }
35lsp = { path = "../lsp" }
36node_runtime = { path = "../node_runtime" }
37prettier = { path = "../prettier" }
38rpc = { path = "../rpc" }
39settings = { path = "../settings" }
40sum_tree = { path = "../sum_tree" }
41terminal = { path = "../terminal" }
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 = { path = "../client", features = ["test-support"] }
73collections = { path = "../collections", features = ["test-support"] }
74db = { path = "../db", features = ["test-support"] }
75fs = { path = "../fs",  features = ["test-support"] }
76gpui = { path = "../gpui", features = ["test-support"] }
77language = { path = "../language", features = ["test-support"] }
78lsp = { path = "../lsp", features = ["test-support"] }
79settings = { path = "../settings", features = ["test-support"] }
80prettier = { path = "../prettier", features = ["test-support"] }
81util = { path = "../util", features = ["test-support"] }
82rpc = { path = "../rpc", features = ["test-support"] }
83git2.workspace = true
84tempdir.workspace = true
85unindent.workspace = true