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" }
29anyhow = "1.0.38"
30async-trait = "0.1"
31futures = "0.3"
32ignore = "0.4"
33lazy_static = "1.4.0"
34libc = "0.2"
35log = "0.4"
36parking_lot = "0.11.1"
37postage = { version = "0.4.1", features = ["futures-traits"] }
38serde = { version = "1", features = ["derive"] }
39serde_json = { version = "1.0.64", features = ["preserve_order"] }
40smol = "1.2.5"
41toml = "0.5"
42
43[dev-dependencies]
44client = { path = "../client", features = ["test-support"] }
45collections = { path = "../collections", features = ["test-support"] }
46gpui = { path = "../gpui", features = ["test-support"] }
47language = { path = "../language", features = ["test-support"] }
48lsp = { path = "../lsp", features = ["test-support"] }
49util = { path = "../util", features = ["test-support"] }
50rpc = { path = "../rpc", features = ["test-support"] }
51rand = "0.8.3"
52simplelog = "0.9"
53tempdir = { version = "0.3.7" }
54unindent = "0.1.7"