format-attr 0.2.1

a custom derive to implement Debug/Display easy
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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]