-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
79 lines (71 loc) · 2.01 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "cggmp-threshold-ecdsa"
version = "0.1.0"
edition = "2021"
authors = [
"Drew Stone <[email protected]>",
"Akilesh Tangella <[email protected]>",
]
[workspace]
members = [
"multi-party-ecdsa",
"fs-dkr",
]
[workspace.dependencies]
curv-kzen = { version = "0.10", default-features = false }
centipede = { version = "0.3.1", default-features = false }
zk-paillier = { version = "0.4.4", default-features = false }
sha2 = "0.9"
serde = { version = "1.0", features = ["derive"] }
zeroize = "1"
round-based = { git = "https://github.com/webb-tools/round-based-protocol", version = "0.1.4", features = ["dev"] }
thiserror = "1.0.23"
[workspace.dependencies.multi-party-ecdsa]
version = "0.8"
path = "multi-party-ecdsa"
default-features = false
[workspace.dependencies.paillier]
version = "0.4.3"
package = "kzen-paillier"
default-features = false
[dependencies]
multi-party-ecdsa.workspace = true
curv-kzen.workspace = true
centipede.workspace = true
zk-paillier.workspace = true
sha2.workspace = true
serde.workspace = true
zeroize.workspace = true
paillier.workspace = true
round-based.workspace = true
thiserror.workspace = true
fs-dkr = { path = "fs-dkr", default-features = false }
bincode = "1.3.3"
digest = "0.9"
generic-array = "0.14"
rand_chacha = "0.3.1"
rand = "0.8.5"
getrandom = { version = "0.2", optional = true }
[dev-dependencies]
criterion = "0.3"
aes-gcm = "0.9.4"
hex = "0.4"
tokio = { version = "1", default-features = false, features = ["macros"] }
futures = "0.3"
rocket = { version = "0.5.0-rc.1", default-features = false, features = ["json"] }
reqwest = { version = "0.9", default-features = false }
uuid = { version = "0.8", features = ["v4"] }
serde_json = "1.0"
rand = "0.8"
anyhow = "1"
structopt = "0.3"
secp256k1 = { version = "0.20", features = ["global-context"]}
[dev-dependencies.multi-party-ecdsa]
workspace = true
default-features = false
features = ["dev"]
[features]
default = ["rust-gmp-kzen"]
rust-gmp-kzen = ["fs-dkr/rust-gmp-kzen"]
num-bigint = ["fs-dkr/num-bigint"]
js = ["getrandom/js"]