Cargo.toml

 1[package]
 2name = "auto_update"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lib]
 9path = "src/auto_update.rs"
10doctest = false
11
12[dependencies]
13anyhow.workspace = true
14client = { path = "../client" }
15db = { path = "../db" }
16gpui = { path = "../gpui" }
17isahc.workspace = true
18lazy_static.workspace = true
19log.workspace = true
20menu = { path = "../menu" }
21project = { path = "../project" }
22release_channel = { path = "../release_channel" }
23schemars.workspace = true
24serde.workspace = true
25serde_derive.workspace = true
26serde_json.workspace = true
27settings = { path = "../settings" }
28smol.workspace = true
29tempfile.workspace = true
30theme = { path = "../theme" }
31util = { path = "../util" }
32workspace = { path = "../workspace" }