Cargo.toml

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