use-base64 0.1.0

Practical Base64 helpers for RustUse
Documentation
  • Coverage
  • 6.67%
    1 out of 15 items documented1 out of 11 items with examples
  • Size
  • Source code size: 9.73 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 361.28 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 29s Average build duration of successful builds.
  • all releases: 29s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Documentation
  • RustUse/use-encoding
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • CloudBranch

use-base64

Practical Base64 helpers for standard and URL-safe text workflows.

Warning: versions below 0.3.0 are experimental and may change as the crate surface is refined.

Example Usage

use use_base64::{base64_decode, base64_encode};

let encoded = base64_encode(b"rust");
let decoded = base64_decode(&encoded);

let _ = (encoded, decoded);

Scope

  • standard and URL-safe Base64 helpers
  • lightweight detection and padding utilities
  • small helpers for docs tooling, CLIs, fixtures, and web-adjacent strings

Non-Goals

  • cryptography
  • MIME multipart handling
  • streaming encoders and decoders

License

Licensed under either of the following, at your option:

  • MIT License
  • Apache License, Version 2.0