From 462c15bf6838c50400b755554a236ee1c687fb22 Mon Sep 17 00:00:00 2001 From: Botahamec Date: Thu, 27 Oct 2022 18:41:59 -0400 Subject: Reordered use statements --- src/lib.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 0a0fc09..22a8d9c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,11 +5,12 @@ use std::any::type_name; use std::fmt::{self, Debug}; use std::marker::PhantomData; +use once_cell::sync::Lazy; +use thread_local::ThreadLocal; + mod lock; pub use lock::{Key, Lock}; -use once_cell::sync::Lazy; -use thread_local::ThreadLocal; static KEY: Lazy> = Lazy::new(ThreadLocal::new); -- cgit v1.2.3