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