From 61425aee201d06e60fa41810f2c14723f767fa02 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Fri, 15 May 2026 12:05:52 -0600 Subject: [PATCH] ctutils: bump `subtle` version requirement to v2.6 We're failing `minimal-versions` because `subtle` v2.0.0 didn't have `CtOption`, so this pins to the latest minor release. --- ctutils/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctutils/Cargo.toml b/ctutils/Cargo.toml index e818fb87..725866bc 100644 --- a/ctutils/Cargo.toml +++ b/ctutils/Cargo.toml @@ -20,7 +20,7 @@ rust-version = "1.85" cmov = "0.5.3" # optional dependencies -subtle = { version = "2", optional = true, default-features = false } +subtle = { version = "2.6", optional = true, default-features = false } [dev-dependencies] proptest = "1.11"