clmul 0.8.0

Carry-less multiply for Rust, internally uses llvm or compiler intrinsics, with fallback if the CPU has no clmul instruction
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"