forked from ZenGo-X/multi-party-ecdsa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (50 loc) · 1.44 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
[package]
name = "multi-party-ecdsa"
version = "0.1.0"
authors = [
"Gary <[email protected]>",
"Omer <[email protected]>"
]
keywords = [
"ecdsa",
"multi-party-ecdsa",
"signature",
"rust",
"secret-shares",
"blockchain",
"cryptography",
"cryptocurrency"]
homepage = "https://github.com/KZen-networks/multi-party-ecdsa"
repository = "https://github.com/KZen-networks/multi-party-ecdsa"
license = "GPL-3.0-or-later"
categories = ["cryptography"]
[lib]
crate-type = ["staticlib", "rlib"]
[dependencies]
paillier = { git = "https://github.com/mortendahl/rust-paillier"}
zk-paillier = { git = "https://github.com/KZen-networks/zk-paillier"}
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
reqwest = "0.9.5"
rocket = "0.4.0"
rocket_contrib = "0.4.0"
uuid = { version = "0.7", features = ["v4"] }
rust-crypto = { git = "https://github.com/vhnatyk/rust-crypto", branch="aarch64"} #"^0.2"
[dependencies.curv]
git = "https://github.com/KZen-networks/curv"
features = ["curvesecp256k1"]
[dependencies.centipede]
git = "https://github.com/KZen-networks/centipede"
[patch.crates-io]
rust-gmp = { version = "0.5.0", features = ["serde_support"], git = "https://github.com/KZen-networks/rust-gmp" }
[dev-dependencies]
criterion = "0.2"
[[bench]]
name = "keygen_2p"
path = "benches/two_party_ecdsa/lindell_2017/keygen.rs"
harness = false
[[bench]]
name = "keygen_mp"
path = "benches/multi_party_ecdsa/gg18/keygen.rs"
harness = false