#idna #unicode #punycode #text

unic-idna-punycode

UNIC — Implementation of Punycode (RFC 3492) algorithm

9 releases (breaking)

0.9.0 Mar 3, 2019
0.8.0 Jan 2, 2019
0.7.0 Feb 7, 2018
0.6.0 Sep 22, 2017
0.1.1 Jun 20, 2017

#388 in Internationalization (i18n)

Download history 146/week @ 2024-03-17 176/week @ 2024-03-24 304/week @ 2024-03-31 203/week @ 2024-04-07 247/week @ 2024-04-14 260/week @ 2024-04-21 230/week @ 2024-04-28 261/week @ 2024-05-05 182/week @ 2024-05-12 174/week @ 2024-05-19 208/week @ 2024-05-26 152/week @ 2024-06-02 103/week @ 2024-06-09 160/week @ 2024-06-16 141/week @ 2024-06-23 58/week @ 2024-06-30

474 downloads per month
Used in 10 crates (3 directly)

MIT/Apache

12KB
185 lines

UNIC — IDNA — Punycode (RFC 3492)

Crates.io Documentation

This UNIC component implements algorithms from Punycode: A Bootstring encoding of Unicode for Internationalized Domain Names in Applications (IDNA).

Notes

Initial code for this component is based on idna crate from rust-url.


lib.rs:

UNIC — IDNA — Punycode (RFC 3492)

A component of unic: Unicode and Internationalization Crates for Rust.

Implementation of Punycode (RFC 3492) algorithm.

Since Punycode fundamentally works on Unicode Code-Points, encode and decode take and return slices and vectors of char. encode_str and decode_to_string provide convenience wrappers that convert from and to Rust’s UTF-8 based str and String types.

No runtime deps