asterinas/kernel/libs/aster-util/src/lib.rs

16 lines
257 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 segment_slice;
pub mod slot_vec;
pub mod union_read_ptr;