#idna #punycode

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

#389 in Internationalization (i18n)

Download history 187/week @ 2024-07-21 156/week @ 2024-07-28 195/week @ 2024-08-04 257/week @ 2024-08-11 369/week @ 2024-08-18 214/week @ 2024-08-25 245/week @ 2024-09-01 253/week @ 2024-09-08 225/week @ 2024-09-15 333/week @ 2024-09-22 231/week @ 2024-09-29 193/week @ 2024-10-06 194/week @ 2024-10-13 195/week @ 2024-10-20 203/week @ 2024-10-27 176/week @ 2024-11-03

791 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