7 releases

0.1.5 Jan 8, 2021
0.1.4 Mar 17, 2020
0.1.3 Aug 21, 2019
0.1.2 Jul 12, 2019
0.0.1 Jun 12, 2019

#8 in #lemon

Download history 2109/week @ 2023-12-02 2433/week @ 2023-12-09 2418/week @ 2023-12-16 1377/week @ 2023-12-23 1682/week @ 2023-12-30 2348/week @ 2024-01-06 2244/week @ 2024-01-13 2423/week @ 2024-01-20 1909/week @ 2024-01-27 1738/week @ 2024-02-03 1826/week @ 2024-02-10 2273/week @ 2024-02-17 2034/week @ 2024-02-24 1640/week @ 2024-03-02 1859/week @ 2024-03-09 1680/week @ 2024-03-16

7,634 downloads per month
Used in 15 crates (via pomelo)

MIT/Apache

130KB
2.5K SLoC

pomelo

A procedural macro to create Lemon-like parsers.

Travis-CI Status Latest version Documentation

Pomelo is a port to Rust of the Lemon Parser Generator (from now on, Lemon_C) originally written by D. Richard Hipp for his SQLite parser. It is based on a previous attempt to port Lemon to Rust (Lemon_Rust), but now it is written as a Rust procedural macro, so it does not contain any of the original C code (although it uses the same algorithms). Thus the change in name to a different citrus fruit.

Getting Started

It is recommended to go to crates.io for the newest released version, as well as links to the newest builds of the docs.

Just add the following dependency to your Cargo manifest:

[dependencies]
pomelo = "*"

Example

use pomelo::pomelo;

pomelo! {
    %type input Vec<i32>;
    %type numbers Vec<i32>;
    %type Number i32;

    input ::= numbers?(A) { A.unwrap_or_else(Vec::new) };
    numbers ::= Number(N) { vec![N] }
    numbers ::= numbers(mut L) Comma Number(N) { L.push(N); L }
}
fn main() -> Result<(), ()> {
    use parser::{Parser, Token};
    //Real world code would use a tokenizer
    let tokens = vec![
        Token::Number(1),
        Token::Comma,
        Token::Number(2),
        Token::Comma,
        Token::Number(3),
    ];
    let mut p = Parser::new();
    for tok in tokens.into_iter() {
        p.parse(tok)?;
    }
    let data = p.end_of_input()?;
    assert_eq!(data, vec![1, 2, 3]);
    Ok(())
}

See more examples in the github repo folder.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~1.5MB
~34K SLoC