Fixed an issue when compiling no_std and no_optimize on a target with no alloc::sync

This commit is contained in:
Victor Koenders 2021-01-07 15:19:40 +01:00
parent 1642232350
commit a337648217

View File

@ -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;