zed/crates/auto_update/Cargo.toml

33 lines
705 B
TOML
Raw Normal View History

[package]
name = "auto_update"
version = "0.1.0"
edition = "2021"
publish = false
license = "AGPL-3.0-only"
[lib]
path = "src/auto_update.rs"
doctest = false
[dependencies]
db = { path = "../db" }
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.workspace = true
isahc.workspace = true
lazy_static.workspace = true
log.workspace = true
schemars.workspace = true
serde.workspace = true
serde_derive.workspace = true
serde_json.workspace = true
smol.workspace = true
tempdir.workspace = true