1[package]
2name = "copilot"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-or-later"
7
8[lib]
9path = "src/copilot.rs"
10doctest = false
11
12[features]
13test-support = [
14 "collections/test-support",
15 "gpui/test-support",
16 "language/test-support",
17 "lsp/test-support",
18 "settings/test-support",
19 "util/test-support",
20]
21
22[dependencies]
23collections = { path = "../collections" }
24# context_menu = { path = "../context_menu" }
25gpui = { path = "../gpui" }
26language = { path = "../language" }
27settings = { path = "../settings" }
28theme = { path = "../theme" }
29lsp = { path = "../lsp" }
30node_runtime = { path = "../node_runtime"}
31util = { path = "../util" }
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 = { path = "../gpui", features = ["test-support"] }
47language = { path = "../language", features = ["test-support"] }
48lsp = { path = "../lsp", features = ["test-support"] }
49rpc = { path = "../rpc", features = ["test-support"] }
50settings = { path = "../settings", features = ["test-support"] }
51util = { path = "../util", features = ["test-support"] }