Currently the API takes a `&[u8]` as input. It would be nice to be able to process huge files entirely in memory by processing chunks one after another. Maybe by using `std::io::BufReader`/`std::io::BufWriter` ?
Currently the API takes a
&[u8]as input.It would be nice to be able to process huge files entirely in memory by processing chunks one after another.
Maybe by using
std::io::BufReader/std::io::BufWriter?