rusty-numbers/src/lib.rs

19 lines
285 B
Rust
Raw Normal View History

//! # Rusty Numbers
//!
//! Playin' with Numerics in Rust
2020-02-12 22:29:57 -05:00
#![forbid(unsafe_code)]
2020-04-16 14:07:12 -04:00
#![no_std]
2020-02-12 22:29:57 -05:00
2020-04-16 14:07:12 -04:00
#[cfg(all(feature = "alloc", not(feature = "std")))]
#[macro_use]
extern crate alloc;
#[cfg(feature = "std")]
#[macro_use]
extern crate std;
2020-02-12 22:29:57 -05:00
pub mod bigint;
pub mod num;
2020-02-12 22:29:57 -05:00
pub mod rational;