2021-09-13 14:35:40 +02:00
|
|
|
#![cfg_attr(not(any(feature = "std", feature = "wasm")), no_std)]
|
2022-11-27 22:24:20 +01:00
|
|
|
#![cfg_attr(feature = "nightly", feature(async_fn_in_trait, impl_trait_projections))]
|
2021-10-18 00:55:43 +02:00
|
|
|
#![allow(clippy::new_without_default)]
|
2022-08-23 13:54:40 +02:00
|
|
|
#![doc = include_str!("../README.md")]
|
2022-06-26 00:53:35 +02:00
|
|
|
#![warn(missing_docs)]
|
2020-09-22 18:03:43 +02:00
|
|
|
|
2020-12-01 17:46:56 +01:00
|
|
|
// This mod MUST go first, so that the others see its macros.
|
|
|
|
pub(crate) mod fmt;
|
|
|
|
|
2022-08-03 13:55:46 +02:00
|
|
|
// internal use
|
|
|
|
mod ring_buffer;
|
|
|
|
|
2021-09-11 01:53:53 +02:00
|
|
|
pub mod blocking_mutex;
|
|
|
|
pub mod channel;
|
2022-04-06 01:23:42 +02:00
|
|
|
pub mod mutex;
|
2022-08-03 13:55:46 +02:00
|
|
|
pub mod pipe;
|
2022-08-22 22:00:06 +02:00
|
|
|
pub mod pubsub;
|
|
|
|
pub mod signal;
|
2022-04-06 01:23:42 +02:00
|
|
|
pub mod waitqueue;
|