-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
57 lines (48 loc) · 1.38 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]
name = "tss-cli"
version = "0.2.0"
authors = [
"Kaspars Sprogis <[email protected]>"
]
edition = "2018"
[[bin]]
name = "tss_cli"
path = "src/main.rs"
[dependencies]
rocket = { version = "0.5.0-rc.1", features = ["json", "tls"] }
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
hex = "0.4"
reqwest = { version = "0.10.1", default-features = false, features = ["native-tls", "json", "blocking"] }
uuid = { version = "0.8", features = ["v4"] }
aes-gcm = "0.9.4"
libsecp256k1 = "0.3.2"
curv = { package = "curv-kzen", version = "0.9", default-features = false }
#zk-paillier = { git = "https://github.com/KZen-networks/zk-paillier", tag = "v0.4.2"}
clap = { version = "2.33", features = ["yaml"] }
hmac = "0.11"
sha2 = "0.9"
rand = "0.8"
ring = "0.17.0-alpha.11"
data-encoding="2.3.3"
rustc-serialize="0.3.25"
ttlhashmap="0.1.0"
itertools="0.10"
[dependencies.paillier]
version = "0.4.2"
package = "kzen-paillier"
default-features = false
[dependencies.multi-party-ecdsa]
git = "https://github.com/ZenGo-X/multi-party-ecdsa"
#tag = "v0.3.0"
branch = "master"
[dependencies.multi-party-eddsa]
git = "https://github.com/HRezaei/multi-party-eddsa"
branch = "feature/curv-0.9-examples"
[patch.crates-io]
rust-gmp = { version = "0.5.1", features = ["serde_support"], git = "https://github.com/KZen-networks/rust-gmp" }
[profile.release]
opt-level = 2
[features]
default = ["curv/rust-gmp-kzen"]