1[package]
2name = "auto_update"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-only"
7
8
9[lib]
10path = "src/auto_update.rs"
11doctest = false
12
13[dependencies]
14db = { path = "../db" }
15client = { path = "../client" }
16gpui = { path = "../gpui" }
17menu = { path = "../menu" }
18project = { path = "../project" }
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