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