[package]
edition = "2021"
name = "vacro-parser"
version = "0.1.8"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A declarative parsing library for Rust procedural macros, simplifying input handling."
documentation = "https://docs.rs/vacro-parser"
readme = "readme.md"
keywords = [
"macros",
"parsing",
"proc-macro",
"syn",
]
categories = [
"development-tools::procedural-macro-helpers",
"parsing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/FeVeR-Store/vacro"
[package.metadata.docs.rs]
features = ["doc-all"]
rustdoc-args = [
"--html-in-header",
"doc-i18n.html",
]
[features]
doc-all = ["vacro-doc-i18n/doc-all"]
doc-cn = ["vacro-doc-i18n/doc-cn"]
doc-en = ["vacro-doc-i18n/doc-en"]
extra-traits = ["vacro-parser-macro/extra-traits"]
[lib]
name = "vacro_parser"
path = "src/lib.rs"
[[test]]
name = "test_bind"
path = "tests/test_bind.rs"
[[test]]
name = "test_define"
path = "tests/test_define.rs"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.vacro-doc-i18n]
version = "0.2.0"
[dependencies.vacro-parser-macro]
version = "0.1.8"
[dev-dependencies.quote]
version = "1.0"
[dev-dependencies.syn]
version = "2.0"
features = [
"full",
"extra-traits",
"full",
]
[dev-dependencies.trybuild]
version = "1.0"
[dev-dependencies.vacro-report]
version = "0.1"