-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
33 lines (29 loc) · 1.08 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "star-sharks"
version = "0.6.1"
authors = ["Aitor Ruano <[email protected]>", "Alex Davidson <[email protected]>", "Ralph Giles <[email protected]>"]
description = "Shamir's Secret Sharing library for the STAR protocol"
repository = "https://github.com/brave/sta-rs"
readme = "README.md"
keywords = ["shamir", "secret", "sharing", "share", "crypto"]
categories = ["algorithms", "cryptography", "mathematics"]
license = "MIT/Apache-2.0"
edition = "2018"
[features]
default = ["std", "zeroize_memory"]
std = ["rand/std", "rand/std_rng"]
fuzzing = ["std", "arbitrary"]
zeroize_memory = ["zeroize"]
[dependencies]
rand = { version = "0.8.5", default-features = false }
arbitrary = { version = "1.3.0", features = ["derive"], optional = true }
zeroize = { version = "1.5.5", features = ["zeroize_derive"], optional = true }
ff = { version = "0.13", features = ["derive"] }
bitvec = { version = "1.0.1", default-features = false }
byteorder = { version = "1", default-features = false }
[dev-dependencies]
criterion = "0.5"
rand_chacha = "0.3"
[[bench]]
name = "benchmarks"
harness = false