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 "gpui/test-support",
15 "language/test-support",
16 "lsp/test-support",
17 "settings/test-support",
18 "util/test-support",
19]
20
21[dependencies]
22collections = { path = "../collections" }
23# context_menu = { path = "../context_menu" }
24gpui = { package = "gpui2", path = "../gpui2" }
25language = { package = "language2", path = "../language2" }
26settings = { package = "settings2", path = "../settings2" }
27theme = { package = "theme2", path = "../theme2" }
28lsp = { package = "lsp2", path = "../lsp2" }
29node_runtime = { path = "../node_runtime"}
30util = { path = "../util" }
31ui = { package = "ui2", path = "../ui2" }
32async-compression.workspace = true
33async-tar = "0.4.2"
34anyhow.workspace = true
35log.workspace = true
36serde.workspace = true
37serde_derive.workspace = true
38smol.workspace = true
39futures.workspace = true
40parking_lot.workspace = true
41
42[dev-dependencies]
43clock = { path = "../clock" }
44collections = { path = "../collections", features = ["test-support"] }
45fs = { path = "../fs", features = ["test-support"] }
46gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
47language = { package = "language2", path = "../language2", features = ["test-support"] }
48lsp = { package = "lsp2", path = "../lsp2", features = ["test-support"] }
49rpc = { package = "rpc2", path = "../rpc2", features = ["test-support"] }
50settings = { package = "settings2", path = "../settings2", features = ["test-support"] }
51util = { path = "../util", features = ["test-support"] }