-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (47 loc) · 1.19 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
[package]
name = "newyorkcity_tss_client"
version = "0.1.4"
authors = [
"gbenattar <[email protected]>",
"Oded Leiba <[email protected]>"
]
edition = "2021"
[lib]
name = "client"
path = "src/lib.rs"
crate-type = ["staticlib", "cdylib", "lib"]
[[bin]]
name = "cli"
path = "src/main.rs"
[dependencies]
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
log = "0.4"
clap = { version = "2.32", features = ["yaml"] }
reqwest = { version = "0.11", features = ["blocking", "json"] }
itertools = "0.10.3"
hex = "0.4.3"
bitcoin = "0.27.1"
config = "0.11.0"
floating-duration = "0.1.2"
curv = { package = "curv-kzen", version = "0.7" }
web3 = "0.18.0"
anyhow = "1.0"
openssl = { version = '0.10', features = ["vendored"] }
tokio = { version = "1", features = ["full"] }
futures = "0.3"
thiserror = "1.0"
rlp = "0.5.1"
[dependencies.centipede]
git = "https://github.com/KZen-networks/centipede"
tag = "v0.2.12"
[dependencies.zk-paillier]
git = "https://github.com/KZen-networks/zk-paillier"
tag = "v0.3.12"
[dependencies.kms]
git = "https://github.com/KZen-networks/kms-secp256k1"
tag = "v0.3.0"
[dependencies.multi-party-ecdsa]
git = "https://github.com/KZen-networks/multi-party-ecdsa"
tag = "v0.4.6"