blahaj/Cargo.toml

33 lines
929 B
TOML

[package]
name = "blahaj"
version = "0.5.0"
authors = ["Ryan Heywood <ryan@distrust.co>"]
description = "Fast, small, and secure Shamir's Secret Sharing"
homepage = "https://git.distrust.co/public/blahaj"
repository = "https://git.distrust.co/public/blahaj"
readme = "README.md"
keywords = ["shamir", "secret", "sharing", "share", "cryptography"]
categories = ["algorithms", "cryptography", "mathematics"]
license = "MIT"
edition = "2021"
[features]
default = ["std", "zeroize_memory"]
std = ["rand/std", "rand/std_rng"]
fuzzing = ["std", "arbitrary"]
zeroize_memory = ["zeroize"]
[dependencies]
rand = { version = "0.8", default-features = false }
hashbrown = "0.15"
arbitrary = { version = "0.4.7", features = ["derive"], optional = true }
zeroize = { version = "1.2.0", features = ["zeroize_derive"], optional = true }
[dev-dependencies]
criterion = "0.3"
rand_chacha = "0.3"
[[bench]]
name = "benchmarks"
harness = false