2022-04-04 21:57:21 +00:00
|
|
|
[package]
|
|
|
|
name = "auto_update"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2022-04-04 21:57:21 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/auto_update.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2022-10-27 22:52:38 +00:00
|
|
|
db = { path = "../db" }
|
2022-04-21 07:45:28 +00:00
|
|
|
client = { path = "../client" }
|
2022-04-04 21:57:21 +00:00
|
|
|
gpui = { path = "../gpui" }
|
2022-06-07 00:27:16 +00:00
|
|
|
menu = { path = "../menu" }
|
|
|
|
project = { path = "../project" }
|
2022-04-21 07:45:28 +00:00
|
|
|
settings = { path = "../settings" }
|
2022-04-04 21:57:21 +00:00
|
|
|
theme = { path = "../theme" }
|
|
|
|
workspace = { path = "../workspace" }
|
2022-06-07 00:27:16 +00:00
|
|
|
util = { path = "../util" }
|
2023-04-25 00:41:55 +00:00
|
|
|
anyhow.workspace = true
|
2023-05-23 02:28:22 +00:00
|
|
|
isahc.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
lazy_static.workspace = true
|
|
|
|
log.workspace = true
|
2024-01-08 18:30:18 +00:00
|
|
|
schemars.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
smol.workspace = true
|
|
|
|
tempdir.workspace = true
|