awesome-repositories.com
Blog
MCP
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
kevinmehall avatar

kevinmehall/rust-peg

0
View on GitHub↗
1,598 stars·117 forks·Rust·MIT·6 vuescrates.io/crates/peg↗

Rust Peg

Parsing Expression Grammar (PEG) parser generator for Rust

Features

  • Parser Generators - PEG parser generator for Rust.

Historique des stars

Graphique de l'historique des stars pour kevinmehall/rust-pegGraphique de l'historique des stars pour kevinmehall/rust-peg

Recherche par IA

Explorez plus de dépôts awesome

Décrivez vos besoins en langage naturel — l'IA classe des milliers de projets open source sélectionnés par pertinence.

Start searching with AI

Alternatives open source à Rust Peg

Projets open source similaires, classés selon le nombre de fonctionnalités partagées avec Rust Peg.
  • ocaml/ocamlAvatar de ocaml

    ocaml/ocaml

    6,514Voir sur GitHub↗

    OCaml is a strongly typed functional language featuring a sophisticated type system and a focus on safety and expressiveness. It provides a comprehensive compiling toolchain that transforms source code into either portable bytecode or high-performance native binaries. The project is distinguished by a shared memory parallel runtime that executes computations across multiple processor cores using domains, and an algebraic effect system for managing side effects and control flow through execution context handlers. It also includes a dedicated parser generator to automatically create lexers and

    OCamlcompilerfunctional-languageocaml
    Voir sur GitHub↗6,514
  • hardmath123/nearleyAvatar de Hardmath123

    Hardmath123/nearley

    3,740Voir sur GitHub↗

    Nearley is a JavaScript parser toolkit used to define context-free grammars and generate corresponding parsers. It features an EBNF grammar compiler that transforms language definitions written in extended Backus-Naur Form into executable JavaScript code, utilizing an Earley parser implementation to process any context-free grammar. The toolkit distinguishes itself by its ability to handle left-recursion and ambiguity without failing, allowing it to identify and return multiple valid derivations for a single input string. It also includes a grammar fuzzing generator to produce random strings

    JavaScript
    Voir sur GitHub↗3,740
  • nikomatsakis/lalrpopAvatar de nikomatsakis

    nikomatsakis/lalrpop

    2Voir sur GitHub↗

    LR(1) parser generator for Rust

    Rust
    Voir sur GitHub↗2
  • gerhobbelt/jisonAvatar de GerHobbelt

    GerHobbelt/jison

    126Voir sur GitHub↗

    bison / YACC / LEX in JavaScript (LALR(1), SLR(1), etc. lexer/parser generator)

    JavaScript
    Voir sur GitHub↗126
Voir les 9 alternatives à Rust Peg→

Questions fréquentes

Que fait kevinmehall/rust-peg ?

Parsing Expression Grammar (PEG) parser generator for Rust

Quelles sont les fonctionnalités principales de kevinmehall/rust-peg ?

Les fonctionnalités principales de kevinmehall/rust-peg sont : Parser Generators.

Quelles sont les alternatives open-source à kevinmehall/rust-peg ?

Les alternatives open-source à kevinmehall/rust-peg incluent : ocaml/ocaml — OCaml is a strongly typed functional language featuring a sophisticated type system and a focus on safety and… gerhobbelt/jison — bison / YACC / LEX in JavaScript (LALR(1), SLR(1), etc. lexer/parser generator). hardmath123/nearley — Nearley is a JavaScript parser toolkit used to define context-free grammars and generate corresponding parsers. It… nikomatsakis/lalrpop — LR(1) parser generator for Rust. pest-parser/pest — Pest is a Rust parsing library and automatic parser generator that transforms formal grammar definitions into… philippesigaud/pegged — A Parsing Expression Grammar (PEG) module, using the D programming language.