25 releases (10 stable)

3.0.0 Mar 25, 2024
2.1.0 Mar 24, 2024
2.0.0 Feb 3, 2024
1.2.2 Dec 14, 2023
0.5.2 Sep 25, 2023

#557 in Parser implementations

Download history 355/week @ 2024-01-05 121/week @ 2024-01-12 302/week @ 2024-01-26 974/week @ 2024-02-02 48/week @ 2024-02-09 63/week @ 2024-02-16 68/week @ 2024-02-23 16/week @ 2024-03-01 10/week @ 2024-03-08 32/week @ 2024-03-15 245/week @ 2024-03-22 53/week @ 2024-03-29 19/week @ 2024-04-05 35/week @ 2024-04-12 91/week @ 2024-04-19

204 downloads per month
Used in 2 crates

MIT license

14KB
169 lines

byte_reader

A minimal byte-by-byte reader for parsing input.

test status of byte_reader crates.io

Use case

Following situation:

I want to read and parse some input, but it's not so large-scale parsing task, so I'd like to avoid adding a heavyweight crate like nom or nom8 to my dependencies ...

Of course, byte_reader supports no std environment.


Usage

use byte_reader::Reader;

fn main() {
    // Get an input `&[u8]` from a File, standard input, or others
    let sample_input = "Hello,    byte_reader!".as_bytes();

    // Create mutable `r` for the input
    let mut r = Reader::new(sample_input);

    // Use some simple operations
    // to parse the input
    r.consume("Hello").unwrap();
    r.consume(",").unwrap();
    r.skip_whitespace();
    let name = r.read_while(|b| b != &b'!'); // b"byte_reader"
    let name = String::from_utf8_lossy(name).to_string();
    r.consume("!").unwrap();

    println!("Greeted to `{name}`.");
}

Operations

  • remaining
  • read_while, read_until
  • next, next_if
  • peek, peek2, peek3
  • advance_by, unwind_by
  • consume, consume_oneof
  • skip_while, skip_whitespace

Features

"location"

Enable tracking reader's location, line and column (1-origin), in the input bytes.

"text"

Some utility methods for text-parsing are available:

  • read_quoted_by
  • read_uint, read_int
  • read_camel, read_snake, read_kebab

License

byte_reader is licensed under the MIT License (LICENSE or https://opensource.org/licenses/MIT).

No runtime deps

Features