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