[package]
edition = "2024"
name = "cryprot-codes"
version = "0.2.2"
authors = ["Robin Hundt"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Linear codes for Silent OT."
readme = "README.md"
keywords = ["expand-convolute"]
license = "MIT"
repository = "https://github.com/robinhundt/CryProt"
resolver = "2"
[features]
bench-libote = ["dep:libote-codes"]
libote-compat = ["dep:libote-codes"]
[lib]
name = "cryprot_codes"
path = "src/lib.rs"
bench = false
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[dependencies.aes]
version = "=0.9.0-rc.4"
features = ["hazmat"]
[dependencies.bytemuck]
version = "1.25.0"
features = ["must_cast"]
[dependencies.cpufeatures]
version = "0.3.0"
[dependencies.cryprot-core]
version = "0.3.1"
[dependencies.fastdivide]
version = "0.4.2"
[dependencies.hybrid-array]
version = "0.4.7"
features = ["bytemuck"]
[dependencies.rand]
version = "0.10.0"
[dependencies.seq-macro]
version = "=0.3.6"
[dev-dependencies.criterion]
version = "0.8"
features = [
"async_tokio",
"html_reports",
]
[target.'cfg(target_os = "linux")'.dependencies.libote-codes]
version = "0.1.0"
optional = true
[lints.clippy]
unwrap_used = "warn"