-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 881 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "cmov"
version = "0.5.3"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/cmov"
readme = "README.md"
repository = "https://github.com/RustCrypto/utils"
license = "Apache-2.0 OR MIT"
keywords = ["constant-time", "crypto", "intrinsics"]
categories = ["cryptography", "hardware-support", "no-std"]
description = """
Conditional move CPU intrinsics which are guaranteed on major platforms (ARM32/ARM64, x86/x86_64,
RISC-V) to execute in constant-time and not be rewritten as branches by the compiler. Provides
wrappers for the CMOV family of instructions on x86/x86_64 and CSEL on AArch64, along with a
portable "best-effort" pure Rust fallback implementation.
"""
[target.'cfg(any(unix, windows))'.dev-dependencies]
proptest = "1.9"
[lints]
workspace = true
[package.metadata.docs.rs]
all-features = true