Merge pull request #326 from VictorKoenders/master
Fixed an issue when compiling no_std and no_optimize on a target with no alloc::sync
This commit is contained in:
commit
b799627b86
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user