21 lines
		
	
	
		
			554 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			554 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![cfg_attr(not(any(feature = "std", feature = "wasm")), no_std)]
 | |
| #![cfg_attr(feature = "nightly", feature(async_fn_in_trait, impl_trait_projections))]
 | |
| #![cfg_attr(feature = "nightly", allow(incomplete_features))]
 | |
| #![allow(clippy::new_without_default)]
 | |
| #![doc = include_str!("../README.md")]
 | |
| #![warn(missing_docs)]
 | |
| 
 | |
| // This mod MUST go first, so that the others see its macros.
 | |
| pub(crate) mod fmt;
 | |
| 
 | |
| // internal use
 | |
| mod ring_buffer;
 | |
| 
 | |
| pub mod blocking_mutex;
 | |
| pub mod channel;
 | |
| pub mod mutex;
 | |
| pub mod pipe;
 | |
| pub mod pubsub;
 | |
| pub mod signal;
 | |
| pub mod waitqueue;
 |