rsaeb 0.10.1

A no_std + alloc interpreter for A=B ordered rewrite programs.
Documentation
1
2
3
4
5
6
7
8
9
10
/// Canonical source generation from typed rule data.
mod canonical;
/// Parsed rule domain model.
mod model;

pub(crate) use canonical::canonical_source;
pub(crate) use model::{
    OnceRuleSlot, ParsedRule, ParsedRuleAction, RewriteAction, Rule, RuleAnchorSyntax,
    RuleAvailability, RuleBody, RuleHead, RuleRepeatSyntax,
};