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