midnight-aggregation 0.1.0

Toolkit for proof aggregation of midnight-proofs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! A toolkit for proof aggregation of midnight-proofs.

#![deny(rustdoc::broken_intra_doc_links)]
#![deny(missing_debug_implementations)]
#![deny(missing_docs)]

// #[doc = include_str!("../README.md")]

extern crate core;

// When truncated-challenges is enabled, don't compile any of the aggregator
// code as it's incompatible with this feature.
#[cfg(not(feature = "truncated-challenges"))]
pub mod light_aggregator;

pub mod ivc;
pub mod multi_circuit_aggregator;