//! # Rusty Numbers
//!
//! Playin' with Numerics in Rust
#![forbid(unsafe_code)]
pub mod bigint;
pub mod num;
pub mod rational;
pub mod seq;