-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (28 loc) · 892 Bytes
/
Cargo.toml
File metadata and controls
35 lines (28 loc) · 892 Bytes
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
[package]
name = "fs-dkr"
version = "0.1.0"
authors = [
"Omer Shlomovits <omer.shlomovits@gmail.com>",
"Tudor Cebere <tudorcebere@gmail.com>"
]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[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-ecdsa]
git = "https://github.com/ZenGo-X/multi-party-ecdsa"
tag = "v0.7.1"
default-features = false
[dependencies]
curv = { package = "curv-kzen", version = "0.7", default-features = true }
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
zeroize = "1"
round-based = { version = "0.1.4", features = ["dev"] }
thiserror = "1.0.26"