1[package]
2name = "copilot2"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/copilot2.rs"
9doctest = false
10
11[features]
12test-support = [
13 "collections/test-support",
14 "gpui2/test-support",
15 "language2/test-support",
16 "lsp2/test-support",
17 "settings2/test-support",
18 "util/test-support",
19]
20
21[dependencies]
22collections = { path = "../collections" }
23context_menu = { path = "../context_menu" }
24gpui2 = { path = "../gpui2" }
25language2 = { path = "../language2" }
26settings2 = { path = "../settings2" }
27theme = { path = "../theme" }
28lsp2 = { path = "../lsp2" }
29node_runtime = { path = "../node_runtime"}
30util = { path = "../util" }
31async-compression = { version = "0.3", features = ["gzip", "futures-bufread"] }
32async-tar = "0.4.2"
33anyhow.workspace = true
34log.workspace = true
35serde.workspace = true
36serde_derive.workspace = true
37smol.workspace = true
38futures.workspace = true
39parking_lot.workspace = true
40
41[dev-dependencies]
42clock = { path = "../clock" }
43collections = { path = "../collections", features = ["test-support"] }
44fs = { path = "../fs", features = ["test-support"] }
45gpui2 = { path = "../gpui2", features = ["test-support"] }
46language2 = { path = "../language2", features = ["test-support"] }
47lsp2 = { path = "../lsp2", features = ["test-support"] }
48rpc = { path = "../rpc", features = ["test-support"] }
49settings2 = { path = "../settings2", features = ["test-support"] }
50util = { path = "../util", features = ["test-support"] }