//! A light-weight and performant implementation of the Arcturus zero-knowledge proof system
//! [[link](https://eprint.iacr.org/2020/312)].
//-----------------------------------------------------------------------------
// External dependencies:
//-----------------------------------------------------------------------------
extern crate alloc;
extern crate blake2;
extern crate curve25519_dalek;
extern crate itertools;
extern crate polynomials;
//-----------------------------------------------------------------------------
// Public modules
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// Re-exports
//-----------------------------------------------------------------------------
pub use *;
//-----------------------------------------------------------------------------
// Internal modules
//-----------------------------------------------------------------------------
pub
pub