bootmgr-rs-core 0.16.5

A framework for easily creating boot managers in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-FileCopyrightText: 2025 some100 <ootinnyoo@outlook.com>
// SPDX-License-Identifier: MIT

//! System re-exports

pub mod drivers;
pub mod fs;
pub mod helper;
pub mod log_backend;
pub mod protos;
pub mod time;
pub mod variable;

mod global_allocator;
mod panic_handler;