From bb0c7fa751b975d57363b96ae51471d8516c576d Mon Sep 17 00:00:00 2001 From: Daniel Dickison Date: Wed, 22 Apr 2026 23:20:22 -0700 Subject: [PATCH] Unpin and upgrade rand to 0.8.6 This addresses https://rustsec.org/advisories/RUSTSEC-2026-0097.html --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5a5d395..7633015 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ hmac-sha512 = { version = "1.1.12", features = ["traits010", "sha384"] } k256 = { version = "0.13.4", features = ["ecdsa", "std", "pkcs8", "pem"] } p256 = { version = "0.13.2", features = ["ecdsa", "std", "pkcs8", "pem", "ecdh"] } p384 = { version = "0.13.1", features = ["ecdsa", "std", "pkcs8", "pem"] } -rand = "=0.8.5" +rand = "0.8.6" serde = { version = "1.0.228", features = ["derive"] } serde_json = "1.0.149" thiserror = "2.0.18"