blahaj/Cargo.toml

38 lines
1.1 KiB
TOML
Raw Normal View History

2020-01-10 16:08:30 +00:00
[package]
name = "sharks"
2023-10-23 23:26:55 +00:00
version = "0.5.1"
2020-01-10 16:08:30 +00:00
authors = ["Aitor Ruano <codearm@pm.me>"]
2020-01-13 11:32:47 +00:00
description = "Fast, small and secure Shamir's Secret Sharing library crate"
2020-01-10 16:08:30 +00:00
homepage = "https://github.com/c0dearm/sharks"
repository = "https://github.com/c0dearm/sharks"
readme = "README.md"
keywords = ["shamir", "secret", "sharing", "share", "crypto"]
categories = ["algorithms", "cryptography", "mathematics"]
license = "MIT/Apache-2.0"
edition = "2018"
[badges]
maintenance = { status = "actively-developed" }
2020-03-23 14:14:18 +00:00
codecov = { repository = "c0dearm/sharks" }
2020-01-10 16:08:30 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[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 }
2023-10-23 23:21:11 +00:00
hashbrown = "0.14.2"
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