From 78662ae561cd5598dfdb21602bfb8ac03cceb9be Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 30 Sep 2024 13:13:15 -0600 Subject: [PATCH] cipher: bump `inout` to v0.2.0-rc.1 (#1679) Notably this version removes the `std` feature, a breaking change from the previous `rc.0` --- Cargo.lock | 12 ++++++------ cipher/Cargo.toml | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 098e8ba4..85cf8c3d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -145,9 +145,9 @@ dependencies = [ [[package]] name = "block-padding" -version = "0.4.0-rc.0" +version = "0.4.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d7992d59cd95a984bde8833d4d025886eec3718777971ad15c58df0b070254a" +checksum = "8cac2491ec009b98aa75f36cca2b50e3da7d212918fe953886f6a319042f6016" dependencies = [ "hybrid-array", ] @@ -221,7 +221,7 @@ version = "0.5.0-pre.7" dependencies = [ "blobby", "crypto-common 0.2.0-rc.1", - "inout 0.2.0-rc.0", + "inout 0.2.0-rc.1", "zeroize", ] @@ -726,11 +726,11 @@ dependencies = [ [[package]] name = "inout" -version = "0.2.0-rc.0" +version = "0.2.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbc33218cf9ce7b927426ee4ad3501bcc5d8c26bf5fb4a82849a083715aca427" +checksum = "161ac07241f4d11c21b6d82f1fef1c05aec030c0bf568b35281efe453ea450a7" dependencies = [ - "block-padding 0.4.0-rc.0", + "block-padding 0.4.0-rc.1", "hybrid-array", ] diff --git a/cipher/Cargo.toml b/cipher/Cargo.toml index 26fde3ab..0afe98fb 100644 --- a/cipher/Cargo.toml +++ b/cipher/Cargo.toml @@ -14,7 +14,7 @@ categories = ["cryptography", "no-std"] [dependencies] crypto-common = "0.2.0-rc.1" -inout = "0.2.0-rc.0" +inout = "0.2.0-rc.1" # optional dependencies blobby = { version = "0.3", optional = true } @@ -22,7 +22,7 @@ zeroize = { version = "1.8", optional = true, default-features = false } [features] alloc = [] -std = ["alloc", "crypto-common/std", "inout/std"] +std = ["alloc", "crypto-common/std"] block-padding = ["inout/block-padding"] # Enable random key and IV generation methods rand_core = ["crypto-common/rand_core"]