samaharam 0.2.0

Scalable heterogeneous zero-knowledge proof aggregation for EVM chains
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Scalability module for parallel proof processing.
//!
//! This module provides:
//! - Parallel aggregation using rayon
//! - Proof queue management
//! - Caching for preprocessed data

mod parallel;
mod queue;

pub use parallel::ParallelAggregator;
pub use queue::{ProofQueue, QueueConfig};