1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! This is a set of libraries for converting to and from various numeric systems.
//!
//! For more information, see the documentation for a particular module.

#![warn(missing_copy_implementations)]
#![warn(missing_docs)]
#![warn(nonstandard_style)]
#![warn(trivial_numeric_casts)]
#![warn(unreachable_pub)]
#![warn(unused)]

pub mod bt;
pub mod roman;