From deb0582c8be97f00f0af1324674104519aeaa7cd Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 18 Jan 2026 22:00:58 -0700 Subject: [PATCH] ctutils v0.4.0-pre.5 --- Cargo.lock | 10 ++-------- ctutils/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6f442561..e13e73a1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -62,12 +62,6 @@ dependencies = [ "proptest", ] -[[package]] -name = "cmov" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df1888fb431ee159b513b5c2f249e03f1c9d788f7bd842927619dbeb88764039" - [[package]] name = "collectable" version = "0.1.0" @@ -85,9 +79,9 @@ dependencies = [ [[package]] name = "ctutils" -version = "0.4.0-pre.4" +version = "0.4.0-pre.5" dependencies = [ - "cmov 0.5.1", + "cmov", "proptest", "subtle", ] diff --git a/ctutils/Cargo.toml b/ctutils/Cargo.toml index 371ce875..fa089993 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.4.0-pre.4" +version = "0.4.0-pre.5" authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" homepage = "https://github.com/RustCrypto/utils/tree/master/ctselect"