romans 0.1.0

Utility to convert and represent Roman numerals.
Documentation
//! # Romans
//!
//! This crate is an utility to convert and represent [Roman numerals].
//!
//! # Example
//!
//! ```
//! use romans::prelude::*;
//!
//! assert_eq!(123, Numeral::try_from("cxxiii").unwrap().value());
//! assert_eq!("CXXIII", Numeral::from(123).as_string());
//! ```
//!
//! [Roman numerals]: https://en.wikipedia.org/wiki/Roman_numerals
//!

#![warn(missing_docs)]
#![allow(
    clippy::doc_markdown,
    clippy::module_name_repetitions,
    clippy::must_use_candidate,
    clippy::option_if_let_else
)]

pub mod error;
pub mod prelude;

pub mod romans;