2025-06-17 13:05:40 +02:00

43 lines
969 B
TOML

[package]
name = "workflow"
description = "workflow of the codex storage proofs"
authors = ["Mohammed Alghazwi <m.ghazwi@gmail.com>"]
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4.0", features = ["derive"] }
serde = { workspace = true }
serde_json = { workspace = true }
anyhow = { workspace = true }
plonky2 = { workspace = true }
plonky2_field = { workspace = true }
# --- local ---
plonky2_poseidon2 = { path = "../plonky2_poseidon2" }
codex-plonky2-circuits = { path = "../codex-plonky2-circuits" }
proof-input = { path = "../proof-input" }
[dev-dependencies]
criterion = { version = "0.5.1", default-features = false }
tynm = { version = "0.1.6", default-features = false }
[features]
default = []
parallel = ["plonky2/parallel"]
[[bench]]
name = "merkle_circuit"
harness = false
[[bench]]
name = "sample_cells"
harness = false
[[bench]]
name = "uniform_recursion"
harness = false
[[bench]]
name = "compression"
harness = false