//! High-performance, memory-efficient sync/async channels for Rust.
//!
//! Fibre provides a suite of channel types optimized for various concurrency patterns,
//! including SPSC, MPMC, MPSC, SPMC, and Oneshot. It aims for peak performance
//! while offering both synchronous and asynchronous APIs.
// Channel type modules
// Internal utilities - not part of public API but exposed for crate use
// Public re-exports for convenience (will grow)
pub use ;