1[package]
2name = "copilot"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/copilot.rs"
9doctest = false
10
11[dependencies]
12collections = { path = "../collections" }
13context_menu = { path = "../context_menu" }
14gpui = { path = "../gpui" }
15language = { path = "../language" }
16settings = { path = "../settings" }
17theme = { path = "../theme" }
18lsp = { path = "../lsp" }
19node_runtime = { path = "../node_runtime"}
20util = { path = "../util" }
21client = { path = "../client" }
22async-compression = { version = "0.3", features = ["gzip", "futures-bufread"] }
23async-tar = "0.4.2"
24anyhow = "1.0"
25log = "0.4"
26serde = { workspace = true }
27serde_derive = { workspace = true }
28smol = "1.2.5"
29futures = "0.3"
30
31[dev-dependencies]
32gpui = { path = "../gpui", features = ["test-support"] }
33language = { path = "../language", features = ["test-support"] }
34settings = { path = "../settings", features = ["test-support"] }
35lsp = { path = "../lsp", features = ["test-support"] }
36util = { path = "../util", features = ["test-support"] }
37client = { path = "../client", features = ["test-support"] }
38workspace = { path = "../workspace", features = ["test-support"] }