From 1f4985087a0c76fe110a398ccd338ae539ff737b Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Wed, 5 Nov 2025 07:33:42 -0700 Subject: [PATCH] aead+cipher: bump `inout` to v0.2 --- aead/Cargo.toml | 2 +- cipher/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aead/Cargo.toml b/aead/Cargo.toml index 54167ef2f..f5519dcb6 100644 --- a/aead/Cargo.toml +++ b/aead/Cargo.toml @@ -17,7 +17,7 @@ such as AES-GCM as ChaCha20Poly1305, which provide a high-level API [dependencies] crypto-common = { version = "0.2.0-rc.5", path = "../crypto-common" } -inout = "0.2.0-rc.6" +inout = "0.2" # optional dependencies arrayvec = { version = "0.7", optional = true, default-features = false } diff --git a/cipher/Cargo.toml b/cipher/Cargo.toml index 7a1590a44..036cece53 100644 --- a/cipher/Cargo.toml +++ b/cipher/Cargo.toml @@ -14,7 +14,7 @@ description = "Traits for describing block ciphers and stream ciphers" [dependencies] crypto-common = { version = "0.2.0-rc.5", path = "../crypto-common" } -inout = "0.2.0-rc.6" +inout = "0.2" # optional dependencies blobby = { version = "0.4.0-pre.1", optional = true }