mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
7e6cccfa3d
Drop dependency on tokio introduced by async-openai and do it ourselves. The approach I'm taking of replacing instead of appending is causing issues. Need to just append.
30 lines
652 B
TOML
30 lines
652 B
TOML
[package]
|
|
name = "auto_update"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/auto_update.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
db = { path = "../db" }
|
|
client = { path = "../client" }
|
|
gpui = { path = "../gpui" }
|
|
menu = { path = "../menu" }
|
|
project = { path = "../project" }
|
|
settings = { path = "../settings" }
|
|
theme = { path = "../theme" }
|
|
workspace = { path = "../workspace" }
|
|
util = { path = "../util" }
|
|
anyhow.workspace = true
|
|
isahc.workspace = true
|
|
lazy_static.workspace = true
|
|
log.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json.workspace = true
|
|
smol.workspace = true
|
|
tempdir.workspace = true
|