suck/src/lib.rs
Callum Leslie f3fe41aa82
feat: add multiple channel providers
Each provider is enabled via a feature flag.
The currently implemented providers are:
- std::mpsc
- flume
- crossbeam_channel
2025-09-04 09:42:06 +01:00

12 lines
230 B
Rust

#![doc = include_str!("../README.md")]
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
pub mod channel;
pub mod error;
#[cfg(feature = "sync")]
pub mod sync;
pub mod types;
pub use channel::{Sourcer, Sucker};
pub use error::Error;