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 "language/test-support",
14 "text/test-support",
15]
16
17[dependencies]
18text = { path = "../text" }
19client = { path = "../client" }
20clock = { path = "../clock" }
21collections = { path = "../collections" }
22fsevent = { path = "../fsevent" }
23fuzzy = { path = "../fuzzy" }
24gpui = { path = "../gpui" }
25language = { path = "../language" }
26lsp = { path = "../lsp" }
27rpc = { path = "../rpc" }
28settings = { path = "../settings" }
29sum_tree = { path = "../sum_tree" }
30util = { path = "../util" }
31aho-corasick = "0.7"
32anyhow = "1.0.38"
33async-trait = "0.1"
34futures = "0.3"
35ignore = "0.4"
36lazy_static = "1.4.0"
37libc = "0.2"
38log = { version = "0.4.16", features = ["kv_unstable_serde"] }
39parking_lot = "0.11.1"
40postage = { version = "0.4.1", features = ["futures-traits"] }
41rand = "0.8.3"
42regex = "1.5"
43serde = { version = "1", features = ["derive"] }
44serde_json = { version = "1.0.64", features = ["preserve_order"] }
45sha2 = "0.10"
46similar = "1.3"
47smol = "1.2.5"
48toml = "0.5"
49
50[dev-dependencies]
51client = { path = "../client", features = ["test-support"] }
52collections = { path = "../collections", features = ["test-support"] }
53gpui = { path = "../gpui", features = ["test-support"] }
54language = { path = "../language", features = ["test-support"] }
55lsp = { path = "../lsp", features = ["test-support"] }
56util = { path = "../util", features = ["test-support"] }
57rpc = { path = "../rpc", features = ["test-support"] }
58tempdir = { version = "0.3.7" }
59unindent = "0.1.7"