//! # Memory crate //! //! Provides the Allocator for the OS. pub mod alloc; mod paging; mod types; pub use paging::*; extern crate alloc as core_alloc; pub use core_alloc::alloc::{GlobalAlloc, Layout}; pub use core_alloc::boxed::Box; pub use core_alloc::format; pub use core_alloc::string::String;