mango_os/lib.rs
1#![no_std]
2#![doc(
3 html_logo_url = "https://gitlab.com/cyloncore/mango/-/raw/dev/1/data/images/mango_logo.svg?ref_type=heads"
4)]
5
6//! mango-os
7//! --------
8//!
9//! This crate is used to conveniently build to all mango os crates.
10
11/// Link to mango_boot.
12pub mod boot;
13/// Link to mango_core.
14pub mod core;
15/// Link to mango_hal.
16pub mod hal;
17/// Link to mango_rt.
18pub mod rt;
19/// Link to mango_test.
20#[cfg(feature = "test_build")]
21pub mod test;