romans 0.1.0

Utility to convert and represent Roman numerals.
Documentation
# romans

A roman numeral convertor

# Example

```rust
use romans::prelude::*;

fn main() -> Result<()> {
    assert_eq!(123, Numeral::try_from("cxxiii")?.value());
    assert_eq!(
        "cxxiii",
        Numeral::from(123)
            .as_string()
            .to_lowercase()
    );
    Ok(())
}
```