1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
[package]
name = "macro_rules_attribute"
version = "0.2.2" # Keep in sync
authors = ["Daniel Henry-Mantilla <daniel.henry.mantilla@gmail.com>"]
edition = "2018"
documentation = "https://docs.rs/macro_rules_attribute"
homepage = "https://crates.io/crates/macro_rules_attribute"
repository = "https://github.com/danielhenrymantilla/macro_rules_attribute-rs"
description = "Use declarative macros in attribute or derive position"
keywords = ["macro", "attribute", "decorator", "derive", "macro_rules"]
categories = ["rust-patterns"]
license = "Apache-2.0 OR MIT OR Zlib"
readme = "README.md"
exclude = ["*.sh"]
[dependencies]
paste.version = "1.0.7"
[dependencies.macro_rules_attribute-proc_macro]
version = "=0.2.2" # Keep in sync
path = "src/proc_macro"
[features]
default = []
better-docs = []
verbose-expansions = [
"macro_rules_attribute-proc_macro/verbose-expansions",
]
[dev-dependencies]
once_cell.version = "1.10.0"
pin-project-lite.version = "0.2.8"
serde.version = "1.0.136"
serde.features = ["derive"]
[package.metadata.docs.rs]
features = [
"better-docs",
]
rustdoc-args = [
"--html-before-content", "fix-docsrs-li-details-summary.html",
]
[workspace]
members = ["src/proc_macro"]
|