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 "prettier/test-support",
19]
20
21[dependencies]
22text = { path = "../text" }
23copilot = { path = "../copilot" }
24client = { path = "../client" }
25clock = { path = "../clock" }
26collections = { path = "../collections" }
27db = { path = "../db" }
28fs = { path = "../fs" }
29fsevent = { path = "../fsevent" }
30fuzzy = { path = "../fuzzy" }
31git = { path = "../git" }
32gpui = { path = "../gpui" }
33language = { path = "../language" }
34lsp = { path = "../lsp" }
35node_runtime = { path = "../node_runtime" }
36prettier = { path = "../prettier" }
37rpc = { path = "../rpc" }
38settings = { path = "../settings" }
39sum_tree = { path = "../sum_tree" }
40terminal = { path = "../terminal" }
41util = { path = "../util" }
42
43aho-corasick = "1.1"
44anyhow.workspace = true
45async-trait.workspace = true
46backtrace = "0.3"
47futures.workspace = true
48globset.workspace = true
49ignore = "0.4"
50lazy_static.workspace = true
51log.workspace = true
52parking_lot.workspace = true
53postage.workspace = true
54rand.workspace = true
55regex.workspace = true
56schemars.workspace = true
57serde.workspace = true
58serde_derive.workspace = true
59serde_json.workspace = true
60sha2 = "0.10"
61similar = "1.3"
62smol.workspace = true
63thiserror.workspace = true
64toml.workspace = true
65itertools = "0.10"
66
67[dev-dependencies]
68ctor.workspace = true
69env_logger.workspace = true
70pretty_assertions.workspace = true
71client = { path = "../client", features = ["test-support"] }
72collections = { path = "../collections", features = ["test-support"] }
73db = { path = "../db", features = ["test-support"] }
74fs = { path = "../fs", features = ["test-support"] }
75gpui = { path = "../gpui", features = ["test-support"] }
76language = { path = "../language", features = ["test-support"] }
77lsp = { path = "../lsp", features = ["test-support"] }
78settings = { path = "../settings", features = ["test-support"] }
79prettier = { path = "../prettier", features = ["test-support"] }
80util = { path = "../util", features = ["test-support"] }
81rpc = { path = "../rpc", features = ["test-support"] }
82git2.workspace = true
83tempdir.workspace = true
84unindent.workspace = true