mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-05-29 13:31:27 +02:00
a3b5396113
* Migrate to ShellExecute * Add change file * Revert cargo.toml style * Remove unused imports * Migrate to windows-sys * Use open instead of runas * Use encode_wide instead of hstring * small cleanup
52 lines
1.5 KiB
TOML
52 lines
1.5 KiB
TOML
[package]
|
|
name = "tauri-plugin-updater"
|
|
version = "2.0.0-beta.2"
|
|
description = "In-app updates for Tauri applications."
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
links = "tauri-plugin-updater"
|
|
|
|
[package.metadata.docs.rs]
|
|
rustc-args = [ "--cfg", "docsrs" ]
|
|
rustdoc-args = [ "--cfg", "docsrs" ]
|
|
|
|
[build-dependencies]
|
|
tauri-plugin = { workspace = true, features = [ "build" ] }
|
|
|
|
[dependencies]
|
|
tauri = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = "1"
|
|
reqwest = { version = "0.11", default-features = false, features = [ "json", "stream" ] }
|
|
url = { workspace = true }
|
|
http = "0.2"
|
|
dirs-next = "2"
|
|
minisign-verify = "0.2"
|
|
time = { version = "0.3", features = [ "parsing", "formatting" ] }
|
|
base64 = "0.21"
|
|
percent-encoding = "2"
|
|
semver = { version = "1", features = [ "serde" ] }
|
|
futures-util = "0.3"
|
|
tempfile = "3"
|
|
zip = "0.6"
|
|
tar = "0.4"
|
|
|
|
[target."cfg(target_os = \"windows\")".dependencies]
|
|
zip = { version = "0.6", default-features = false }
|
|
windows-sys = { version = "0.52.0", features = ["Win32_Foundation", "Win32_UI_WindowsAndMessaging"] }
|
|
|
|
[target."cfg(any(target_os = \"macos\", target_os = \"linux\"))".dependencies]
|
|
flate2 = "1.0.27"
|
|
|
|
[dev-dependencies]
|
|
mockito = "0.31"
|
|
|
|
[features]
|
|
native-tls = [ "reqwest/native-tls" ]
|
|
native-tls-vendored = [ "reqwest/native-tls-vendored" ]
|
|
rustls-tls = [ "reqwest/rustls-tls" ]
|