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]
13db = { path = "../db" }
14client = { path = "../client" }
15gpui = { path = "../gpui" }
16menu = { path = "../menu" }
17project = { path = "../project" }
18settings = { path = "../settings" }
19theme = { path = "../theme" }
20workspace = { path = "../workspace" }
21util = { path = "../util" }
22anyhow.workspace = true
23isahc.workspace = true
24lazy_static.workspace = true
25log.workspace = true
26schemars.workspace = true
27serde.workspace = true
28serde_derive.workspace = true
29serde_json.workspace = true
30smol.workspace = true
31tempfile.workspace = true