#idna #unicode #unic #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

#373 in Internationalization (i18n)

Download history 251/week @ 2024-02-14 152/week @ 2024-02-21 177/week @ 2024-02-28 242/week @ 2024-03-06 150/week @ 2024-03-13 184/week @ 2024-03-20 224/week @ 2024-03-27 247/week @ 2024-04-03 238/week @ 2024-04-10 225/week @ 2024-04-17 306/week @ 2024-04-24 228/week @ 2024-05-01 182/week @ 2024-05-08 191/week @ 2024-05-15 160/week @ 2024-05-22 198/week @ 2024-05-29

786 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