-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (24 loc) · 977 Bytes
/
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
[package]
name = "blob-consistency-check"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
halo2-base = {default-features = false, features = [
"halo2-axiom",
"display",
], git = "https://github.com/axiom-crypto/halo2-lib.git", tag="v0.3.0-ce"}
halo2-ecc = {default-features = false, features = [
"halo2-axiom",
"display",
], git = "https://github.com/axiom-crypto/halo2-lib.git", tag="v0.3.0-ce"}
poseidon = {git = "https://github.com/axiom-crypto/halo2-lib.git", tag="v0.3.0-ce", package="poseidon"}
rand = "0.8"
serde = { version = "=1.0", default-features = false, features = ["derive"] }
serde_json = "=1.0"
[dev-dependencies]
poseidon_native = { git = "https://github.com/axiom-crypto/halo2.git", branch = "axiom/dev", package = "poseidon" }
criterion = {version = "0.4", features = ["html_reports"]}
[[bench]]
name = "create_proof"
harness = false