[package]
edition = "2024"
name = "format-attr"
version = "0.2.1"
authors = ["plan <frostyplanet@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "a custom derive to implement Debug/Display easy"
homepage = "https://github.com/NaturalIO/format-attr"
documentation = "https://docs.rs/format-attr"
readme = "README.md"
license = "MIT"
repository = "https://github.com/NaturalIO/format-attr"
[lib]
name = "format_attr"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "test_display"
path = "tests/test_display.rs"
[[test]]
name = "test_generic"
path = "tests/test_generic.rs"
[[test]]
name = "test_inline_field"
path = "tests/test_inline_field.rs"
[[test]]
name = "test_omit_self"
path = "tests/test_omit_self.rs"
[[test]]
name = "test_separate_fmt"
path = "tests/test_separate_fmt.rs"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = [
"full",
"derive",
"parsing",
]
[dev-dependencies]