async-flow 0.1.5

Async abstractions for flow-based programming (FBP).
Documentation
// This is free and unencumbered software released into the public domain.

mod channel;
pub use channel::*;

mod input;
pub use input::*;

mod inputs;
pub use inputs::*;

mod output;
pub use output::*;

mod outputs;
pub use outputs::*;

#[cfg(feature = "std")]
mod stderr;
#[cfg(feature = "std")]
pub use stderr::*;

#[cfg(feature = "std")]
mod stdin;
#[cfg(feature = "std")]
pub use stdin::*;

#[cfg(feature = "std")]
mod stdout;
#[cfg(feature = "std")]
pub use stdout::*;

#[cfg(all(feature = "std", any(feature = "serial", feature = "parallel")))]
mod scheduler;
#[cfg(all(feature = "std", any(feature = "serial", feature = "parallel")))]
pub use scheduler::*;

mod system;
pub use system::*;