1[package]
2name = "auto_update"
3version = "0.1.0"
4edition = "2021"
5
6[lib]
7path = "src/auto_update.rs"
8doctest = false
9
10[dependencies]
11client = { path = "../client" }
12gpui = { path = "../gpui" }
13settings = { path = "../settings" }
14theme = { path = "../theme" }
15workspace = { path = "../workspace" }
16anyhow = "1.0.38"
17isahc = "1.7"
18lazy_static = "1.4"
19log = "0.4"
20serde = { version = "1.0", features = ["derive", "rc"] }
21serde_json = { version = "1.0", features = ["preserve_order"] }
22smol = "1.2.5"
23tempdir = "0.3.7"