[package]
edition = "2021"
name = "derive_display"
version = "0.0.3"
authors = [
"orgrinrt",
"Hiisi Digital",
]
description = """
A convenient attribute to derive `Display` implementation from another trait implementation. Currently supports
`ToTokens`.
"""
homepage = "https://github.com/orgrinrt/derive_display"
documentation = "https://docs.rs/derive_display"
readme = "README.md"
keywords = [
"derive",
"trait",
"impl",
"display",
"helper",
]
categories = [
"rust-patterns",
"value-formatting",
"development-tools",
"development-tools::procedural-macro-helpers",
]
license = "MIT"
license-file = "LICENSE"
repository = "https://github.com/orgrinrt/derive_display"
[lib]
proc-macro = true
[dependencies.include_proc_macro]
version = "1.0.6"
[dependencies.proc-macro2]
version = "1.0.86"
features = []
[dependencies.quote]
version = "1.0.36"
[dependencies.syn]
version = "2.0.68"
features = [
"full",
"parsing",
"proc-macro",
"printing",
]
default-features = false
[dev-dependencies]