-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
27 lines (25 loc) · 1.65 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
[package]
name = "veri-zexe"
description = "Decentralized Private Computation with Universal Setup"
authors = ["Espresso Systems <[email protected]>"]
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = { version = "^1.0", default-features = false }
ark-bls12-377 = { git = "https://github.com/arkworks-rs/curves", default-features = false, features = ["curve"], rev = "677b4ae751a274037880ede86e9b6f30f62635af" }
ark-bw6-761 = { git = "https://github.com/arkworks-rs/curves", rev = "677b4ae751a274037880ede86e9b6f30f62635af" }
ark-ec = { version = "0.3.0", default-features = false }
ark-ed-on-bls12-377 = { git = "https://github.com/arkworks-rs/curves", default-features = false, rev = "677b4ae751a274037880ede86e9b6f30f62635af" }
ark-ff = { version = "0.3.0", default-features = false }
ark-serialize = { version = "0.3.0", default-features = false }
ark-std = { version = "0.3.0", default-features = false }
chacha20poly1305 = "0.9.0"
curve25519-dalek = "4.0.0-pre.1"
displaydoc = { version = "0.2.3", default-features = false }
hkdf = "0.12.0"
jf-plonk = { git = "https://github.com/EspressoSystems/jellyfish.git", rev = "64f55becffe0b93bfef2c6dc49274ef54d5ff6fc"}
jf-primitives = { git = "https://github.com/EspressoSystems/jellyfish.git", rev = "64f55becffe0b93bfef2c6dc49274ef54d5ff6fc" }
jf-relation = { git = "https://github.com/EspressoSystems/jellyfish.git", rev = "64f55becffe0b93bfef2c6dc49274ef54d5ff6fc" }
jf-utils = { git = "https://github.com/EspressoSystems/jellyfish.git", rev = "64f55becffe0b93bfef2c6dc49274ef54d5ff6fc" }
serde = { version = "1.0", default-features = false, features = ["derive"] }
sha2 = { version = "0.10.1", default-features = false }