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_derive = { version = "1.0", features = ["deserialize_in_place"] }
53serde_json = { version = "1.0", features = ["preserve_order"] }
54sha2 = "0.10"
55similar = "1.3"
56smol = "1.2.5"
57thiserror = "1.0.29"
58toml = "0.5"
59
60[dev-dependencies]
61pretty_assertions = "1.3.0"
62client = { path = "../client", features = ["test-support"] }
63collections = { path = "../collections", features = ["test-support"] }
64db = { path = "../db", features = ["test-support"] }
65fs = { path = "../fs", features = ["test-support"] }
66gpui = { path = "../gpui", features = ["test-support"] }
67language = { path = "../language", features = ["test-support"] }
68lsp = { path = "../lsp", features = ["test-support"] }
69settings = { path = "../settings", features = ["test-support"] }
70util = { path = "../util", features = ["test-support"] }
71rpc = { path = "../rpc", features = ["test-support"] }
72tempdir = { version = "0.3.7" }
73unindent = "0.1.7"