2023-03-23 05:22:08 +03:00
|
|
|
[package]
|
|
|
|
name = "copilot"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/copilot.rs"
|
|
|
|
doctest = false
|
|
|
|
|
2023-04-05 11:26:43 +03:00
|
|
|
[features]
|
|
|
|
test-support = [
|
|
|
|
"collections/test-support",
|
|
|
|
"gpui/test-support",
|
|
|
|
"language/test-support",
|
|
|
|
"lsp/test-support",
|
|
|
|
"settings/test-support",
|
|
|
|
"util/test-support",
|
|
|
|
]
|
|
|
|
|
2023-03-23 05:22:08 +03:00
|
|
|
[dependencies]
|
2023-03-29 06:13:17 +03:00
|
|
|
collections = { path = "../collections" }
|
2023-03-30 02:40:52 +03:00
|
|
|
context_menu = { path = "../context_menu" }
|
2023-03-23 05:22:08 +03:00
|
|
|
gpui = { path = "../gpui" }
|
2023-03-23 16:45:14 +03:00
|
|
|
language = { path = "../language" }
|
2023-03-23 05:22:08 +03:00
|
|
|
settings = { path = "../settings" }
|
2023-03-28 00:25:11 +03:00
|
|
|
theme = { path = "../theme" }
|
2023-03-23 05:22:08 +03:00
|
|
|
lsp = { path = "../lsp" }
|
2023-03-28 20:27:31 +03:00
|
|
|
node_runtime = { path = "../node_runtime"}
|
2023-03-23 05:22:08 +03:00
|
|
|
util = { path = "../util" }
|
|
|
|
async-compression = { version = "0.3", features = ["gzip", "futures-bufread"] }
|
2023-03-30 19:29:44 +03:00
|
|
|
async-tar = "0.4.2"
|
2023-03-23 05:22:08 +03:00
|
|
|
anyhow = "1.0"
|
2023-03-23 16:17:15 +03:00
|
|
|
log = "0.4"
|
2023-03-23 12:29:25 +03:00
|
|
|
serde = { workspace = true }
|
|
|
|
serde_derive = { workspace = true }
|
2023-03-23 05:22:08 +03:00
|
|
|
smol = "1.2.5"
|
2023-04-21 03:47:18 +03:00
|
|
|
futures = { workspace = true }
|
2023-03-23 18:11:39 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-04-20 11:51:50 +03:00
|
|
|
clock = { path = "../clock" }
|
2023-04-05 11:26:43 +03:00
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
2023-04-20 11:51:50 +03:00
|
|
|
fs = { path = "../fs", features = ["test-support"] }
|
2023-03-23 18:11:39 +03:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
|
|
language = { path = "../language", features = ["test-support"] }
|
|
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|
2023-04-20 11:51:50 +03:00
|
|
|
rpc = { path = "../rpc", features = ["test-support"] }
|
|
|
|
settings = { path = "../settings", features = ["test-support"] }
|
2023-03-23 18:11:39 +03:00
|
|
|
util = { path = "../util", features = ["test-support"] }
|