diff --git a/src/stdlib.rs b/src/stdlib.rs index 165b9068..8171750b 100644 --- a/src/stdlib.rs +++ b/src/stdlib.rs @@ -11,7 +11,9 @@ mod inner { #[cfg(not(target_arch = "wasm32"))] pub use core::{i128, u128}; - pub use alloc::{borrow, boxed, format, rc, string, sync, vec}; + #[cfg(feature = "sync")] + pub use alloc::sync; + pub use alloc::{borrow, boxed, format, rc, string, vec}; pub use core_error as error;