From 42fabbab033e5696b899f70403b032963a75f05a Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 29 Feb 2024 10:25:46 +1100 Subject: [PATCH] base58: Run the formatter --- base58/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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};