#![doc = include_str!("../README.md")]
#![no_std]
#![forbid(unsafe_code)]
#![forbid(clippy::unwrap_used)]
pub trait Currency {
const CODE: &'static str;
const SYMBOL: &'static str;
const NAME: &'static str;
const NUMERIC: u16;
const MINOR_UNIT: u16;
const MINOR_UNIT_SYMBOL: &'static str;
const MINOR_UNIT_NAME: &'static str;
const THOUSAND_SEPARATOR: &'static str;
const DECIMAL_SEPARATOR: &'static str;
const ORIGIN: &'static str;
const LOCALE: &'static str;
}
mod iso_currencies;
pub use iso_currencies::*;
#[cfg(test)]
mod iso_currencies_test;