suck 0.0.3

Suck data up through a channel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![doc = include_str!("../README.md")]
#![cfg_attr(docsrs, feature(doc_auto_cfg))]

pub mod error;

#[cfg(feature = "async")]
pub mod asynchronous;
#[cfg(feature = "sync")]
pub mod sync;
#[cfg(any(feature = "sync", feature = "async"))]
pub mod types;

#[cfg(feature = "async")]
pub use asynchronous::channel::{AsyncSourcer, AsyncSucker};
pub use error::Error;
#[cfg(feature = "sync")]
pub use sync::channel::{Sourcer, Sucker};