46 releases

0.20.2 Feb 29, 2024
0.20.1 Oct 23, 2023
0.20.0 May 5, 2023
0.19.9 Mar 25, 2023
0.2.0 Jul 27, 2015

#5 in Parser tooling

Download history 115402/week @ 2023-11-27 116748/week @ 2023-12-04 112593/week @ 2023-12-11 100403/week @ 2023-12-18 56598/week @ 2023-12-25 77055/week @ 2024-01-01 107259/week @ 2024-01-08 110329/week @ 2024-01-15 109464/week @ 2024-01-22 119862/week @ 2024-01-29 121853/week @ 2024-02-05 124700/week @ 2024-02-12 113347/week @ 2024-02-19 124674/week @ 2024-02-26 140786/week @ 2024-03-04 52328/week @ 2024-03-11

439,624 downloads per month
Used in 698 crates (187 directly)

Apache-2.0 OR MIT

2MB
56K SLoC

LALRPOP

Join the chat at https://gitter.im/lalrpop/Lobby

Deploy

LALRPOP is a Rust parser generator framework with usability as its primary goal. You should be able to write compact, DRY, readable grammars. To this end, LALRPOP offers a number of nifty features:

  1. Nice error messages in case parser constructor fails.
  2. Macros that let you extract common parts of your grammar. This means you can go beyond simple repetition like Id* and define things like Comma<Id> for a comma-separated list of identifiers.
  3. Macros can also create subsets, so that you easily do something like Expr<"all"> to represent the full range of expressions, but Expr<"if"> to represent the subset of expressions that can appear in an if expression.
  4. Builtin support for operators like * and ?.
  5. Compact defaults so that you can avoid writing action code much of the time.
  6. Type inference so you can often omit the types of nonterminals.

Despite its name, LALRPOP in fact uses LR(1) by default (though you can opt for LALR(1)), and really I hope to eventually move to something general that can handle all CFGs (like GLL, GLR, LL(*), etc).

Documentation

The LALRPOP book covers all things LALRPOP -- or at least it intends to! Here are some tips:

  • The tutorial covers the basics of setting up a LALRPOP parser.
  • For the impatient, you may prefer the quick start guide section, which describes how to add LALRPOP to your Cargo.toml.
  • Returning users of LALRPOP may benefit from the cheat sheet.
  • The advanced setup chapter shows how to configure other aspects of LALRPOP's preprocessing.
  • If you have any questions join our gitter lobby.

Example Uses

  • LALRPOP is itself implemented in LALRPOP.
  • Gluon is a statically typed functional programming language.
  • RustPython is Python 3.5+ rewritten in Rust
  • Solang is Ethereum Solidity rewritten in Rust

Contributing

You really should read CONTRIBUTING.md if you intend to change LALRPOP's own grammar.

Dependencies

~6–14MB
~137K SLoC