Cargo.toml

 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 = "1.0.38"
22isahc = "1.7"
23lazy_static = "1.4"
24log = "0.4"
25serde = { version = "1.0", features = ["derive", "rc"] }
26serde_derive = { version = "1.0", features = ["deserialize_in_place"] }
27serde_json = { version = "1.0", features = ["preserve_order"] }
28smol = "1.2.5"
29tempdir = "0.3.7"