From 855a7a11842fd80e14add6c518d23cd9a7a9a54f Mon Sep 17 00:00:00 2001 From: Jackson Coxson Date: Wed, 12 Feb 2025 16:17:43 -0700 Subject: [PATCH] Bump version --- Cargo.lock | 2 +- idevice/src/http2/mod.rs | 1 - idevice/src/http2/padded.rs | 12 ------------ 3 files changed, 1 insertion(+), 14 deletions(-) delete mode 100644 idevice/src/http2/padded.rs diff --git a/Cargo.lock b/Cargo.lock index 3ee4cba..d69a223 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -874,7 +874,7 @@ dependencies = [ [[package]] name = "idevice" -version = "0.1.20" +version = "0.1.21" dependencies = [ "async-recursion", "base64", diff --git a/idevice/src/http2/mod.rs b/idevice/src/http2/mod.rs index 6b4a71a..52c2047 100644 --- a/idevice/src/http2/mod.rs +++ b/idevice/src/http2/mod.rs @@ -11,7 +11,6 @@ use tokio::{ pub mod error; pub mod h2; -pub mod padded; use h2::{ DataFrame, Framable, Frame, FrameType, HeadersFrame, SettingsFrame, WindowUpdateFrame, diff --git a/idevice/src/http2/padded.rs b/idevice/src/http2/padded.rs deleted file mode 100644 index 272688d..0000000 --- a/idevice/src/http2/padded.rs +++ /dev/null @@ -1,12 +0,0 @@ -// DebianArch - -// use crate::h2::Frame; - -// pub struct PaddedFrame {} - -// impl PaddedFrame { -// pub fn new(body: &[u8]) -> Self { -// let pad_len = body[0]; -// let stream_dependency = body[0..4]; -// } -// }