//! **Stratum 9 — Coordination & Communication**
//!
//! Primitives for inter-fiber communication and synchronisation, built from Strata 0–8.
//!
//! | Submodule | Provides | Depends on |
//! |-----------|----------|------------|
//! | [`deferred`] | [`Deferred`] | Stratum 6 (`runtime`), Stratum 4 (`failure`) |
//! | [`latch`] | [`Latch`] | [`deferred`] |
//! | [`queue`] | [`Queue`], [`QueueError`] | Stratum 2 (`kernel`) |
//! | [`semaphore`] | [`Semaphore`], [`Permit`] | Stratum 8 (`resource::Scope`) |
//! | [`pubsub`] | [`PubSub`] | [`queue`], Stratum 8 (`resource::Scope`) |
//! | [`channel`] | [`Channel`], [`ChannelReadError`], [`QueueChannel`] | [`queue`], Stratum 11 |
//! | [`ref_`] | [`Ref`] | Stratum 2 (`kernel`) |
//! | [`synchronized_ref`] | [`SynchronizedRef`] | Stratum 2 (`kernel`) |
//!
//! ## Public API
//!
//! Re-exported at the crate root: all public types and functions from each submodule.
pub use ;
pub use Deferred;
pub use Latch;
pub use PubSub;
pub use ;
pub use Ref;
pub use ;
pub use SynchronizedRef;