-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
51 lines (45 loc) · 1.16 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
[package]
name = "reverie-zk"
description = "An efficient implementation of the NIZKPoK outlined in KKW 2018"
license = "AGPL-3.0"
homepage = "https://github.com/trailofbits/reverie"
repository = "https://github.com/trailofbits/reverie"
version = "0.3.2"
authors = [
"Mathias Hall-Andersen <mathias@hall-andersen.dk>",
"William Woodruff <william@trailofbits.com>",
"Eric Hennenfent <eric.hennenfent@trailofbits.com>"
]
edition = "2018"
readme = "README.md"
keywords = ["crypto", "cryptography", "zero-knowledge"]
categories = ["cryptography"]
build = "build.rs"
[package.metadata.release]
dev-version = false
publish = false # handled by GitHub Actions
push = true
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
aes = "0.8"
async-std = "1.7"
bincode = "1.3.3"
blake3 = "1.0.0"
chacha = "0.3"
clap = "4.0.18"
ctr = "0.9"
mcircuit = "0.1.7"
num-traits = "0.2"
rand = "0.8"
rayon = "1.5"
serde = {version = "1.0.125", features = ["derive"]}
built = {version = "0.5.1", features = ["git2", "chrono", "semver"] }
[build-dependencies]
built = "0.5.1"
[lib]
name = "reverie"
path = "src/lib.rs"
[[bin]]
name = "speed-reverie"
path = "src/main.rs"