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