blahaj/Cargo.toml

36 lines
988 B
TOML
Raw Normal View History

2020-01-10 16:08:30 +00:00
[package]
name = "sharks"
2020-08-03 08:33:50 +00:00
version = "0.4.2"
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"]
std = ["rand/std"]
fuzzing = ["std", "arbitrary"]
2020-01-10 16:08:30 +00:00
[dependencies]
rand = { version = "0.7", default-features = false }
hashbrown = "0.7"
arbitrary = {version = "0.4.2", features = ["derive"], optional = true}
2020-01-10 16:08:30 +00:00
[dev-dependencies]
criterion = "0.3"
rand_chacha = "0.2"
2020-01-10 16:08:30 +00:00
[[bench]]
name = "benchmarks"
harness = false