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"
40backtrace = "0.3"
41futures = "0.3"
42ignore = "0.4"
43lazy_static = "1.4.0"
44log = { version = "0.4.16", features = ["kv_unstable_serde"] }
45parking_lot = "0.11.1"
46postage = { version = "0.4.1", features = ["futures-traits"] }
47pulldown-cmark = { version = "0.9.1", default-features = false }
48rand = "0.8.3"
49regex = "1.5"
50serde = { version = "1.0", features = ["derive", "rc"] }
51serde_json = { version = "1.0", features = ["preserve_order"] }
52sha2 = "0.10"
53similar = "1.3"
54smol = "1.2.5"
55thiserror = "1.0.29"
56toml = "0.5"
57
58[dev-dependencies]
59client = { path = "../client", features = ["test-support"] }
60collections = { path = "../collections", features = ["test-support"] }
61db = { path = "../db", features = ["test-support"] }
62fs = { path = "../fs", features = ["test-support"] }
63gpui = { path = "../gpui", features = ["test-support"] }
64language = { path = "../language", features = ["test-support"] }
65lsp = { path = "../lsp", features = ["test-support"] }
66settings = { path = "../settings", features = ["test-support"] }
67util = { path = "../util", features = ["test-support"] }
68rpc = { path = "../rpc", features = ["test-support"] }
69tempdir = { version = "0.3.7" }
70unindent = "0.1.7"