rusty-numbers/src/lib.rs

10 lines
143 B
Rust
Raw Normal View History

//! # Rusty Numbers
//!
//! Playin' with Numerics in Rust
2020-02-12 22:29:57 -05:00
#![forbid(unsafe_code)]
pub mod bigint;
pub mod num;
2020-02-12 22:29:57 -05:00
pub mod rational;
pub mod seq;