1//! Base58 encoding. 2 3#![cfg_attr(not(any(feature = "std", test)), no_std)] 4#![forbid(unsafe_code)] 5#![warn(clippy::arithmetic_side_effects)] 6 7#[cfg(feature = "alloc")] 8extern crate alloc; 9 10mod arith; 11mod base58; 12 13pub use crate::base58::*;