2024-11-08 12:23:55 +01:00
|
|
|
[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"] }
|
2024-12-06 09:12:02 +01:00
|
|
|
serde = { workspace = true }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
|
plonky2 = { workspace = true }
|
|
|
|
|
plonky2_field = { workspace = true }
|
|
|
|
|
|
|
|
|
|
# --- local ---
|
2024-11-08 12:23:55 +01:00
|
|
|
plonky2_poseidon2 = { path = "../plonky2_poseidon2" }
|
|
|
|
|
codex-plonky2-circuits = { path = "../codex-plonky2-circuits" }
|
|
|
|
|
proof-input = { path = "../proof-input" }
|
|
|
|
|
|
2024-11-14 12:26:37 +01:00
|
|
|
[dev-dependencies]
|
|
|
|
|
criterion = { version = "0.5.1", default-features = false }
|
|
|
|
|
tynm = { version = "0.1.6", default-features = false }
|
|
|
|
|
|
2025-03-10 14:49:13 +01:00
|
|
|
[features]
|
|
|
|
|
default = []
|
|
|
|
|
parallel = ["plonky2/parallel"]
|
|
|
|
|
|
2024-11-14 12:26:37 +01:00
|
|
|
[[bench]]
|
2025-01-14 23:03:00 +01:00
|
|
|
name = "merkle_circuit"
|
2024-11-14 12:26:37 +01:00
|
|
|
harness = false
|
|
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
|
name = "sample_cells"
|
2024-12-06 09:12:02 +01:00
|
|
|
harness = false
|
|
|
|
|
|
2025-01-30 13:47:59 +01:00
|
|
|
[[bench]]
|
|
|
|
|
name = "uniform_recursion"
|
2025-03-10 14:49:13 +01:00
|
|
|
harness = false
|
|
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
|
name = "compression"
|
2024-11-14 12:26:37 +01:00
|
|
|
harness = false
|