| Crates.io | base67 |
| lib.rs | base67 |
| version | 0.1.1 |
| created_at | 2025-12-17 14:03:14.436573+00 |
| updated_at | 2025-12-18 02:55:09.653732+00 |
| description | A base67 encoding/decoding library for Rust |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1990285 |
| size | 16,948 |
Base67 is an encoding scheme that uses a 67-character alphabet to convert binary data into text representation.
use base67::{encode, decode};
fn main() {
// Encode a string
let data = b"Hello, World!";
let encoded = encode(data);
println!("Encoded: {}", encoded);
// Decode back to original
let decoded = decode(&encoded).unwrap();
println!("Decoded: {}", String::from_utf8(decoded).unwrap());
}