forked from ZenGo-X/emerald-city
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
53 lines (40 loc) · 1.08 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
[package]
name = "emerald-city"
version = "0.2.0"
authors = [
"Omer <[email protected]>"
]
description = "WASM/HW-friendly lightweight client application for threshold ECDSA"
homepage = "https://github.com/KZen-networks"
repository = "https://github.com/KZen-networks/emerald-city"
license = "GPL-3.0-or-later"
[lib]
crate-type = ["staticlib", "lib"]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
rand = "0.6.5"
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2"
rand = { version="0.6.5", features = ["wasm-bindgen"] }
[dependencies]
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
num-bigint = {version = "0.2.2" , features = ["serde","rand"]}
num-integer = "0.1"
num-traits = "0.2.6"
bit-vec = "0.5"
cryptoxide = "0.1.1"
zeroize = "0.5.2"
libsecp256k1 = "0.2.2"
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test = "0.2"
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
criterion = "0.2"
[[bench]]
name = "keygen"
path = "tests/keygen.rs"
harness = false
[[bench]]
name = "sign"
path = "tests/sign.rs"
harness = false