| Crates.io | cfg |
| lib.rs | cfg |
| version | 0.10.0 |
| created_at | 2014-11-13 13:23:02.931507+00 |
| updated_at | 2025-09-17 12:03:43.088465+00 |
| description | Library for manipulating context-free grammars. |
| homepage | https://github.com/pczarn/cfg/ |
| repository | https://github.com/pczarn/cfg/ |
| max_upload_size | |
| id | 95 |
| size | 55,006 |
Rust library for manipulating context-free grammars. You can check the documentation here.
Add this to your Cargo.toml:
[dependencies]
cfg = "0.10"
If you want grammar serialization support with miniserde, include the feature like this:
[dependencies]
cfg = { version = "0.10", features = ["serialize"] }
If you want weighted generation support, include the weighted-generation feature.
If you want LL(1) classification support, include the ll feature.
The following features are implemented thus far:
cfg includes an interface that simplifies grammar construction.
The easiest way of generating symbols is with the sym method.
let mut grammar = Cfg::new();
let [start, expr, identifier, number,
plus, multiply, power, l_paren, r_paren, digit] = grammar.sym();
You may set one or more start symbols we call roots.
grammar.set_roots([start]);
Rules have a LHS symbol and zero or more RHS symbols.
Example BNF:
start ::= expr | identifier l_paren expr r_paren
With our library:
grammar.rule(start).rhs([expr])
.rhs([identifier, l_paren, expr, r_paren]);
Sequence rules have a LHS symbol, a RHS symbol, a range of repetitions, and optional separation. Aside from separation, they closely resemble regular expression repetitions.
Example BNF:
number ::= digit+
With our library:
use cfg_sequence::CfgSequenceExt;
grammar.sequence(number).inclusive(1, None).rhs(digit);
Precedenced rules are the most convenient way to describe operators. Once
built, they are immediately rewritten into basic grammar rules, and unique
symbols are generated. Operator associativity can be set to Right or
Group. It's Left by default.
use cfg::precedence::Associativity::{Right, Group};
grammar.precedenced_rule(expr)
.rhs([number])
.rhs([identifier])
.associativity(Group)
.rhs([l_paren, expr, r_paren])
.lower_precedence()
.associativity(Right)
.rhs([expr, power, expr])
.lower_precedence()
.rhs([expr, multiply, expr])
.lower_precedence()
.rhs([expr, plus, expr]);
We've removed the option to plug in your custom grammar type through traits. You should findit easy to fork the library and make your own types.
Dual-licensed for compatibility with the Rust project.
Licensed under the Apache License Version 2.0: http://www.apache.org/licenses/LICENSE-2.0, or the MIT license: http://opensource.org/licenses/MIT, at your option.