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