proof-compression 0.155.10

Both cuda and cpu based proof compression and wrapping chain
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use std::alloc::Allocator;

use super::*;

mod boojum;
pub use boojum::*;
mod crs;
pub use crs::*;
pub mod fflonk;
pub use fflonk::*;
pub mod interface;
pub use interface::*;
pub mod plonk;
pub use plonk::*;

pub(crate) use ::fflonk::fflonk_cpu::franklin_crypto;
pub(crate) use franklin_crypto::bellman;