|
|
|
@ -6,6 +6,7 @@ edition = { workspace = true }
|
|
|
|
|
authors = { workspace = true }
|
|
|
|
|
license = { workspace = true }
|
|
|
|
|
rust-version = { workspace = true }
|
|
|
|
|
repository = { workspace = true }
|
|
|
|
|
links = "tauri-plugin-updater"
|
|
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
@ -21,7 +22,10 @@ serde = { workspace = true }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
|
tokio = "1"
|
|
|
|
|
reqwest = { version = "0.12", default-features = false, features = [ "json", "stream" ] }
|
|
|
|
|
reqwest = { version = "0.12", default-features = false, features = [
|
|
|
|
|
"json",
|
|
|
|
|
"stream",
|
|
|
|
|
] }
|
|
|
|
|
url = { workspace = true }
|
|
|
|
|
http = "1"
|
|
|
|
|
dirs-next = "2"
|
|
|
|
@ -34,7 +38,10 @@ tempfile = "3"
|
|
|
|
|
zip = "0.6"
|
|
|
|
|
|
|
|
|
|
[target."cfg(target_os = \"windows\")".dependencies]
|
|
|
|
|
windows-sys = { version = "0.52.0", features = ["Win32_Foundation", "Win32_UI_WindowsAndMessaging"] }
|
|
|
|
|
windows-sys = { version = "0.52.0", features = [
|
|
|
|
|
"Win32_Foundation",
|
|
|
|
|
"Win32_UI_WindowsAndMessaging",
|
|
|
|
|
] }
|
|
|
|
|
|
|
|
|
|
[target."cfg(any(target_os = \"macos\", target_os = \"linux\"))".dependencies]
|
|
|
|
|
tar = "0.4"
|
|
|
|
|