ruspiro_channel/
lib.rs

1/***********************************************************************************************************************
2 * Copyright (c) 2019 by the authors
3 *
4 * Author: André Borrmann
5 * License: MIT OR Apache License 2.0
6 **********************************************************************************************************************/
7//! # Bare metal (``no_std``) channel implementations
8//!
9//! The follwoing channel implementations require only an allocator to be present as it uses heap allocations.
10
11#![doc(html_root_url = "https://docs.rs/ruspiro-channel/0.1.1")]
12#![no_std]
13
14extern crate alloc;
15
16pub mod mpmc;