cesr-rs 0.1.0

CESR + KERI primitives for Rust as a single feature-gated, no_std-capable crate
Documentation
//! CESR Base64 encoding/decoding utilities.
//!
//! Provides URL-safe Base64 encoding and decoding for CESR integer and binary
//! fields, plus character-set validation helpers.

#[cfg(feature = "alloc")]
#[allow(
    unused_imports,
    reason = "alloc prelude items; subset used per cfg/feature combination"
)]
use alloc::{format, string::String, string::ToString, vec, vec::Vec};

/// Base64 decoding functions for CESR integers and binary data.
pub mod decode;
/// Base64 encoding functions for CESR integers and binary data.
pub mod encode;
/// Error types for Base64 decode/encode operations.
pub mod error;
/// Base64 character-set validation and conversion helpers.
#[allow(
    clippy::module_inception,
    reason = "preserved frozen module path; renaming breaks the public API cesr::utils::utils"
)]
pub mod utils;

pub use decode::decode_to_int;
pub use encode::{encode_binary, encode_int};