drone-core 0.14.3

The core crate for Drone, an Embedded Operating System.
//! The Threads prelude.
//!
//! The purpose of this module is to alleviate imports of many common thread
//! token traits by adding a glob import to the top of thread token heavy
//! modules:
//!
//! ```
//! # #![allow(unused_imports)]
//! use drone_core::thr::prelude::*;
//! ```

#[doc(no_inline)]
pub use crate::thr::ThrToken;

#[doc(no_inline)]
pub use crate::{
    fib::{
        ThrFiberClosure as _, ThrFiberFuture as _, ThrFiberGen as _, ThrFiberStreamPulse as _,
        ThrFiberStreamRing as _,
    },
    thr::{SoftThrToken as _, ThrExec as _, Thread as _},
};