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" }
18release_channel = { path = "../release_channel" }
19settings = { path = "../settings" }
20theme = { path = "../theme" }
21workspace = { path = "../workspace" }
22util = { path = "../util" }
23anyhow.workspace = true
24isahc.workspace = true
25lazy_static.workspace = true
26log.workspace = true
27schemars.workspace = true
28serde.workspace = true
29serde_derive.workspace = true
30serde_json.workspace = true
31smol.workspace = true
32tempfile.workspace = true