1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
/***********************************************************************************************************************
 * Copyright (c) 2019 by the authors
 *
 * Author: André Borrmann
 * License: MIT OR Apache License 2.0
 **********************************************************************************************************************/
//! # Bare metal (``no_std``) channel implementations
//!
//! The follwoing channel implementations require only an allocator to be present as it uses heap allocations.

#![doc(html_root_url = "https://docs.rs/ruspiro-channel/0.1.1")]
#![no_std]

extern crate alloc;

pub mod mpmc;