until_needle 0.1.0

An extension to the BufRead trait that allows reading until a specified pattern (needle) is found.
Documentation
1
2
3
4
5
6
7
8
#![doc = include_str!("../README.md")]
/// Implementation for std::io
pub mod io;
pub mod needle;
/// Implementation for futures
#[cfg(feature = "futures")]
pub mod futures;
pub use crate::needle::Needle;