2024-11-08 11:23:55 +00: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"] }
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
anyhow = "1.0"
|
|
|
|
plonky2 = { version = "0.2.2" }
|
|
|
|
plonky2_field = { version = "0.2.2", default-features = false }
|
|
|
|
plonky2_poseidon2 = { path = "../plonky2_poseidon2" }
|
|
|
|
codex-plonky2-circuits = { path = "../codex-plonky2-circuits" }
|
|
|
|
proof-input = { path = "../proof-input" }
|
|
|
|
|
2024-11-14 11:26:37 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
criterion = { version = "0.5.1", default-features = false }
|
|
|
|
tynm = { version = "0.1.6", default-features = false }
|
|
|
|
|
2024-11-08 11:23:55 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "prove_and_verify"
|
2024-11-14 09:31:32 +00:00
|
|
|
path = "src/bin/prove_and_verify.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "gen_input"
|
|
|
|
path = "src/bin/gen_input.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "build_circ"
|
|
|
|
path = "src/bin/build_circ.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "prove"
|
2024-11-14 11:26:37 +00:00
|
|
|
path = "src/bin/prove.rs"
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "safe_circuit"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "sample_cells"
|
|
|
|
harness = false
|