Skip to content

Commit

Permalink
Don't import BoxFuture through imported module
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaseizinger committed Oct 4, 2022
1 parent 7ce7eef commit 020642a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transports/noise/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ pub use protocol::{x25519::X25519, x25519_spec::X25519Spec};
pub use protocol::{AuthenticKeypair, Keypair, KeypairIdentity, PublicKey, SecretKey};
pub use protocol::{Protocol, ProtocolParams, IK, IX, XX};

use crate::future::BoxFuture;
use crate::handshake::State;
use crate::io::handshake;
use futures::future::BoxFuture;
use futures::prelude::*;
use libp2p_core::{identity, InboundUpgrade, OutboundUpgrade, PeerId, UpgradeInfo};
use std::pin::Pin;
Expand Down

0 comments on commit 020642a

Please sign in to comment.