rings_snark/
lib.rs

1//! Rings SNARK
2//! ===============
3//! This implementation is based on NOVA
4
5#![warn(missing_docs)]
6
7pub mod circuit;
8pub mod error;
9pub mod prelude;
10pub mod r1cs;
11pub mod snark;
12#[cfg(test)]
13mod tests;
14pub mod witness;