16 releases (8 breaking)

0.9.5 May 11, 2024
0.9.4 Dec 13, 2023
0.9.1 Oct 19, 2022
0.9.0 May 6, 2020
0.4.1 Jul 29, 2019

#21 in Internationalization (i18n)

Download history 52055/week @ 2024-08-27 49887/week @ 2024-09-03 45658/week @ 2024-09-10 43177/week @ 2024-09-17 45299/week @ 2024-09-24 48732/week @ 2024-10-01 46097/week @ 2024-10-08 43677/week @ 2024-10-15 48631/week @ 2024-10-22 45482/week @ 2024-10-29 48262/week @ 2024-11-05 47944/week @ 2024-11-12 46883/week @ 2024-11-19 48701/week @ 2024-11-26 54608/week @ 2024-12-03 44220/week @ 2024-12-10

201,310 downloads per month
Used in 353 crates (97 directly)

MIT/Apache

605KB
12K SLoC

unic-langid Build Status Coverage Status

unic-langid is an API for managing Unicode Language Identifiers.

The crate provides a way to create a struct from a string, manipulate its fields, canonicalize it, and serialize into a string.

Usage

use unic_langid::LanguageIdentifier;

let loc: LanguageIdentifier = "en-US".parse().expect("Parsing failed.");

assert_eq!(loc.language(), "en");
assert_eq!(loc.script(), None);
assert_eq!(loc.region(), Some("US"));

loc.set_script(Some("latn"));

assert_eq!(&loc.to_string(), "en-Latn-US");
use unic_langid::LanguageIdentifier;

let langid = LanguageIdentifier::from_parts(
    Some("en"),
    None,
    None,
    Some(&["nedis", "macos"])
).expect("Parsing failed.");

assert_eq!(&langid.to_string(), "en-macos-nedis")

Macros

unic-langid can be also compiled with features = ["macros"] which enables langid! macro:

use unic_langid::langid;

// The `const` assignment will currently work only
// if the langid doesn't contain any variants.
const EN_US: LanguageIdentifier = langid!("en-US");

fn main() {
    let de_at = langid!("de-AT");

    assert_eq!(&de_at.to_string(), "de-AT")
    assert_eq!(&EN_US.to_string(), "en-US")
}

The macro allows for compile-time parsing and validation of literal language identifiers.

Status

The crate is mostly complete on the well-formed level. The next batch of work will go into API maturity.

Get Involved

unic-langid is open-source, licensed under the Apache License, Version 2.0. We encourage everyone to take a look at our code and we'll listen to your feedback.

Dependencies

~255–750KB
~17K SLoC