From 8329d68ed02f34d489bac24fb9f53fe9f57e5554 Mon Sep 17 00:00:00 2001 From: Hans Larsen Date: Wed, 21 Apr 2021 09:33:06 -0700 Subject: [PATCH] chore: release 0.2.2 with less warning --- Cargo.toml | 2 +- src/lib.rs | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4f5c4a4..142a9b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "garcon" -version = "0.2.1" +version = "0.2.2" authors = ["Hans Larsen "] edition = "2018" description = "A collection of trait and classes to make your thread or async function wait." diff --git a/src/lib.rs b/src/lib.rs index fda8600..5f5a5a1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,10 +8,7 @@ use core::sync::atomic::{AtomicU64, Ordering}; use core::time::Duration; #[cfg(feature = "async")] -use core::{ - future::{self, Future}, - pin::Pin, -}; +use core::{future::Future, pin::Pin}; #[cfg(not(feature = "no_std"))] mod throttle;