27 lines
695 B
TOML
Raw Normal View History

2025-06-17 14:09:35 +02:00
[package]
name = "dynamic-data-experiments"
description = "Experiments to support dynamic data for Codex"
authors = ["Mohammed Alghazwi <m.ghazwi@gmail.com>"]
readme = "README.md"
version = "1.0.0"
edition = "2024"
[dependencies]
2025-06-18 21:02:17 +02:00
rand = { version = "0.9.0", features = [ "std", "std_rng" ] }
itertools = "0.14.0"
clap = { version = "4.5.27", features = ["derive"] }
ark-std = "0.5.0"
ark-ff = "0.5.0"
ark-ec = "0.5.0"
ark-bls12-381 = "0.5.0"
ark-bn254 = "0.5.0"
ark-poly = "0.5.0"
ark-poly-commit = "0.5.0"
2025-06-24 14:32:49 +02:00
anyhow = "1.0.95"
reed-solomon-erasure = { version = "6.0.0", features = [ "simd-accel" ] }
2025-06-26 14:09:24 +02:00
ark-crypto-primitives = "0.5.0"
criterion = "0.5.1"
[[bench]]
name = "encoder"
harness = false