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]
|
2024-01-03 18:52:40 +00:00
|
|
|
db = { package = "db2", path = "../db2" }
|
|
|
|
client = { package = "client2", path = "../client2" }
|
|
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
|
|
menu = { package = "menu2", path = "../menu2" }
|
|
|
|
project = { package = "project2", path = "../project2" }
|
|
|
|
settings = { package = "settings2", path = "../settings2" }
|
|
|
|
theme = { package = "theme2", path = "../theme2" }
|
|
|
|
workspace = { package = "workspace2", path = "../workspace2" }
|
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
|
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
smol.workspace = true
|
|
|
|
tempdir.workspace = true
|