diff --git a/base58/src/lib.rs b/base58/src/lib.rs index f40e64e8..247eef58 100644 --- a/base58/src/lib.rs +++ b/base58/src/lib.rs @@ -24,9 +24,9 @@ extern crate std; static BASE58_CHARS: &[u8] = b"123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"; -use core::{fmt, iter, slice, str}; #[cfg(not(feature = "std"))] pub use alloc::{string::String, vec::Vec}; +use core::{fmt, iter, slice, str}; #[cfg(feature = "std")] pub use std::{string::String, vec::Vec};