1
2
3
4
5
6
7
8
9
//! Big integer library.

#![no_std]

extern crate alloc;

mod ubig;

pub use crate::ubig::UBig;