-
Notifications
You must be signed in to change notification settings - Fork 110
/
Cargo.toml
64 lines (49 loc) · 1.3 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
58
59
60
61
62
63
[package]
name = "curv"
version = "0.1.0"
[lib]
crate-type = ["lib"]
[features]
default = ["gmp"]
ec_secp256k1 = ["gmp" ,"ecc", "curvesecp256k1"]
ec_ristretto = ["gmp", "ecc" , "curveristretto"]
ec_ed25519 = ["gmp", "ecc" , "ed25519"]
ec_jubjub = ["gmp", "ecc" , "curvejubjub"]
curvesecp256k1 = []
curveristretto = []
ed25519 = []
curvejubjub = []
gmp = []
ecc = []
[dependencies]
rand = "0.6"
ring = "0.13.5"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
merkle = "1.10.0"
zeroize = "0.5.2"
sha3 = "0.8.1"
#[dependencies.sapling-crypto]
#git = "https://github.com/zcash/librustzcash.git"
#rev = "06da3b9ac8f278e5d4ae13088cf0a4c03d2c13f5"
#[dependencies.pairing]
#git = "https://github.com/zcash/librustzcash.git"
#rev = "06da3b9ac8f278e5d4ae13088cf0a4c03d2c13f5"
[dependencies.sapling-crypto]
git = "https://github.com/omershlo/librustzcash.git"
rev = "3e667406323430813f6dbae2a60b5a83046fa20a"
[dependencies.pairing]
git = "https://github.com/omershlo/librustzcash.git"
rev = "3e667406323430813f6dbae2a60b5a83046fa20a"
[dependencies.rust-gmp]
version = "0.5.0"
features = ["serde_support"]
git = "https://github.com/KZen-networks/rust-gmp"
[dependencies.secp256k1]
version = "0.12.0"
features = ["rand", "serde"]
[dependencies.curve25519-dalek]
version = "1.0.1"
[dependencies.cryptoxide]
version = "0.1.0"