[package]
edition = "2021"
name = "parametrized-macro"
version = "0.1.7"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Supply useful iterating methods for user-defined types which are parametrized by type parameters"
readme = false
categories = [
"data-structures",
"no-std::no-alloc",
"rust-patterns",
]
license = "MIT"
repository = "https://github.com/yasuo-ozu/parametrized"
[lib]
name = "parametrized_macro"
path = "lib.rs"
proc-macro = true
[dependencies.proc-macro-error]
version = "1.0"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = [
"full",
"derive",
"printing",
"extra-traits",
"visit-mut",
]
[dependencies.template-quote]
version = "0.4"