2023-03-23 05:22:08 +03:00
|
|
|
[package]
|
|
|
|
name = "copilot"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2023-03-23 05:22:08 +03:00
|
|
|
[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]
|
2024-01-31 05:41:29 +03:00
|
|
|
anyhow.workspace = true
|
|
|
|
async-compression.workspace = true
|
|
|
|
async-tar = "0.4.2"
|
2023-03-29 06:13:17 +03:00
|
|
|
collections = { path = "../collections" }
|
2024-01-31 05:41:29 +03:00
|
|
|
futures.workspace = true
|
2024-01-03 23:59:39 +03:00
|
|
|
gpui = { path = "../gpui" }
|
2024-01-03 22:58:02 +03:00
|
|
|
language = { path = "../language" }
|
2024-01-31 05:41:29 +03:00
|
|
|
log.workspace = true
|
2024-01-03 22:58:02 +03:00
|
|
|
lsp = { path = "../lsp" }
|
2024-01-31 06:01:35 +03:00
|
|
|
node_runtime = { path = "../node_runtime" }
|
2024-01-31 05:41:29 +03:00
|
|
|
parking_lot.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
settings = { path = "../settings" }
|
2023-04-25 03:41:55 +03:00
|
|
|
smol.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
theme = { path = "../theme" }
|
|
|
|
util = { path = "../util" }
|
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"] }
|
2024-01-03 23:59:39 +03:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2024-01-03 22:58:02 +03:00
|
|
|
language = { path = "../language", features = ["test-support"] }
|
|
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|
2024-01-03 23:09:08 +03:00
|
|
|
rpc = { path = "../rpc", features = ["test-support"] }
|
2024-01-03 23:28:45 +03:00
|
|
|
settings = { path = "../settings", features = ["test-support"] }
|
2023-03-23 18:11:39 +03:00
|
|
|
util = { path = "../util", features = ["test-support"] }
|