2024-10-07 10:36:11 +02:00
|
|
|
[package]
|
|
|
|
|
name = "codex-plonky2-circuits"
|
|
|
|
|
description = "Codex storage proofs circuits for Plonky2"
|
|
|
|
|
authors = ["Mohammed Alghazwi <m.ghazwi@gmail.com>"]
|
|
|
|
|
readme = "README.md"
|
2024-12-06 09:12:02 +01:00
|
|
|
version = "1.0.0"
|
2024-10-07 10:36:11 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-01-31 12:37:24 +01:00
|
|
|
anyhow = { workspace = true }
|
|
|
|
|
unroll = { workspace = true }
|
|
|
|
|
serde = { workspace = true }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
plonky2 = { workspace = true }
|
|
|
|
|
plonky2_field = { workspace = true }
|
|
|
|
|
thiserror = { workspace = true }
|
2024-10-07 10:36:11 +02:00
|
|
|
plonky2_poseidon2 = { path = "../plonky2_poseidon2" }
|
2025-01-31 12:37:24 +01:00
|
|
|
itertools = { workspace = true }
|
|
|
|
|
plonky2_maybe_rayon = { workspace = true }
|
2024-12-06 09:12:02 +01:00
|
|
|
hashbrown = "0.14.5"
|
2025-05-22 14:10:16 +02:00
|
|
|
ff = { package = "ff", version = "0.13", features = ["derive"] }
|
|
|
|
|
num = "0.4.3"
|
|
|
|
|
lazy_static = "1.5.0"
|
2024-10-07 10:36:11 +02:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
criterion = { version = "0.5.1", default-features = false }
|
|
|
|
|
tynm = { version = "0.1.6", default-features = false }
|
2024-10-15 14:03:46 +02:00
|
|
|
|
2025-04-24 20:54:59 +02:00
|
|
|
[features]
|
|
|
|
|
default = []
|
|
|
|
|
parallel = ["plonky2/parallel"]
|
|
|
|
|
|