2024-10-07 08:36:11 +00:00
|
|
|
[package]
|
|
|
|
name = "codex-plonky2-circuits"
|
|
|
|
description = "Codex storage proofs circuits for Plonky2"
|
|
|
|
authors = ["Mohammed Alghazwi <m.ghazwi@gmail.com>"]
|
|
|
|
readme = "README.md"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = { version = "1.0.89" }
|
|
|
|
unroll = { version = "0.1.5", default-features = false }
|
|
|
|
serde = { version = "1.0.210" , features = ["rc"] }
|
|
|
|
serde_json = { version = "1.0" }
|
|
|
|
plonky2 = { version = "0.2.2" }
|
|
|
|
plonky2_field = { version = "0.2.2", default-features = false }
|
|
|
|
plonky2_poseidon2 = { path = "../plonky2_poseidon2" }
|
|
|
|
itertools = { version = "0.12.1", default-features = false }
|
|
|
|
plonky2_maybe_rayon = { version = "0.2.0", default-features = false }
|
|
|
|
rand = "0.8.5"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
criterion = { version = "0.5.1", default-features = false }
|
|
|
|
tynm = { version = "0.1.6", default-features = false }
|
2024-10-15 12:03:46 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "safe_circuit"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "prove_cells"
|
|
|
|
harness = false
|
2024-10-18 10:01:01 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "sample_cells"
|
|
|
|
harness = false
|