[package]
edition = "2024"
rust-version = "1.85"
name = "tc_constant_time"
version = "0.1.0"
build = false
include = [
"src/**",
"tests/**",
"README.md",
"CHANGELOG.md",
"LICENSE-MIT",
"LICENSE-APACHE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Constant-time selection, comparison, and conditional arithmetic primitives."
documentation = "https://docs.rs/tc_constant_time"
readme = "README.md"
keywords = [
"constant-time",
"cryptography",
"no-std",
]
categories = [
"cryptography",
"no-std",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/TomiCheng/tc_core"
[lib]
name = "tc_constant_time"
path = "src/lib.rs"
[[test]]
name = "api"
path = "tests/api.rs"
[[test]]
name = "array"
path = "tests/array.rs"
[[test]]
name = "choice"
path = "tests/choice.rs"
[[test]]
name = "integers"
path = "tests/integers.rs"
[[test]]
name = "slice"
path = "tests/slice.rs"
[[test]]
name = "traits"
path = "tests/traits.rs"