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    "language/test-support",
14    "text/test-support",
15]
16
17[dependencies]
18text = { path = "../text" }
19client = { path = "../client" }
20clock = { path = "../clock" }
21collections = { path = "../collections" }
22fsevent = { path = "../fsevent" }
23fuzzy = { path = "../fuzzy" }
24gpui = { path = "../gpui" }
25language = { path = "../language" }
26lsp = { path = "../lsp" }
27rpc = { path = "../rpc" }
28settings = { path = "../settings" }
29sum_tree = { path = "../sum_tree" }
30util = { path = "../util" }
31aho-corasick = "0.7"
32anyhow = "1.0.57"
33async-trait = "0.1"
34futures = "0.3"
35ignore = "0.4"
36lazy_static = "1.4.0"
37libc = "0.2"
38log = { version = "0.4.16", features = ["kv_unstable_serde"] }
39parking_lot = "0.11.1"
40postage = { version = "0.4.1", features = ["futures-traits"] }
41pulldown-cmark = { version = "0.9.1", default-features = false }
42rand = "0.8.3"
43regex = "1.5"
44serde = { version = "1.0", features = ["derive", "rc"] }
45serde_json = { version = "1.0", features = ["preserve_order"] }
46sha2 = "0.10"
47similar = "1.3"
48smol = "1.2.5"
49thiserror = "1.0.29"
50toml = "0.5"
51rocksdb = "0.18"
52
53[dev-dependencies]
54client = { path = "../client", features = ["test-support"] }
55collections = { path = "../collections", features = ["test-support"] }
56gpui = { path = "../gpui", features = ["test-support"] }
57language = { path = "../language", features = ["test-support"] }
58lsp = { path = "../lsp", features = ["test-support"] }
59util = { path = "../util", features = ["test-support"] }
60rpc = { path = "../rpc", features = ["test-support"] }
61tempdir = { version = "0.3.7" }
62unindent = "0.1.7"