Cargo.toml

 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" }
17util = { path = "../util" }
18client = { path = "../client" }
19workspace = { path = "../workspace" }
20async-compression = { version = "0.3", features = ["gzip", "futures-bufread"] }
21anyhow = "1.0"
22log = "0.4"
23serde = { workspace = true }
24serde_derive = { workspace = true }
25smol = "1.2.5"
26futures = "0.3"
27
28[dev-dependencies]
29gpui = { path = "../gpui", features = ["test-support"] }
30language = { path = "../language", features = ["test-support"] }
31settings = { path = "../settings", features = ["test-support"] }
32lsp = { path = "../lsp", features = ["test-support"] }
33util = { path = "../util", features = ["test-support"] }
34client = { path = "../client", features = ["test-support"] }
35workspace = { path = "../workspace", features = ["test-support"] }