Crates.io | ascii_basing |
lib.rs | ascii_basing |
version | 0.1.0 |
source | src |
created_at | 2024-06-27 23:14:43.74542 |
updated_at | 2024-06-27 23:14:43.74542 |
description | Functions to create base 62 (ASCII) String representations of integers |
homepage | |
repository | https://github.com/script-mouse/ascii_basing |
max_upload_size | |
id | 1286286 |
size | 19,746 |
A Rust Library that converts unsigned 32-bit integers (u32
s) to unique [String
] values that are always smaller or as small as base 10 representations of the given integer and can be decoded back to the exact value before encoding.
ascii_basing
does this using standard library functions to implement a Base62 encoding and decoding algorithm.
For more information on how to use this crate, check the documentation.