| Vulnerabilities | |||||
|---|---|---|---|---|---|
| Version | Suggest | Low | Medium | High | Critical |
| 0.23.1 | 0 | 0 | 0 | 0 | 0 |
| 0.23.0 | 0 | 0 | 0 | 0 | 0 |
| 0.22.2 | 0 | 0 | 0 | 0 | 0 |
| 0.22.1 | 0 | 0 | 0 | 0 | 0 |
| 0.22.0 | 0 | 0 | 0 | 0 | 0 |
| 0.21.0 | 0 | 0 | 0 | 0 | 0 |
| 0.20.2 | 0 | 0 | 0 | 0 | 0 |
| 0.20.1 | 0 | 0 | 0 | 0 | 0 |
| 0.20.0 | 0 | 0 | 0 | 0 | 0 |
| 0.19.12 | 0 | 0 | 0 | 0 | 0 |
| 0.19.11 | 0 | 0 | 0 | 0 | 0 |
| 0.19.10 | 0 | 0 | 0 | 0 | 0 |
| 0.19.9 | 0 | 0 | 0 | 0 | 0 |
| 0.19.8 | 0 | 0 | 0 | 0 | 0 |
| 0.19.7 | 0 | 0 | 0 | 0 | 0 |
| 0.19.6 | 0 | 0 | 0 | 0 | 0 |
| 0.19.5 | 0 | 0 | 0 | 0 | 0 |
| 0.19.4 | 0 | 0 | 0 | 0 | 0 |
| 0.19.3 | 0 | 0 | 0 | 0 | 0 |
| 0.19.2 | 0 | 0 | 0 | 0 | 0 |
| 0.19.1 | 0 | 0 | 0 | 0 | 0 |
| 0.19.0 | 0 | 0 | 0 | 0 | 0 |
| 0.18.1 | 0 | 0 | 0 | 0 | 0 |
| 0.18.0 | 0 | 0 | 0 | 0 | 0 |
| 0.17.2 | 0 | 0 | 0 | 0 | 0 |
| 0.17.1 | 0 | 0 | 0 | 0 | 0 |
| 0.17.0 | 0 | 0 | 0 | 0 | 0 |
| 0.16.3 | 0 | 0 | 0 | 0 | 0 |
| 0.16.2 | 0 | 0 | 0 | 0 | 0 |
| 0.16.1 | 0 | 0 | 0 | 0 | 0 |
| 0.16.0 | 0 | 0 | 0 | 0 | 0 |
| 0.15.2 | 0 | 0 | 0 | 0 | 0 |
| 0.15.1 | 0 | 0 | 0 | 0 | 0 |
| 0.15.0 | 0 | 0 | 0 | 0 | 0 |
| 0.14.0 | 0 | 0 | 0 | 0 | 0 |
| 0.13.1 | 0 | 0 | 0 | 0 | 0 |
| 0.13.0 | 0 | 0 | 0 | 0 | 0 |
| 0.12.5 | 0 | 0 | 0 | 0 | 0 |
| 0.12.4 | 0 | 0 | 0 | 0 | 0 |
| 0.12.3 | 0 | 0 | 0 | 0 | 0 |
| 0.12.2 | 0 | 0 | 0 | 0 | 0 |
| 0.12.1 | 0 | 0 | 0 | 0 | 0 |
| 0.12.0 | 0 | 0 | 0 | 0 | 0 |
| 0.11.0 | 0 | 0 | 0 | 0 | 0 |
| 0.10.0 | 0 | 0 | 0 | 0 | 0 |
| 0.9.0 | 0 | 0 | 0 | 0 | 0 |
| 0.8.0 | 0 | 0 | 0 | 0 | 0 |
| 0.7.0 | 0 | 0 | 0 | 0 | 0 |
| 0.6.1 | 0 | 0 | 0 | 0 | 0 |
| 0.6.0 | 0 | 0 | 0 | 0 | 0 |
| 0.5.0 | 0 | 0 | 0 | 0 | 0 |
| 0.4.1 | 0 | 0 | 0 | 0 | 0 |
| 0.4.0 | 0 | 0 | 0 | 0 | 0 |
| 0.3.0 | 0 | 0 | 0 | 0 | 0 |
| 0.2.0 | 0 | 0 | 0 | 0 | 0 |
| 0.1.0 | 0 | 0 | 0 | 0 | 0 |
0.23.1 - This version is safe to use because it has no known security vulnerabilities at this time. Find out if your coding project uses this component and get notified of any reported security vulnerabilities with Meterian-X Open Source Security Platform
Maintain your licence declarations and avoid unwanted licences to protect your IP the way you intended.
Apache-2.0 - Apache License 2.0LALRPOP 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:
Id* and define
things like Comma<Id> for a comma-separated list of identifiers.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.* and ?.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).
The LALRPOP book covers all things LALRPOP -- or at least it intends to! Here are some tips:
Cargo.toml.You really should read CONTRIBUTING.md if you intend to change LALRPOP's own grammar.