b64-rs 1.0.3

A super speedy* base64 encoder
Documentation
  • Coverage
  • 0%
    0 out of 3 items documented0 out of 2 items with examples
  • Size
  • Source code size: 8.5 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 131.2 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 7s Average build duration of successful builds.
  • all releases: 7s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • BeesBoxler/b64-rs
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • BeesBoxler

Usage

use b64_rs::{encode,decode};

let encoded_string = encode("b64-rs goes 🏎️💨");
print!("{encoded_string}");
// => YjY0LXJzIGdvZXMg8J+Pju+4j/Cfkqg=

let decoded_string = decode(&encoded_string);
print!("decoded_string");
// => b64-rs goes 🏎️💨

b64-rs is lightweight, and requires no dependencies. Ez.