blahaj/Cargo.toml

33 lines
929 B
TOML
Raw Normal View History

2020-01-10 16:08:30 +00:00
[package]
2024-11-17 00:11:25 +00:00
name = "blahaj"
version = "0.6.0"
2024-11-17 00:11:25 +00:00
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"
2020-01-10 16:08:30 +00:00
readme = "README.md"
2024-11-17 00:11:25 +00:00
keywords = ["shamir", "secret", "sharing", "share", "cryptography"]
2020-01-10 16:08:30 +00:00
categories = ["algorithms", "cryptography", "mathematics"]
2024-11-17 00:11:25 +00:00
license = "MIT"
edition = "2021"
2020-01-10 16:08:30 +00:00
[features]
default = ["std", "zeroize_memory"]
std = ["rand/std", "rand/std_rng"]
fuzzing = ["std", "arbitrary"]
zeroize_memory = ["zeroize"]
2020-01-10 16:08:30 +00:00
[dependencies]
rand = { version = "0.8", default-features = false }
2024-11-17 00:39:32 +00:00
hashbrown = "0.15"
arbitrary = { version = "0.4.7", features = ["derive"], optional = true }
zeroize = { version = "1.2.0", features = ["zeroize_derive"], optional = true }
2020-01-10 16:08:30 +00:00
[dev-dependencies]
criterion = "0.3"
rand_chacha = "0.3"
2020-01-10 16:08:30 +00:00
[[bench]]
name = "benchmarks"
harness = false