-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 970 Bytes
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 970 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
28
29
30
31
32
33
34
35
36
[package]
name = "ctutils"
description = """
Constant-time utility library with selection and equality testing support targeting cryptographic
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.2"
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
homepage = "https://github.com/RustCrypto/utils/tree/master/ctselect"
repository = "https://github.com/RustCrypto/utils"
categories = ["cryptography", "no-std"]
keywords = ["constant-time", "crypto", "intrinsics"]
readme = "README.md"
edition = "2024"
rust-version = "1.85"
[dependencies]
cmov = "0.5.3"
# optional dependencies
subtle = { version = "2", optional = true, default-features = false }
[dev-dependencies]
proptest = "1.11"
[features]
alloc = []
subtle = ["dep:subtle"]
[lints]
workspace = true
[package.metadata.docs.rs]
all-features = true