shiftkit 0.2.0

A Rust library for building parsers and grammars
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! A Rust library for building parsers and grammars
//!
//! This crate provides tools and utilities for defining grammars,
//! generating LR(1) and LALR(1) parsing tables,
//! and constructing parsers based on these tables.

#![warn(missing_docs, clippy::cargo, clippy::pedantic, clippy::nursery)]

pub mod grammar;
pub mod lr;
pub mod parser;