From 07a9c36a0cf803f63dd02d3cb9854256b2ec7e25 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 2 Feb 2026 10:05:35 -0700 Subject: [PATCH] Bump `getrandom` to v0.4 Release PR: rust-random/getrandom#798 --- dsa/Cargo.toml | 2 +- lms/Cargo.toml | 2 +- ml-dsa/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dsa/Cargo.toml b/dsa/Cargo.toml index bbcfee15..5f0522f5 100644 --- a/dsa/Cargo.toml +++ b/dsa/Cargo.toml @@ -34,7 +34,7 @@ hex = "0.4" hex-literal = "1" pkcs8 = { version = "0.11.0-rc.10", default-features = false, features = ["pem"] } proptest = "1" -getrandom = { version = "0.4.0-rc.1", features = ["sys_rng"] } +getrandom = { version = "0.4", features = ["sys_rng"] } sha1 = "0.11.0-rc.4" der = { version = "0.8.0-rc.10", features = ["derive"] } rand_core = "0.10.0-rc-6" diff --git a/lms/Cargo.toml b/lms/Cargo.toml index 7df532a6..783e2ccb 100644 --- a/lms/Cargo.toml +++ b/lms/Cargo.toml @@ -14,7 +14,7 @@ keywords = ["crypto", "signature"] [dependencies] digest = "0.11.0-rc.10" hybrid-array = { version = "0.4", features = ["extra-sizes", "zeroize"] } -getrandom = { version = "0.4.0-rc.1", features = ["sys_rng"] } +getrandom = { version = "0.4", features = ["sys_rng"] } sha2 = "0.11.0-rc.4" static_assertions = "1.1" rand_core = "0.10.0-rc-6" diff --git a/ml-dsa/Cargo.toml b/ml-dsa/Cargo.toml index 717c3c13..cb526a71 100644 --- a/ml-dsa/Cargo.toml +++ b/ml-dsa/Cargo.toml @@ -45,7 +45,7 @@ zeroize = { version = "1.8.1", optional = true, default-features = false } [dev-dependencies] criterion = "0.7" -getrandom = { version = "0.4.0-rc.1", features = ["sys_rng"] } +getrandom = { version = "0.4", features = ["sys_rng"] } hex = { version = "0.4", features = ["serde"] } hex-literal = "1" pkcs8 = { version = "0.11.0-rc.10", features = ["pem"] }