Cargo.toml

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