Skip to content

Commit

Permalink
Remove unused imports warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
tikue committed Feb 4, 2024
1 parent 1ad73e8 commit d0e60ae
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tarpc/src/serde_transport.rs
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,9 @@ pub mod unix {
mod tests {
use super::Transport;
use assert_matches::assert_matches;
use futures::{task::*, Sink, SinkExt, Stream, StreamExt};
use futures::{task::*, Sink, Stream};
#[cfg(any(feature = "tcp", all(unix, feature = "unix")))]
use futures::{SinkExt, StreamExt};
use pin_utils::pin_mut;
use std::{
io::{self, Cursor},
Expand Down

0 comments on commit d0e60ae

Please sign in to comment.