From 5c526dd95c415e96957e33ed519f02e2f9c9557f Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 27 Dec 2025 23:28:14 -0700 Subject: [PATCH] ctutils v0.2.1 Includes pin to `cmov` v0.4.3 with important security fixes, see #1304 --- Cargo.lock | 2 +- ctutils/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5108eb87..ea60d9aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -108,7 +108,7 @@ dependencies = [ [[package]] name = "ctutils" -version = "0.2.0" +version = "0.2.1" dependencies = [ "cmov", "subtle", diff --git a/ctutils/Cargo.toml b/ctutils/Cargo.toml index 65b647b7..f5672ef6 100644 --- a/ctutils/Cargo.toml +++ b/ctutils/Cargo.toml @@ -5,7 +5,7 @@ Constant-time utility library with selection and equality testing support target applications. Supports `const fn` where appropriate. Built on the `cmov` crate which provides architecture-specific predication intrinsics. Heavily inspired by the `subtle` crate. """ -version = "0.2.0" +version = "0.2.1" authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" homepage = "https://github.com/RustCrypto/utils/tree/master/ctselect"