#![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;