mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
22 lines
455 B
TOML
22 lines
455 B
TOML
|
[package]
|
||
|
name = "copilot"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
publish = false
|
||
|
|
||
|
[lib]
|
||
|
path = "src/copilot.rs"
|
||
|
doctest = false
|
||
|
|
||
|
[dependencies]
|
||
|
gpui = { path = "../gpui" }
|
||
|
settings = { path = "../settings" }
|
||
|
lsp = { path = "../lsp" }
|
||
|
util = { path = "../util" }
|
||
|
client = { path = "../client" }
|
||
|
workspace = { path = "../workspace" }
|
||
|
async-compression = { version = "0.3", features = ["gzip", "futures-bufread"] }
|
||
|
anyhow = "1.0"
|
||
|
smol = "1.2.5"
|
||
|
futures = "0.3"
|