blahaj/Cargo.toml

38 lines
1.0 KiB
TOML

[package]
name = "sharks"
version = "0.3.0"
authors = ["Aitor Ruano <codearm@pm.me>"]
description = "Fast, small and secure Shamir's Secret Sharing library crate"
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" }
codecov = { repository = "https://github.com/c0dearm/sharks" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
rand = "0.7"
[target.'cfg(target_arch="wasm32")'.dependencies]
serde = "1.0.104"
serde_derive = "1.0.104"
rand = { version = "0.7", features = ["wasm-bindgen"] }
wasm-bindgen = { version = "0.2.58", features = ["serde-serialize"] }
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "benchmarks"
harness = false