From 7f490c6d902106357d53db1364903905f2de1833 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 21 Oct 2024 07:37:57 -0600 Subject: [PATCH] ml-kem: bump `hybrid-array` to v0.2 (#75) --- Cargo.lock | 4 ++-- ml-kem/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fcf35d7..1bf59f5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -411,9 +411,9 @@ dependencies = [ [[package]] name = "hybrid-array" -version = "0.2.0-rc.11" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5a41e5b0754cae5aaf7915f1df1147ba8d316fc6e019cfcc00fbaba96d5e030" +checksum = "45a9a965bb102c1c891fb017c09a05c965186b1265a207640f323ddd009f9deb" dependencies = [ "typenum", ] diff --git a/ml-kem/Cargo.toml b/ml-kem/Cargo.toml index 1a0e692..cff7ccc 100644 --- a/ml-kem/Cargo.toml +++ b/ml-kem/Cargo.toml @@ -23,7 +23,7 @@ zeroize = ["dep:zeroize"] [dependencies] kem = "0.3.0-pre.0" -hybrid-array = { version = "0.2.0-rc.9", features = ["extra-sizes"] } +hybrid-array = { version = "0.2", features = ["extra-sizes"] } rand_core = "0.6.4" sha3 = { version = "0.10.8", default-features = false } zeroize = { version = "1.8.1", optional = true, default-features = false }