zed/crates/auto_update/Cargo.toml

27 lines
605 B
TOML
Raw Normal View History

[package]
name = "auto_update"
version = "0.1.0"
edition = "2021"
[lib]
path = "src/auto_update.rs"
doctest = false
[dependencies]
2022-04-21 10:45:28 +03:00
client = { path = "../client" }
gpui = { path = "../gpui" }
menu = { path = "../menu" }
project = { path = "../project" }
2022-04-21 10:45:28 +03:00
settings = { path = "../settings" }
theme = { path = "../theme" }
workspace = { path = "../workspace" }
util = { path = "../util" }
anyhow = "1.0.38"
isahc = "1.7"
lazy_static = "1.4"
log = "0.4"
serde = { version = "1.0", features = ["derive", "rc"] }
2022-05-26 10:34:39 +03:00
serde_json = { version = "1.0", features = ["preserve_order"] }
smol = "1.2.5"
tempdir = "0.3.7"