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

16 lines
257 B
Rust
Raw Normal View History

2024-01-03 03:22:36 +00:00
// SPDX-License-Identifier: MPL-2.0
//! The util of Asterinas.
#![no_std]
#![deny(unsafe_code)]
2023-09-18 03:47:17 +00:00
#![feature(int_roundings)]
2023-04-18 10:09:57 +00:00
extern crate alloc;
pub mod coeff;
2023-05-30 11:09:25 +00:00
pub mod dup;
pub mod safe_ptr;
2024-09-04 02:54:56 +00:00
pub mod segment_slice;
2023-04-18 10:09:57 +00:00
pub mod slot_vec;
2022-11-23 10:13:40 +00:00
pub mod union_read_ptr;