mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
492805af9c
Co-authored-by: Mikayla <mikayla@zed.dev>
52 lines
1.6 KiB
TOML
52 lines
1.6 KiB
TOML
[package]
|
|
name = "copilot"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/copilot.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = [
|
|
"collections/test-support",
|
|
"gpui/test-support",
|
|
"language/test-support",
|
|
"lsp/test-support",
|
|
"settings/test-support",
|
|
"util/test-support",
|
|
]
|
|
|
|
[dependencies]
|
|
collections = { path = "../collections" }
|
|
# context_menu = { path = "../context_menu" }
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
language = { package = "language2", path = "../language2" }
|
|
settings = { package = "settings2", path = "../settings2" }
|
|
theme = { package = "theme2", path = "../theme2" }
|
|
lsp = { package = "lsp2", path = "../lsp2" }
|
|
node_runtime = { path = "../node_runtime"}
|
|
util = { path = "../util" }
|
|
ui = { package = "ui2", path = "../ui2" }
|
|
async-compression.workspace = true
|
|
async-tar = "0.4.2"
|
|
anyhow.workspace = true
|
|
log.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
smol.workspace = true
|
|
futures.workspace = true
|
|
parking_lot.workspace = true
|
|
|
|
[dev-dependencies]
|
|
clock = { path = "../clock" }
|
|
collections = { path = "../collections", features = ["test-support"] }
|
|
fs = { path = "../fs", features = ["test-support"] }
|
|
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
|
|
language = { package = "language2", path = "../language2", features = ["test-support"] }
|
|
lsp = { package = "lsp2", path = "../lsp2", features = ["test-support"] }
|
|
rpc = { package = "rpc2", path = "../rpc2", features = ["test-support"] }
|
|
settings = { package = "settings2", path = "../settings2", features = ["test-support"] }
|
|
util = { path = "../util", features = ["test-support"] }
|