-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (39 loc) · 974 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
[package]
name = "mpcrypto"
version = "0.1.0"
authors = [
"Genie <[email protected]>",
"MyeongJin <[email protected]>"
]
keywords = [
"mpc",
"key",
"signature",
"secret-shares",
"cryptography",
"cryptocurrency",
"blockchain",
"rust"
]
edition = "2018"
homepage = "https://eoseoul.io"
repository = "https://git.nwz.kr/bptf/mpcrypto"
license = "MIT/Apache-2.0"
categories = ["cryptography"]
[lib]
crate-type = ["lib"]
[dependencies]
multi-party-ecdsa = { git = "https://github.com/KZen-networks/multi-party-ecdsa" }
paillier = { git = "https://github.com/KZen-networks/rust-paillier", tag = "v0.3.0" }
rust-crypto = { package = "rust-crypto", version = "^0.2" }
hex = "0.3.2"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
reqwest = { version = "0.9.5", default-features = false }
base58 = "0.1"
ripemd160 = "*"
[dependencies.curv]
git = "https://github.com/KZen-networks/curv"
tag = "v0.2.0"
features = ["ec_secp256k1"]