Cargo.toml

 1[package]
 2name = "project"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/project.rs"
 8
 9[features]
10test-support = [
11    "client/test-support",
12    "language/test-support",
13    "text/test-support",
14]
15
16[dependencies]
17text = { path = "../text" }
18client = { path = "../client" }
19clock = { path = "../clock" }
20collections = { path = "../collections" }
21fsevent = { path = "../fsevent" }
22fuzzy = { path = "../fuzzy" }
23gpui = { path = "../gpui" }
24language = { path = "../language" }
25lsp = { path = "../lsp" }
26rpc = { path = "../rpc" }
27sum_tree = { path = "../sum_tree" }
28util = { path = "../util" }
29aho-corasick = "0.7"
30anyhow = "1.0.38"
31async-trait = "0.1"
32futures = "0.3"
33ignore = "0.4"
34lazy_static = "1.4.0"
35libc = "0.2"
36log = "0.4"
37parking_lot = "0.11.1"
38postage = { version = "0.4.1", features = ["futures-traits"] }
39rand = "0.8.3"
40regex = "1.5"
41serde = { version = "1", features = ["derive"] }
42serde_json = { version = "1.0.64", features = ["preserve_order"] }
43sha2 = "0.10"
44smol = "1.2.5"
45toml = "0.5"
46
47[dev-dependencies]
48client = { path = "../client", features = ["test-support"] }
49collections = { path = "../collections", features = ["test-support"] }
50gpui = { path = "../gpui", features = ["test-support"] }
51language = { path = "../language", features = ["test-support"] }
52lsp = { path = "../lsp", features = ["test-support"] }
53util = { path = "../util", features = ["test-support"] }
54rpc = { path = "../rpc", features = ["test-support"] }
55tempdir = { version = "0.3.7" }
56unindent = "0.1.7"