commonware_math/lib.rs
1#![doc = include_str!("../README.md")]
2#![doc(
3 html_logo_url = "https://commonware.xyz/imgs/rustdoc_logo.svg",
4 html_favicon_url = "https://commonware.xyz/favicon.ico"
5)]
6#![cfg_attr(not(feature = "std"), no_std)]
7
8#[cfg(not(feature = "std"))]
9extern crate alloc;
10
11pub mod algebra;
12pub mod fields {
13 pub mod goldilocks;
14}
15pub mod ntt;
16pub mod poly;
17#[cfg(test)]
18pub mod test;