From fc0f16ad21c726a08174b8bb608cda23e6030f8e Mon Sep 17 00:00:00 2001 From: nab138 Date: Wed, 13 Aug 2025 08:41:34 -0400 Subject: [PATCH] Update zsign-rust --- Cargo.lock | 6 +++--- README.md | 2 +- isideload/Cargo.toml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index df6db01..d22b076 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1170,7 +1170,7 @@ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" [[package]] name = "isideload" -version = "0.1.3" +version = "0.1.4" dependencies = [ "futures", "hex", @@ -3242,9 +3242,9 @@ dependencies = [ [[package]] name = "zsign-rust" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15da1f095223a57b1a26b2570594dee7114142c4973dbb58760d6e8fbb970127" +checksum = "4e6f7303e79779f24807ebb43de1816334c6bbbfb1982785d21189bc1cb47f79" dependencies = [ "bindgen 0.72.0", "cc", diff --git a/README.md b/README.md index 6107118..4f60c5a 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ To use isideload, add the following to your `Cargo.toml`: ```toml [dependencies] # Make sure to use the latest version -isideload = { version = "0.1.1", features = ["vendored-openssl", "vendored-botan" ] } # Optionally, both vendored features can be enabled to avoid needing OpenSSL and Botan installed on your system. +isideload = { version = "0.1.4", features = ["vendored-openssl", "vendored-botan" ] } # Optionally, both vendored features can be enabled to avoid needing OpenSSL and Botan installed on your system. idevice = { version = "0.1.37", features = ["usbmuxd"]} # Used to give isideload an IdeviceProvider. You don't need to use usbmuxd. For more info see https://github.com/jkcoxson/idevice ``` diff --git a/isideload/Cargo.toml b/isideload/Cargo.toml index 0af9bf0..5f1c222 100644 --- a/isideload/Cargo.toml +++ b/isideload/Cargo.toml @@ -3,7 +3,7 @@ name = "isideload" description = "Sideload iOS/iPadOS applications" license = "MPL-2.0" authors = ["Nicholas Sharp "] -version = "0.1.3" +version = "0.1.4" edition = "2024" repository = "https://github.com/nab138/isideload" documentation = "https://docs.rs/isideload" @@ -26,5 +26,5 @@ sha1 = "0.10" idevice = { version = "0.1.37", features = ["afc", "installation_proxy"] } openssl = "0.10" futures = "0.3" -zsign-rust = "0.1.5" +zsign-rust = "0.1.6" thiserror = "2"