-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
32 lines (29 loc) · 1.01 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
[package]
name = "zexe-ethereum"
version = "0.1.0"
authors = ["Osuke Sudo <dish230@gmail.com>"]
edition = "2018"
[dependencies]
clap = "~2.32"
dpc = { path = "dpc" }
algebra = { git = "https://github.com/scipr-lab/zexe" }
snark = { git = "https://github.com/scipr-lab/zexe"}
snark-gadgets = { git = "https://github.com/scipr-lab/zexe"}
pairing_ce = { git = "https://github.com/matter-labs/pairing" }
bellman_ce = { git = "https://github.com/matter-labs/bellman" }
# sapling-crypto_ce = { git = "https://github.com/matter-labs/sapling-crypto" }
ff_ce = { git = "https://github.com/matter-labs/ff" }
rand = "0.4"
failure = { version = "0.1.1" }
failure_derive = { version = "0.1.1" }
primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", rev = '9112a28af677b75cd6f935dda34d283bb4f676e7' }
byteorder = "1"
reqwest = "0.9.13"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
hex = "0.3.2"
[[bin]]
name = 'zexe-eth'
path = 'src/main.rs'
[workspace]
members = ["dpc"]