2020-01-10 16:08:30 +00:00
|
|
|
[package]
|
2024-11-17 00:11:25 +00:00
|
|
|
name = "blahaj"
|
2021-03-14 17:06:00 +00:00
|
|
|
version = "0.5.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
|
|
|
|
2020-04-02 11:45:01 +00:00
|
|
|
[features]
|
2021-03-14 16:56:20 +00:00
|
|
|
default = ["std", "zeroize_memory"]
|
2021-02-04 09:11:43 +00:00
|
|
|
std = ["rand/std", "rand/std_rng"]
|
2020-04-24 06:10:40 +00:00
|
|
|
fuzzing = ["std", "arbitrary"]
|
2021-03-14 16:56:20 +00:00
|
|
|
zeroize_memory = ["zeroize"]
|
2020-01-10 16:08:30 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-02-04 09:11:43 +00:00
|
|
|
rand = { version = "0.8", default-features = false }
|
2024-11-17 00:39:32 +00:00
|
|
|
hashbrown = "0.15"
|
2021-02-04 09:11:43 +00:00
|
|
|
arbitrary = { version = "0.4.7", features = ["derive"], optional = true }
|
2021-03-14 16:56:20 +00:00
|
|
|
zeroize = { version = "1.2.0", features = ["zeroize_derive"], optional = true }
|
2020-01-10 16:08:30 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
criterion = "0.3"
|
2021-02-04 09:11:43 +00:00
|
|
|
rand_chacha = "0.3"
|
2020-01-10 16:08:30 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "benchmarks"
|
|
|
|
harness = false
|