forked from ZenGo-X/curv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (50 loc) · 1.24 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
55
56
57
[package]
name = "curv"
version = "0.6.1"
edition = "2018"
authors = ["Omer Shlomovits"]
license = "MIT"
description = "Curv contains an extremly simple interface to onboard new elliptic curves. Use this library for general purpose elliptic curve cryptography"
repository = "https://github.com/ZenGo-X/curv"
[lib]
crate-type = ["lib"]
[dependencies]
blake2b_simd = "0.5.7"
cryptoxide = "0.1.2"
curve25519-dalek = "1.2.3"
derivative = "2.1.1"
digest = "0.8.1"
ff-zeroize = "0.6.3"
funty = "=1.1.0"
generic-array = "0.14"
hex = "^0.3"
hmac = "0.7.1"
merkle-sha3 = "^0.1"
lazy_static = "1.4.0"
num-traits = "0.2"
num-integer = "0.1"
pairing-plus = "0.19"
rand = "0.6"
ring-algorithm = "0.2.3"
rust-crypto = "^0.2"
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
sha2 = "0.8.0"
sha3 = "0.8.2"
zeroize = "0.10"
rust-gmp-kzen = { version = "0.5", features = ["serde_support"], optional = true }
num-bigint = { version = "0.3", features = ["serde"], optional = true }
[dependencies.secp256k1]
version = "0.15.3"
features = ["serde"]
[dependencies.p256]
version = "0.5"
features = ["ecdsa"]
[dev-dependencies]
bincode = "1.1"
serde_json = "1.0"
paste = "1.0.2"
proptest = "0.10"
proptest-derive = "0.2"
[features]
default = ["rust-gmp-kzen"]