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