gazelle-parser 0.9.3

LR parser generator with runtime operator precedence and natural lexer feedback
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "gazelle-parser"
version = "0.9.3"
build = false
exclude = ["examples/c11/C11parser"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "LR parser generator with runtime operator precedence and natural lexer feedback"
readme = "README.md"
keywords = [
    "parser",
    "lr",
    "grammar",
    "parsing",
    "lalr",
]
categories = [
    "parsing",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/gerben-stavenga/gazelle"

[package.metadata.docs.rs]
all-features = true

[features]
bootstrap = ["bootstrap_regex"]
bootstrap_regex = []
codegen = [
    "std",
    "dep:quote",
    "dep:proc-macro2",
    "dep:syn",
    "dep:prettyplease",
]
default = ["std"]
std = []

[lib]
name = "gazelle"
path = "src/lib.rs"

[[bin]]
name = "gazelle-parser"
path = "src/main.rs"
required-features = ["codegen"]

[[example]]
name = "auto_lexer"
path = "examples/auto_lexer.rs"

[[example]]
name = "c11"
path = "examples/c11/main.rs"

[[example]]
name = "c11_calculator"
path = "examples/c11_calculator.rs"

[[example]]
name = "expr_eval"
path = "examples/expr_eval.rs"

[[example]]
name = "hello"
path = "examples/hello.rs"

[[example]]
name = "lexer_dfa"
path = "examples/lexer_dfa.rs"

[[example]]
name = "modifiers"
path = "examples/modifiers.rs"

[[example]]
name = "python"
path = "examples/python/main.rs"

[[example]]
name = "runtime_grammar"
path = "examples/runtime_grammar.rs"

[[test]]
name = "bootstrap_from_scratch"
path = "tests/bootstrap_from_scratch.rs"

[[test]]
name = "error_messages"
path = "tests/error_messages.rs"

[[test]]
name = "fallible_actions"
path = "tests/fallible_actions.rs"

[[test]]
name = "meta_generated_up_to_date"
path = "tests/meta_generated_up_to_date.rs"

[[test]]
name = "precedence_equivalence"
path = "tests/precedence_equivalence.rs"

[[test]]
name = "recovery"
path = "tests/recovery.rs"

[[test]]
name = "regex_generated_up_to_date"
path = "tests/regex_generated_up_to_date.rs"

[dependencies.prettyplease]
version = "0.2"
optional = true

[dependencies.proc-macro2]
version = "1"
optional = true

[dependencies.quote]
version = "1"
optional = true

[dependencies.syn]
version = "2"
features = ["full"]
optional = true

[dev-dependencies]