utf8-bufread 1.0.0

Provides alternatives to BufRead's read_line & lines that stop not on newlines
Documentation
1
2
3
4
5
6
7
8
9
use std::io::Cursor;
use utf8_bufread::BufRead;

fn main() {
    let _s = {
        let mut r = Cursor::new("");
        r.read_str().unwrap()
    };
}