mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-05 23:51:08 +00:00
50 lines
1.4 KiB
TOML
50 lines
1.4 KiB
TOML
|
[package]
|
||
|
name = "copilot2"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
publish = false
|
||
|
|
||
|
[lib]
|
||
|
path = "src/copilot2.rs"
|
||
|
doctest = false
|
||
|
|
||
|
[features]
|
||
|
test-support = [
|
||
|
"collections/test-support",
|
||
|
"gpui2/test-support",
|
||
|
"language2/test-support",
|
||
|
"lsp2/test-support",
|
||
|
"settings2/test-support",
|
||
|
"util/test-support",
|
||
|
]
|
||
|
|
||
|
[dependencies]
|
||
|
collections = { path = "../collections" }
|
||
|
context_menu = { path = "../context_menu" }
|
||
|
gpui2 = { path = "../gpui2" }
|
||
|
language2 = { path = "../language2" }
|
||
|
settings2 = { path = "../settings2" }
|
||
|
theme = { path = "../theme" }
|
||
|
lsp2 = { path = "../lsp2" }
|
||
|
node_runtime = { path = "../node_runtime"}
|
||
|
util = { path = "../util" }
|
||
|
async-compression = { version = "0.3", features = ["gzip", "futures-bufread"] }
|
||
|
async-tar = "0.4.2"
|
||
|
anyhow.workspace = true
|
||
|
log.workspace = true
|
||
|
serde.workspace = true
|
||
|
serde_derive.workspace = true
|
||
|
smol.workspace = true
|
||
|
futures.workspace = true
|
||
|
|
||
|
[dev-dependencies]
|
||
|
clock = { path = "../clock" }
|
||
|
collections = { path = "../collections", features = ["test-support"] }
|
||
|
fs = { path = "../fs", features = ["test-support"] }
|
||
|
gpui2 = { path = "../gpui2", features = ["test-support"] }
|
||
|
language2 = { path = "../language2", features = ["test-support"] }
|
||
|
lsp2 = { path = "../lsp2", features = ["test-support"] }
|
||
|
rpc = { path = "../rpc", features = ["test-support"] }
|
||
|
settings2 = { path = "../settings2", features = ["test-support"] }
|
||
|
util = { path = "../util", features = ["test-support"] }
|