diff --git a/Cargo.lock b/Cargo.lock index d67b0f5..5ce5386 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1182,7 +1182,7 @@ dependencies = [ [[package]] name = "idevice" -version = "0.1.33" +version = "0.1.35" dependencies = [ "base64", "byteorder", diff --git a/idevice/Cargo.toml b/idevice/Cargo.toml index c73933b..2ed49a2 100644 --- a/idevice/Cargo.toml +++ b/idevice/Cargo.toml @@ -2,7 +2,7 @@ name = "idevice" description = "A Rust library to interact with services on iOS devices." authors = ["Jackson Coxson"] -version = "0.1.34" +version = "0.1.35" edition = "2021" license = "MIT" documentation = "https://docs.rs/idevice" diff --git a/idevice/src/tss.rs b/idevice/src/tss.rs index 1a94182..d240ecc 100644 --- a/idevice/src/tss.rs +++ b/idevice/src/tss.rs @@ -81,7 +81,6 @@ impl TSSRequest { .header("Cache-Control", "no-cache") .header("Content-type", "text/xml; charset=\"utf-8\"") .header("User-Agent", "InetURL/1.0") - .header("Expect", "") .body(plist_to_xml_bytes(&self.inner)) .send() .await? @@ -192,4 +191,3 @@ pub fn apply_restore_request_rules( } } } -