1//! # kalosm-streams 2//! 3//! This crate contains utilities for handling streams of data (mainly text). 4 5#![warn(missing_docs)] 6 7mod sender; 8pub mod text_stream; 9pub mod timed_stream;