[package]
edition = "2021"
name = "grammar-kit"
version = "0.3.0"
authors = ["Keywan Ghadami"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime support library for parsers generated by syn-grammar."
homepage = "https://github.com/keywan-ghadami/syn-grammar"
documentation = "https://docs.rs/grammar-kit"
readme = "README.md"
keywords = [
"parser",
"syn",
"grammar",
"ebnf",
"runtime",
]
categories = [
"parsing",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/keywan-ghadami/syn-grammar"
[features]
default = [
"rt",
"testing",
"syn",
]
rt = []
syn = ["dep:syn"]
testing = []
[lib]
name = "grammar_kit"
path = "src/lib.rs"
[dependencies.proc-macro2]
version = "1.0"
features = ["span-locations"]
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = [
"full",
"extra-traits",
]
optional = true