Cargo.toml

 1[package]
 2name = "copilot"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8
 9[lib]
10path = "src/copilot.rs"
11doctest = false
12
13[features]
14test-support = [
15    "collections/test-support",
16    "gpui/test-support",
17    "language/test-support",
18    "lsp/test-support",
19    "settings/test-support",
20    "util/test-support",
21]
22
23[dependencies]
24collections = { path = "../collections" }
25# context_menu = { path = "../context_menu" }
26gpui = { path = "../gpui" }
27language = { path = "../language" }
28settings = { path = "../settings" }
29theme = { path = "../theme" }
30lsp = { path = "../lsp" }
31node_runtime = { path = "../node_runtime"}
32util = { path = "../util" }
33async-compression.workspace = true
34async-tar = "0.4.2"
35anyhow.workspace = true
36log.workspace = true
37serde.workspace = true
38serde_derive.workspace = true
39smol.workspace = true
40futures.workspace = true
41parking_lot.workspace = true
42
43[dev-dependencies]
44clock = { path = "../clock" }
45collections = { path = "../collections", features = ["test-support"] }
46fs = { path = "../fs", features = ["test-support"] }
47gpui = { path = "../gpui", features = ["test-support"] }
48language = { path = "../language", features = ["test-support"] }
49lsp = { path = "../lsp", features = ["test-support"] }
50rpc = { path = "../rpc", features = ["test-support"] }
51settings = { path = "../settings", features = ["test-support"] }
52util = { path = "../util", features = ["test-support"] }