Skip to content

Commit

Permalink
Fix compiler (nightly) error
Browse files Browse the repository at this point in the history
  • Loading branch information
sile committed Feb 23, 2024
1 parent b5fbafe commit d36281a
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ use fibers_transport::{
FixedPeerTransporter, RcTransporter, TcpTransport, TcpTransporter, UdpTransport, UdpTransporter,
};
use futures::{Async, Future, Poll};
use std;
use std::net::SocketAddr;

mod allocate;
Expand Down
2 changes: 1 addition & 1 deletion src/client/stun_transaction.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::attribute::Attribute;
use futures::{self, Future, Poll};
use futures::{Future, Poll};
use rustun::message::{MessageError, Response};
use std::fmt;
use std::net::SocketAddr;
Expand Down
1 change: 0 additions & 1 deletion src/transport/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use crate::attribute::Attribute;
use crate::turn_message::{TurnMessageDecoder, TurnMessageEncoder};
use fibers_transport::{TcpTransporter, UdpTransporter};
use rustun;

pub(crate) use self::channel_data::ChannelDataTransporter;
pub(crate) use self::stun::StunTransporter;
Expand Down

0 comments on commit d36281a

Please sign in to comment.