Files
asterinas/kernel/libs/aster-util/src/lib.rs
2024-05-31 16:05:58 +08:00

15 lines
234 B
Rust

// SPDX-License-Identifier: MPL-2.0
//! The util of Asterinas.
#![no_std]
#![deny(unsafe_code)]
#![feature(int_roundings)]
extern crate alloc;
pub mod coeff;
pub mod dup;
pub mod safe_ptr;
pub mod slot_vec;
pub mod union_read_ptr;