[package]
edition = "2024"
name = "clmul"
version = "0.8.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Carry-less multiply for Rust, internally uses llvm or compiler intrinsics, with fallback if the CPU has no clmul instruction"
documentation = "https://docs.rs/clmul"
readme = "README.md"
keywords = [
"clmul",
"math",
"logic",
"bits",
"intrinsic",
]
categories = [
"algorithms",
"encoding",
"hardware-support",
"mathematics",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/apps4uco/clmul"
[package.metadata.docs.rs]
all-features = true
[features]
default = []
llvm = ["dep:paste"]
[lib]
name = "clmul"
path = "src/lib.rs"
[[bin]]
name = "clmul_demo"
path = "src/bin/clmul_demo.rs"
[[bench]]
name = "benchmark"
path = "benches/benchmark.rs"
harness = false
[dependencies.core_detect]
version = "1.0.0"
[dependencies.paste]
version = "1.0.15"
optional = true
[dev-dependencies.criterion]
version = "0.8.1"