-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
49 lines (41 loc) · 1.23 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
[package]
name = "cggmp-wasm"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "Webassembly bindings to CGGMP multi-party-ecdsa"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
#mpc-ecdsa-getrandom-hack = {path = "../../getrandom", version = "*"}
mpc-ecdsa-getrandom-hack = {version = "*"}
getrandom = {version = "0.1.16", features = ["wasm-bindgen"]}
wasm-bindgen = { version = "0.2.79", features = ["serde-serialize"] }
serde-wasm-bindgen = "0.5"
rand = { version="0.6.5", features = ["wasm-bindgen"] }
#rand = { version="0.7.3", features = ["getrandom"] }
console_error_panic_hook = "0.1.6"
sha3 = "0.10"
serde = {version = "1", features = ["derive"]}
hex = "0.4"
round-based = "0.1.4"
log = "0.4"
wasm-log = "0.3"
[dependencies.cggmp-threshold-ecdsa]
git = "https://github.com/webb-tools/cggmp-threshold-ecdsa.git"
features = ["num-bigint"]
default-features = false
[dependencies.curv-kzen]
version = "0.10"
features = ["num-bigint"]
default-features = false
[dependencies.paillier]
version = "0.4.3"
package = "kzen-paillier"
default-features = false
[dependencies.multi-party-ecdsa]
git = "https://github.com/webb-tools/multi-party-ecdsa"
default-features = false
version = "*"
[dev-dependencies]
wasm-bindgen-test = "0.3"