From a449fdd4ea3e353bea21df00253f73be65380dc5 Mon Sep 17 00:00:00 2001 From: "Lorenzo (Mec-iS)" Date: Tue, 8 Nov 2022 11:48:14 +0000 Subject: [PATCH] fmt --- src/rand_custom.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rand_custom.rs b/src/rand_custom.rs index d06c344..7b4a3a5 100644 --- a/src/rand_custom.rs +++ b/src/rand_custom.rs @@ -1,7 +1,7 @@ #[cfg(not(feature = "std"))] -pub(crate) use rand::rngs::SmallRng as RngImpl; -#[cfg(not(feature = "std"))] use getrandom; +#[cfg(not(feature = "std"))] +pub(crate) use rand::rngs::SmallRng as RngImpl; #[cfg(feature = "std")] pub(crate) use rand::rngs::StdRng as RngImpl; use rand::SeedableRng;