forked from ZenGo-X/kms-secp256k1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (39 loc) · 970 Bytes
/
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
[package]
name = "kms"
version = "0.3.1"
authors = [
"Omer <omer@kzencorp.com>",
"Gary <gary@kzencorp.com>"
]
[lib]
crate-type = ["lib"]
[dependencies]
rand = "0.5"
serde = "1.0"
serde_derive = "1.0"
[dependencies.curv]
package = "curv-kzen"
version = "0.7"
default-features = false
[dependencies.paillier]
git = "https://github.com/KZen-networks/rust-paillier"
tag = "v0.3.10"
default-features = false
[dependencies.zk-paillier]
git = "https://github.com/KZen-networks/zk-paillier"
tag = "v0.3.12"
default-features = false
[dependencies.multi-party-schnorr]
git = "https://github.com/KZen-networks/multi-party-schnorr"
tag = "v0.4.5"
default-features = false
[dependencies.multi-party-ecdsa]
git = "https://github.com/KZen-networks/multi-party-ecdsa"
tag = "v0.4.6"
default-features = false
[dependencies.centipede]
git = "https://github.com/KZen-networks/centipede"
tag = "v0.2.12"
default-features = false
[features]
default = ["curv/rust-gmp-kzen"]