syn-grammar 0.3.0

A parser generator for Rust that compiles EBNF-like grammars into syn::parse::Parse implementations.
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 = "2021"
name = "syn-grammar"
version = "0.3.0"
authors = ["Keywan Ghadami"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A parser generator for Rust that compiles EBNF-like grammars into syn::parse::Parse implementations."
homepage = "https://github.com/keywan-ghadami/syn-grammar"
documentation = "https://docs.rs/syn-grammar"
readme = "README.md"
keywords = [
    "parser",
    "syn",
    "grammar",
    "ebnf",
    "macro",
]
categories = [
    "parsing",
    "development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/keywan-ghadami/syn-grammar"

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

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

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

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

[dependencies.grammar-kit]
version = "0.3.0"
features = ["syn"]

[dependencies.proc-macro2]
version = "1.0"

[dependencies.quote]
version = "1.0"

[dependencies.syn]
version = "2.0"
features = [
    "full",
    "extra-traits",
]

[dependencies.syn-grammar-macros]
version = "0.3.0"

[dependencies.syn-grammar-model]
version = "0.3.0"

[dev-dependencies.syn]
version = "2.0"
features = [
    "full",
    "extra-traits",
]