-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (38 loc) · 1.71 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
[package]
name = "plonky2-verifier"
version = "0.1.0"
edition = "2021"
license = "GPL-3.0"
description = "A pure Rust library to verify plonky2 proof."
repository = "https://github.com/distributed-lab/plonky2-verifier"
homepage = "https://github.com/distributed-lab/plonky2-verifier#readme"
documentation = "https://distributed-lab.github.io/plonky2-verifier/"
authors = ["Distributed Lab"]
keywords = ["crypto", "no-std", "blockchain", "cryptography"]
resolver = "2"
[dependencies]
plonky2 = { git = "https://github.com/distributed-lab/plonky2", branch = "stable", default-features = false}
snafu = { version = "0.8.5", default-features = false }
serde = { version = "1.0.217", default-features = false, features = ["derive"] }
serde_with = { version = "3.12.0", default-features = false, features = ["macros", "hex"] }
anyhow = { version = "1.0.95", default-features = false, optional = true }
serde_json = { version = "1.0.137", default-features = false, optional = true, features = ["std"] }
bincode = { version = "1.3.3", default-features = false, optional = true}
clap = { version = "4.5.27", default-features = false, optional = true, features = ["std", "derive", "help"] }
log = { version = "0.4.25", default-features = false, optional = true}
env_logger = { version = "0.11.6", default-features = false, optional = true }
hex = { version = "0.4.3", default-features = false, optional = true, features = ["std"] }
[dev-dependencies]
rstest = "0.24.0"
serde_json = "1.0.137"
[[bin]]
name = "plonky2-converter"
path = "src/bin/converter.rs"
required-features = ["converter"]
[features]
default = ["std"]
std = [
"plonky2/std",
"snafu/std",
]
converter = ["anyhow", "serde_json", "bincode", "clap", "log", "env_logger", "hex"]