base58: Run the formatter

This commit is contained in:
Tobin C. Harding 2024-02-29 10:25:46 +11:00
parent 6ff850539a
commit 42fabbab03
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 1 deletions

View File

@ -24,9 +24,9 @@ extern crate std;
static BASE58_CHARS: &[u8] = b"123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"; static BASE58_CHARS: &[u8] = b"123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz";
use core::{fmt, iter, slice, str};
#[cfg(not(feature = "std"))] #[cfg(not(feature = "std"))]
pub use alloc::{string::String, vec::Vec}; pub use alloc::{string::String, vec::Vec};
use core::{fmt, iter, slice, str};
#[cfg(feature = "std")] #[cfg(feature = "std")]
pub use std::{string::String, vec::Vec}; pub use std::{string::String, vec::Vec};