nom-bufreader, adapters for BufReader around nom

*/!\Work in progress, if you put it in production, you fix it/!*

With this crate, you can assemble a nom parser with a BufReader alternative, synchronous or asynchronous. Due to incompatible buffering strategies, std::io::BufReader and futures::io::BufReader cannot be used directly. This crate proovide compatible forks instead, in the bufreader and async_bufreader modules.

It will hide for you the Incomplete handling in nom for streaming parsers, retrying and refilling buffers automatically.

See the examples/ directory for usage