mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-08 18:26:48 +00:00
17 lines
367 B
Rust
17 lines
367 B
Rust
#![no_std]
|
|
#![feature(core_intrinsics)]
|
|
#![allow(incomplete_features)] // for const generics
|
|
#![feature(generic_const_exprs)]
|
|
#![allow(internal_features)]
|
|
#![allow(clippy::needless_return)]
|
|
|
|
#[macro_use]
|
|
extern crate alloc;
|
|
|
|
mod alloc_bitmap;
|
|
mod bitmap_core;
|
|
mod static_bitmap;
|
|
pub mod traits;
|
|
pub use alloc_bitmap::AllocBitmap;
|
|
pub use static_bitmap::StaticBitmap;
|