minipg 0.1.0-alpha.3

A blazingly fast parser generator with ANTLR4 compatibility
Documentation
minipg-0.1.0-alpha.3 has been yanked.

minipg - Mini Parser Generator

A blazingly fast, modern parser generator written in Rust. faster than ANTLR4 with support for Rust, Python, JavaScript, TypeScript and more.

✨ Features

🚀 Performance

  • faster than ANTLR4 for code generation
  • Linear O(n) scaling with grammar complexity
  • Sub-millisecond generation for typical grammars
  • <100 KB memory usage

🌍 Multi-Language Support

  • Rust - Optimized with inline attributes and DFA generation
  • Python - Type hints and dataclasses (Python 3.10+)
  • JavaScript - Modern ES6+ with error recovery
  • TypeScript - Full type safety with interfaces and enums
  • Java - TODO
  • C# - TODO
  • Go - TODO
  • Rust - TODO
  • C - TODO
  • C++ - TODO

🎯 ANTLR4 Compatible

  • 100% compatible with ANTLR4 grammar syntax
  • Labels - Element and alternative labels
  • Actions - Embedded actions and semantic predicates
  • Fragments - Reusable lexer components
  • Modular Architecture: Organized into focused crates
  • Trait-Based Design: Extensible and testable
  • Rich Diagnostics: Detailed error messages with location information
  • AST with Visitor Pattern: Flexible tree traversal
  • Semantic Analysis:
    • Undefined rule detection
    • Duplicate rule detection
    • Left recursion detection
    • Reachability analysis
    • Empty alternative warnings
  • Code Generation:
    • Generates optimized standalone parsers
    • Visitor pattern generation
    • Listener pattern generation
    • Configurable output
  • CLI Tool: Easy-to-use command-line interface
  • Error Recovery: Robust error handling and recovery strategies
  • Comprehensive Documentation: User guide, API docs, and syntax reference
  • Snapshot Testing: Comprehensive tests using insta for regression prevention
  • Complex Grammar Examples: JSON, SQL, Java, Python, and more

Architecture

minipg is organized as a single crate with modular structure:

  • core: Core types, traits, and error handling
  • ast: Abstract Syntax Tree definitions and visitor patterns
  • parser: Grammar file parser (lexer + parser)
  • analysis: Semantic analysis and validation
  • codegen: Code generation for target languages (Rust, Python, JS, TS)
  • CLI: Command-line interface with binary

See ARCHITECTURE.md for detailed design documentation.

Installation

From crates.io

cargo install minipg

From Source

git clone https://github.com/yingkitw/minipg
cd minipg
cargo install --path .

Usage

Generate a Parser

minipg generate grammar.g4 -o output/ -l rust

Validate a Grammar

minipg validate grammar.g4

Show Grammar Information

minipg info grammar.g4

Grammar Syntax

minipg uses a syntax similar to ANTLR4:

grammar parser Calculator;

expr: term (('+' | '-') term)*;
term: factor (('*' | '/') factor)*;
factor: NUMBER | '(' expr ')';

NUMBER: [0-9]+;
WS: [ \t\r\n]+ -> skip;

Comparisons

vs ANTLR4

minipg provides a modern alternative to ANTLR4 while maintaining full grammar compatibility:

Feature minipg ANTLR4
Language Rust Java
Runtime Dependency None (standalone) Requires runtime library
Grammar Compatibility 100% ANTLR4 compatible Native
Multi-Language Rust, Python, JS, TS, Go, C, C++, Java Java, Python, JS, C#, C++, Go, Swift
Generation Speed Sub-millisecond Seconds

Key Advantages:

  • Fast code generation - sub-millisecond for typical grammars
  • 🚀 No runtime dependencies - generates standalone parsers
  • 🦀 Modern Rust implementation with safety guarantees
  • 📦 Smaller footprint - <100 KB memory usage
  • 🔧 Easy integration - no Java runtime required

See COMPARISON_WITH_ANTLR4RUST.md for detailed comparison.

vs Pest

minipg and Pest serve different needs in the Rust parsing ecosystem:

Feature minipg Pest
Grammar Syntax ANTLR4 (industry standard) PEG (Parsing Expression Grammar)
Target Languages Rust, Python, JS, TS, Go, C, C++, Java Rust only
Code Generation Standalone parsers (no runtime) Macro-based (requires runtime)
AST Patterns Auto-generated visitor/listener Manual tree walking
Error Recovery Built-in, continues after errors Stops at first error
Grammar Ecosystem Compatible with 1000+ ANTLR4 grammars Pest-specific grammars

Choose minipg if you need:

  • Multi-language parser generation
  • ANTLR4 grammar compatibility
  • Standalone, portable parsers with no runtime dependencies
  • Automatic visitor/listener patterns

Choose Pest if you need:

  • Rust-only parsing
  • PEG parsing semantics
  • Compile-time grammar validation
  • Tight Rust macro integration

See COMPARISON_WITH_PEST.md for detailed comparison.

Documentation

Development

Building

cargo build

Running Tests

cargo test --all

All 68 tests pass with 100% success rate.

Running with Logging

RUST_LOG=info cargo run -- generate grammar.g4

Project Status

  • Current Version: 0.1.0-alpha.2 (ready to publish)
  • Status: Alpha Release - Published on crates.io
  • Tests: 65 passing (43 unit + 11 E2E + 11 integration, 9 ignored)
  • Package: Single consolidated crate for easy installation
  • E2E Coverage: Full pipeline testing from grammar to working parser

See TODO.md for current tasks and ROADMAP.md for the complete roadmap.

License

Apache-2.0