Cargo.toml

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