Cargo.toml

 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"
17lazy_static = "1.4"
18log = "0.4"
19serde = { version = "1", features = ["derive"] }
20serde_json = { version = "1.0.64", features = ["preserve_order"] }
21smol = "1.2.5"
22surf = "2.2"
23tempdir = "0.3.7"