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 "client/test-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" }
24context_menu = { path = "../context_menu" }
25gpui = { path = "../gpui" }
26language = { path = "../language" }
27settings = { path = "../settings" }
28theme = { path = "../theme" }
29staff_mode = { path = "../staff_mode" }
30lsp = { path = "../lsp" }
31node_runtime = { path = "../node_runtime"}
32util = { path = "../util" }
33client = { path = "../client" }
34async-compression = { version = "0.3", features = ["gzip", "futures-bufread"] }
35async-tar = "0.4.2"
36anyhow = "1.0"
37log = "0.4"
38serde = { workspace = true }
39serde_derive = { workspace = true }
40smol = "1.2.5"
41futures = "0.3"
42
43[dev-dependencies]
44collections = { path = "../collections", features = ["test-support"] }
45gpui = { path = "../gpui", features = ["test-support"] }
46language = { path = "../language", features = ["test-support"] }
47settings = { path = "../settings", features = ["test-support"] }
48lsp = { path = "../lsp", features = ["test-support"] }
49util = { path = "../util", features = ["test-support"] }
50client = { path = "../client", features = ["test-support"] }
51workspace = { path = "../workspace", features = ["test-support"] }