1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#![no_std]
#![allow(incomplete_features)]
#![feature(const_fn)]
#![feature(const_generics)]
#![feature(const_evaluatable_checked)]

mod mluint;
mod moduint;
mod utils;

#[cfg(test)]
mod dev;

pub use mluint::MLUInt;