lettuce 0.1.3

Healthy lattice consructions in pure Rust.
Documentation
//! Lettuce, the healthy lattice prover.
//!
//! [Github README](https://github.com/chancehudson/lattices?tab=readme-ov-file#lettuce)
//!

#![cfg_attr(not(test), allow(unused))]

mod commitments;
pub(crate) mod log;
mod montgomery;
mod ntt;
mod precomputed;
mod probability;
mod structures;
mod traits;

#[cfg(test)]
mod test;

pub use commitments::*;
pub(crate) use montgomery::*;
pub use ntt::*;
pub use precomputed::*;
pub use probability::*;
pub use structures::*;
pub use traits::*;

pub(crate) use anyhow::Result;