Cargo.toml

 1[package]
 2name = "project"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/project.rs"
 8doctest = false
 9
10[features]
11test-support = [
12    "client/test-support",
13    "db/test-support",
14    "language/test-support",
15    "settings/test-support",
16    "text/test-support",
17]
18
19[dependencies]
20text = { path = "../text" }
21client = { path = "../client" }
22clock = { path = "../clock" }
23collections = { path = "../collections" }
24db = { path = "../db" }
25fsevent = { path = "../fsevent" }
26fuzzy = { path = "../fuzzy" }
27git = { path = "../git" }
28gpui = { path = "../gpui" }
29language = { path = "../language" }
30lsp = { path = "../lsp" }
31rpc = { path = "../rpc" }
32settings = { path = "../settings" }
33sum_tree = { path = "../sum_tree" }
34util = { path = "../util" }
35aho-corasick = "0.7"
36anyhow = "1.0.57"
37async-trait = "0.1"
38futures = "0.3"
39ignore = "0.4"
40lazy_static = "1.4.0"
41libc = "0.2"
42log = { version = "0.4.16", features = ["kv_unstable_serde"] }
43parking_lot = "0.11.1"
44postage = { version = "0.4.1", features = ["futures-traits"] }
45pulldown-cmark = { version = "0.9.1", default-features = false }
46rand = "0.8.3"
47regex = "1.5"
48serde = { version = "1.0", features = ["derive", "rc"] }
49serde_json = { version = "1.0", features = ["preserve_order"] }
50sha2 = "0.10"
51similar = "1.3"
52smol = "1.2.5"
53thiserror = "1.0.29"
54toml = "0.5"
55rocksdb = "0.18"
56
57[dev-dependencies]
58client = { path = "../client", features = ["test-support"] }
59collections = { path = "../collections", features = ["test-support"] }
60db = { path = "../db", features = ["test-support"] }
61gpui = { path = "../gpui", features = ["test-support"] }
62language = { path = "../language", features = ["test-support"] }
63lsp = { path = "../lsp", features = ["test-support"] }
64settings = { path = "../settings", features = ["test-support"] }
65util = { path = "../util", features = ["test-support"] }
66rpc = { path = "../rpc", features = ["test-support"] }
67tempdir = { version = "0.3.7" }
68unindent = "0.1.7"