[package]
edition = "2021"
name = "rivide"
version = "1.1.5"
authors = ["Moh. Ananda Firmansyah Putra <mrvlous@proton.me>"]
build = "build.rs"
include = [
"Cargo.toml",
"build.rs",
"src/**/*.rs",
"tests/**/*.rs",
"benches/**/*.rs",
"examples/**/*.rs",
"c_src/**/*",
"docs/**/*.md",
"README.md",
"CHANGELOG.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Official Rust idiomatic and zero-allocation bindings for the Rivide Post-Quantum Cryptography (NIST FIPS 203 ML-KEM & NIST FIPS 204 ML-DSA) C99 Library."
readme = "README.md"
keywords = [
"post-quantum",
"pqc",
"ml-kem",
"ml-dsa",
"cryptography",
]
categories = [
"cryptography",
"no-std",
]
license = "MIT"
repository = "https://github.com/mrvlous/rivide"
[features]
default = ["std"]
std = []
[lib]
name = "rivide"
path = "src/lib.rs"
[[example]]
name = "bench"
path = "examples/bench.rs"
[[example]]
name = "dsa_sign"
path = "examples/dsa_sign.rs"
[[example]]
name = "hybrid_channel"
path = "examples/hybrid_channel.rs"
[[example]]
name = "kem_exchange"
path = "examples/kem_exchange.rs"
[[test]]
name = "test_crypto"
path = "tests/test_crypto.rs"
[[test]]
name = "test_dsa"
path = "tests/test_dsa.rs"
[[test]]
name = "test_kem"
path = "tests/test_kem.rs"
[[bench]]
name = "bench_pqc"
path = "benches/bench_pqc.rs"
harness = false
[dependencies]
[build-dependencies.cc]
version = "1.0"