Crates.io | utf58 |
lib.rs | utf58 |
version | |
source | src |
created_at | 2024-10-13 20:14:38.149297 |
updated_at | 2024-10-20 18:24:34.101955 |
description | High-tech encoding of the Unicode space in one quibble and up to 3 bytes |
homepage | |
repository | https://github.com/crabble-rs/utf58 |
max_upload_size | |
id | 1407652 |
Cargo.toml error: | TOML parse error at line 17, column 1 | 17 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
A UTF-58 encoder and decoder. UTF-58 (pronounced fifty-eight) is an encoding for arbitrary Unicode codepoints that uses an initial 5 bits (called a quibble), and then up to 3 bytes.
This is useful when wanting to encode a Unicode codepoint in a way that leaves 3 bits of space for additional data.
UTF-58 is kinda ASCII-compatible (as in, the first quibble represents the truncated ASCII value) for lowercase a
-z
.
For more information, check the official specification.