sonobe 0.1.0-alpha.1

The umbrella crate for the Sonobe folding/accumulation schemes library, re-exporting the sonobe-primitives, sonobe-fs, and sonobe-ivc crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![warn(missing_docs)]

//! Sonobe is a library of folding/accumulation schemes and folding-based
//! protocols.
//!
//! This crate re-exports the whole library, so that depending on `sonobe` is
//! equivalent to depending on the three crates below:
//!
//! - [`primitives`]: fundamental building blocks and their in-circuit gadgets,
//!   such as algebra, arithmetizations, commitment schemes, transcripts, etc.
//! - [`fs`]: folding schemes.
//! - [`ivc`]: IVC compiled from folding.

pub use sonobe_fs as fs;
pub use sonobe_ivc as ivc;
pub use sonobe_primitives as primitives;