rusty-numbers/src/lib.rs
Timothy J. Warren eaec59f596
All checks were successful
timw4mail/rusty-numbers/pipeline/head This commit looks good
Add some clippy checks
2021-03-11 15:38:37 -05:00

20 lines
325 B
Rust

//! # Rusty Numbers
//!
//! Playin' with Numerics in Rust
#![forbid(unsafe_code)]
#![no_std]
#![warn(clippy::all, clippy::pedantic)]
#[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;