mirror of
https://github.com/callumio/suck.git
synced 2026-03-21 22:18:10 +00:00
Each provider is enabled via a feature flag. The currently implemented providers are: - std::mpsc - flume - crossbeam_channel
12 lines
230 B
Rust
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;
|