Cargo.toml

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