locale-rs 0.1.2

A strongly-typed locale library for Rust. Provides localized number and datetime formatting backed by Unicode CLDR data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod error;
pub mod locale;
#[cfg(feature = "nums")]
pub mod num_formats;
pub use locale::{AVAILABLE_LOCALES, Locale};
#[cfg(feature = "currency")]
pub mod currency_formats;
#[cfg(feature = "datetime")]
pub mod datetime_formats;

#[cfg(test)]
mod test;