Skip to content

Commit

Permalink
fix unused import warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkw committed Apr 6, 2024
1 parent 7587bda commit c5bbbb3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/mpsc/async_impl.rs
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
use super::*;
use crate::{
loom::atomic::{self, Ordering},
recycling::{self, Recycle},
recycling,
wait::queue,
};
use core::{
fmt,
future::Future,
pin::Pin,
task::{Context, Poll, Waker},
task::{Context, Waker},
};
use errors::*;

Expand Down

0 comments on commit c5bbbb3

Please sign in to comment.