rusty-numbers/src/lib.rs

19 lines
285 B
Rust

//! # Rusty Numbers
//!
//! Playin' with Numerics in Rust
#![forbid(unsafe_code)]
#![no_std]
#[cfg(all(feature = "alloc", not(feature = "std")))]
#[macro_use]
extern crate alloc;
#[cfg(feature = "std")]
#[macro_use]
extern crate std;
pub mod bigint;
pub mod num;
pub mod rational;