From bc9b6a0f842333fed8e9db37e87af3c3b941fe7d Mon Sep 17 00:00:00 2001 From: David Hotham Date: Sun, 21 Jul 2024 12:46:43 +0100 Subject: [PATCH] legacy numeric constants --- src/timer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/timer.rs b/src/timer.rs index e19c04d..bea31ab 100644 --- a/src/timer.rs +++ b/src/timer.rs @@ -6,7 +6,7 @@ use slab::Slab; use std::sync::atomic::{AtomicUsize, Ordering}; use std::sync::Arc; use std::time::{Duration, Instant}; -use std::{cmp, fmt, io, iter, thread, u64, usize}; +use std::{cmp, fmt, io, iter, thread}; /// A timer. ///