noodle 0.2.0

Streaming parser utilities
Documentation
  • Coverage
  • 100%
    4 out of 4 items documented1 out of 2 items with examples
  • Size
  • Source code size: 12.3 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 3.07 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 12s Average build duration of successful builds.
  • all releases: 12s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • bodyweightenergy/noodle
    3 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • bodyweightenergy

Noodle

For when you need to parse incomplete I/O streams, where not all bytes are available at once (reading huge files, network streams, other I/O byte streams).

This is mainly meant to work side-by-side with nom::bytes::streaming parser functions.

What You Can Do

  • ReadMuncher: Continuously grab bytes from Read objects, and iterate over byte packets/parcels.

Future Plans

  • Support AsyncRead and Stream.
  • Make generic over anything implementing IntoIterator<u8>.
  • Make it work better with nom v5.0, by parsing InputTake instead of just &[u8] (str included).