mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-23 01:13:23 +00:00
15 lines
234 B
Rust
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;
|