fix wasm32

This commit is contained in:
Christien Rioux 2023-10-14 15:56:52 -04:00
parent 794089c802
commit 36f0320a2f

View File

@ -40,6 +40,7 @@ pub mod log_thru;
pub mod must_join_handle;
pub mod must_join_single_future;
pub mod mutable_future;
#[cfg(not(target_arch = "wasm32"))]
pub mod network_interfaces;
pub mod network_result;
pub mod random;
@ -183,6 +184,7 @@ pub use must_join_single_future::*;
#[doc(inline)]
pub use mutable_future::*;
#[doc(inline)]
#[cfg(not(target_arch = "wasm32"))]
pub use network_interfaces::*;
#[doc(inline)]
pub use network_result::*;