#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

#370 in Internationalization (i18n)

Download history 109/week @ 2023-12-15 78/week @ 2023-12-22 59/week @ 2023-12-29 221/week @ 2024-01-05 169/week @ 2024-01-12 160/week @ 2024-01-19 178/week @ 2024-01-26 110/week @ 2024-02-02 163/week @ 2024-02-09 302/week @ 2024-02-16 114/week @ 2024-02-23 182/week @ 2024-03-01 228/week @ 2024-03-08 159/week @ 2024-03-15 186/week @ 2024-03-22 339/week @ 2024-03-29

937 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