-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
57 lines (54 loc) · 2.18 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
authors = ["Michael Lodder <[email protected]>"]
categories = ["cryptography", "algorithms"]
description = "Verifiable Secret Sharing Schemes for splitting, combining and verifying secret shares"
documentation = "https://docs.rs/vsss-rs"
edition = "2021"
homepage = "https://github.com/mikelodder7/vsss-rs"
keywords = ["crypto", "sharing", "secret", "verifiable"]
license = "Apache-2.0 OR MIT"
name = "vsss-rs"
readme = "README.md"
repository = "https://github.com/mikelodder7/vsss-rs"
version = "4.3.8"
[features]
default = ["std"]
alloc = ["rand_core/alloc", "rand/alloc", "serde/alloc"]
curve25519 = ["curve25519-dalek", "serde", "hex", "zeroize", "alloc"]
std = ["rand_core/std", "rand/std", "serde/std"]
[dependencies]
bls12_381_plus = { version = "0.8", optional = true }
blstrs_plus = { version = "0.8", optional = true }
crypto-bigint = "0.5"
curve25519-dalek = { version = "4.1.3", features = ["digest", "rand_core", "group"], optional = true }
elliptic-curve = { version = "0.13", features = ["ecdh"] }
k256 = { version = "0.13", optional = true }
p256 = {version = "0.13", optional = true }
p384 = { version = "0.13", optional = true }
p521 = { version = "0.13", optional = true }
ed448-goldilocks-plus = { version = "0.11", optional = true }
generic-array = "1"
hex = { version = "0.4", default-features = false, optional = true }
rand_core = "0.6"
serde = { version = "1.0", default-features = false, features = ["derive"], optional = true }
subtle = { version = "2.5" }
sha3 = { version = "0.10", default-features = false }
thiserror-no-std = "2.0"
zeroize = { version = "1", features = ["zeroize_derive"], optional = true }
[dev-dependencies]
bls12_381_plus = "0.8"
ed25519-dalek = "2.1.1"
ed448-goldilocks-plus = "0.11.2"
hex = "0.4"
k256 = { version = "0.13", features = ["arithmetic", "bits"] }
p256 = { version = "0.13", features = ["arithmetic", "bits"] }
p384 = { version = "0.13", features = ["arithmetic", "bits"] }
p521 = { version = "0.13", features = ["arithmetic"] }
rand = { version = "0.8", default-features = false }
rand_chacha = "0.3.1"
rand_xorshift = "0.3"
rstest = "0.21"
serde_json = "1.0"
serde_bare = "0.5"
sha2 = "0.10"
x25519-dalek = { version = "2", features = ["static_secrets"] }