aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsilverstillisntgold <[email protected]>2025-08-09 06:32:03 -0400
committerJack O'Connor <[email protected]>2026-01-08 08:45:48 -0800
commit0b64ce2aa2772c6df8b9058104924020febfd889 (patch)
tree110b6702f7eb44def3f15156d225753a61a200d0
parent890050cb9b89448a25e067349aed9734a3b03d5e (diff)
bump constant_time_eq version to 0.4.2
-rw-r--r--Cargo.toml6
1 files changed, 4 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 61ca47f..8302b3f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -29,7 +29,9 @@ wasm32_simd = []
# enabled by default. (Previously this also controlled runtime CPU feature
# detection on x86, but now we use the no-std-compatible `cpufeatures` crate
# for that.)
-std = []
+# Also enables the `std` feature of the `constant_time_eq` dependency, which
+# toggles a runtime feature check on 64-bit ARM targets.
+std = ["constant_time_eq/std"]
# The `rayon` feature (disabled by default, but enabled for docs.rs) adds the
# `update_rayon` and (in combination with `mmap` below) `update_mmap_rayon`
@@ -112,7 +114,7 @@ features = ["mmap", "rayon", "serde", "zeroize"]
[dependencies]
arrayref = "0.3.5"
arrayvec = { version = "0.7.4", default-features = false }
-constant_time_eq = { version = "0.3.1", default-features = false }
+constant_time_eq = { version = "0.4.2", default-features = false }
cfg-if = "1.0.0"
digest = { version = "0.10.1", features = ["mac"], optional = true }
memmap2 = { version = "0.9", optional = true }