[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",
]