mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-26 02:43:24 +00:00
11 lines
184 B
Rust
11 lines
184 B
Rust
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
#![feature(allocator_api)]
|
|
#![no_std]
|
|
#![deny(unsafe_code)]
|
|
|
|
mod allocator;
|
|
mod slab_cache;
|
|
|
|
pub use allocator::{type_from_layout, HeapAllocator};
|