mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
f2ff7fa4d5
- [x] Fill in GPL license text. - [x] live_kit_client depends on live_kit_server as non-dev dependency, even though it seems to only be used for tests. Is that an issue? Release Notes: - N/A
53 lines
1.4 KiB
TOML
53 lines
1.4 KiB
TOML
[package]
|
|
name = "copilot"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-only"
|
|
|
|
|
|
[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 = { path = "../gpui" }
|
|
language = { path = "../language" }
|
|
settings = { path = "../settings" }
|
|
theme = { path = "../theme" }
|
|
lsp = { path = "../lsp" }
|
|
node_runtime = { path = "../node_runtime"}
|
|
util = { path = "../util" }
|
|
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 = { path = "../gpui", features = ["test-support"] }
|
|
language = { path = "../language", features = ["test-support"] }
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|
|
rpc = { path = "../rpc", features = ["test-support"] }
|
|
settings = { path = "../settings", features = ["test-support"] }
|
|
util = { path = "../util", features = ["test-support"] }
|