Cargo.toml

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