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