forked from mikelodder7/gennaro-dkg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (35 loc) · 1.05 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
[package]
authors = ["Michael Lodder <redmike7@gmail.com>"]
categories = ["cryptography"]
description = "The Gennaro Distributed Key Generation Algorithm"
documentation = "https://docs.rs/gennaro-dkg"
edition = "2021"
homepage = "https://github.com/mikelodder7/gennaro-dkg"
keywords = ["key", "generation", "distributed", "gennaro"]
license = "Apache-2.0 OR MIT"
name = "gennaro-dkg"
readme = "README.md"
repository = "https://github.com/mikelodder7/gennaro-dkg"
version = "0.8.1"
[features]
default = ["curve25519"]
curve25519 = ["vsss-rs/curve25519"]
[dependencies]
anyhow = "1.0"
data-encoding = "2.3"
rand_core = { version = "0.6", features = ["std"] }
rand_chacha = "0.3"
thiserror = "1.0"
serde = "1.0"
soteria-rs = { version = "0.3", features = ["serde", "elements"] }
uint-zigzag = { version = "0.2.1", features = ["std"] }
vsss-rs = { version = "3.3", default-features = false, features = ["std"] }
zeroize = "1"
[dev-dependencies]
bls12_381_plus = "0.8"
k256 = "0.13"
p256 = "0.13"
maplit = "1.0"
serde_bare = "0.5"
serde-encrypt = "0.7"
serde_json = "1.0"