Skip to content

Commit

Permalink
fix(libp2p): Export perf protocol
Browse files Browse the repository at this point in the history
As we do with all other protocols, make sure to expose `libp2p-perf` as well.

See also discussion libp2p#3508 (comment)
  • Loading branch information
mxinden committed Mar 29, 2023
1 parent 4897b2e commit cd14e18
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions libp2p/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@ pub use libp2p_mplex as mplex;
#[cfg(feature = "noise")]
#[doc(inline)]
pub use libp2p_noise as noise;
#[cfg(feature = "perf")]
#[doc(inline)]
pub use libp2p_perf as perf;
#[cfg(feature = "ping")]
#[doc(inline)]
pub use libp2p_ping as ping;
Expand Down

0 comments on commit cd14e18

Please sign in to comment.