re-exported alloc and core modules
This commit is contained in:
parent
5b35be7425
commit
ca16d4aa80
13
src/lib.rs
13
src/lib.rs
@ -46,10 +46,23 @@
|
||||
|
||||
#![no_std]
|
||||
|
||||
extern crate alloc;
|
||||
extern crate core;
|
||||
|
||||
pub mod entry;
|
||||
mod macros;
|
||||
pub mod process;
|
||||
|
||||
pub use alloc::{
|
||||
borrow::*,
|
||||
boxed::*,
|
||||
collections::*,
|
||||
rc::*,
|
||||
string::*,
|
||||
vec::*,
|
||||
};
|
||||
pub use core::*;
|
||||
|
||||
pub use macros::*;
|
||||
|
||||
pub use libc_dbg as dbg;
|
||||
|
Reference in New Issue
Block a user