1//! Extensions providing supports for attaching streams and sinks to 2//! your services. 3 4#[cfg(feature = "sinks")] 5pub mod sink; 6#[cfg(feature = "streams")] 7pub mod stream;