1[package]
2name = "copilot"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/copilot.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" }
23context_menu = { path = "../context_menu" }
24gpui = { path = "../gpui" }
25client = { path = "../client" }
26language = { path = "../language" }
27settings = { path = "../settings" }
28theme = { path = "../theme" }
29lsp = { path = "../lsp" }
30node_runtime = { path = "../node_runtime"}
31util = { path = "../util" }
32async-compression = { version = "0.3", features = ["gzip", "futures-bufread"] }
33async-tar = "0.4.2"
34anyhow.workspace = true
35log.workspace = true
36serde.workspace = true
37serde_derive.workspace = true
38smol.workspace = true
39futures.workspace = true
40
41[dev-dependencies]
42clock = { path = "../clock" }
43collections = { path = "../collections", features = ["test-support"] }
44fs = { path = "../fs", features = ["test-support"] }
45gpui = { path = "../gpui", features = ["test-support"] }
46language = { path = "../language", features = ["test-support"] }
47lsp = { path = "../lsp", features = ["test-support"] }
48rpc = { path = "../rpc", features = ["test-support"] }
49settings = { path = "../settings", features = ["test-support"] }
50util = { path = "../util", features = ["test-support"] }