#![doc = include_str!("../README.md")] #![doc( html_logo_url = "https://commonware.xyz/imgs/rustdoc_logo.svg", html_favicon_url = "https://commonware.xyz/favicon.ico" )] #![cfg_attr(not(feature = "std"), no_std)] #[cfg(not(feature = "std"))] extern crate alloc; pub mod algebra; pub mod fields { pub mod goldilocks; } pub mod ntt; pub mod poly; #[cfg(test)] pub mod test;