pure-rust-locales 0.2.1

Pure Rust locales imported directly from the GNU C Library. `LC_COLLATE` and `LC_CTYPE` are not yet supported.
Documentation
#![no_std]

include!(concat!(env!("OUT_DIR"), "/locales.rs"));

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn it_works() {
        assert_eq!(fr_BE::LC_TIME::d_fmt(), "%d/%m/%y");
        assert_eq!(fr_BE::LC_TIME::first_weekday(), 2_i64);
    }
}