forked from ebfull/sonic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (40 loc) · 1.06 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
[package]
name = "sonic-ucse"
version = "0.1.0"
authors = [
"Sean Bowe <[email protected]>",
"Noemi Glaeser <[email protected]>",
]
edition = "2018"
[dependencies.pairing]
version = "0.14"
features = ["u128-support"]
[dependencies]
merlin = "3"
rand = "0.8.5"
rand_core = "0.6"
bellman = "0.1.0"
ring = "0.16.15"
curv-kzen = "0.9.0"
byteorder = "1.4.3"
dusk-jubjub = "0.10"
dusk-bls12_381 = "0.10.0"
dusk-pki = "0.8.0"
dusk-poseidon = "0.22.0"
dusk-bytes = "0.1.5"
schnorrkel = { version = "0.10", features = ["avx2_backend", "asm"] }
rust-crypto = "0.2"
[dependencies.sapling-crypto]
git = "https://github.com/nglaeser/sapling-crypto"
rev = "40d7594c48b6480f717ef714b4d439a36516a54b"
[dependencies.starsig]
git = "https://github.com/nglaeser/starsig"
[dependencies.jubjub-elgamal]
package = "elgamal"
git = "https://github.com/nglaeser/jubjub-elgamal"
[dependencies.jubjub-schnorr]
package = "dusk-schnorr"
git = "https://github.com/nglaeser/jubjub-schnorr"
[dependencies.curve25519-dalek]
git = "https://github.com/nglaeser/curve25519-dalek"
branch = "release/3.2"