1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#![no_std]
#![doc(
  html_logo_url = "https://gitlab.com/cyloncore/mango/-/raw/dev/1/data/images/mango_logo.svg?ref_type=heads"
)]

//! mango-os
//! --------
//!
//! This crate is used to conveniently build to all mango os crates.

/// Link to mango_boot.
pub mod boot;
/// Link to mango_core.
pub mod core;
/// Link to mango_hal.
pub mod hal;
/// Link to mango_rt.
pub mod rt;
/// Link to mango_test.
#[cfg(feature = "test_build")]
pub mod test;