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" }
30glob = { version = "0.3.1" }
31gpui = { path = "../gpui" }
32language = { path = "../language" }
33lsp = { path = "../lsp" }
34rpc = { path = "../rpc" }
35settings = { path = "../settings" }
36sum_tree = { path = "../sum_tree" }
37terminal = { path = "../terminal" }
38util = { path = "../util" }
39aho-corasick = "0.7"
40anyhow = "1.0.57"
41async-trait = "0.1"
42backtrace = "0.3"
43futures = "0.3"
44ignore = "0.4"
45lazy_static = "1.4.0"
46log = { version = "0.4.16", features = ["kv_unstable_serde"] }
47parking_lot = "0.11.1"
48postage = { workspace = true }
49pulldown-cmark = { version = "0.9.1", default-features = false }
50rand = "0.8.3"
51regex = "1.5"
52serde = { version = "1.0", features = ["derive", "rc"] }
53serde_derive = { version = "1.0", features = ["deserialize_in_place"] }
54serde_json = { version = "1.0", features = ["preserve_order"] }
55sha2 = "0.10"
56similar = "1.3"
57smol = "1.2.5"
58thiserror = "1.0.29"
59toml = "0.5"
60
61[dev-dependencies]
62ctor = "0.1"
63env_logger = "0.9"
64pretty_assertions = "1.3.0"
65client = { path = "../client", features = ["test-support"] }
66collections = { path = "../collections", features = ["test-support"] }
67db = { path = "../db", features = ["test-support"] }
68fs = { path = "../fs",  features = ["test-support"] }
69gpui = { path = "../gpui", features = ["test-support"] }
70language = { path = "../language", features = ["test-support"] }
71lsp = { path = "../lsp", features = ["test-support"] }
72settings = { path = "../settings", features = ["test-support"] }
73util = { path = "../util", features = ["test-support"] }
74rpc = { path = "../rpc", features = ["test-support"] }
75tempdir = { version = "0.3.7" }
76unindent = "0.1.7"