[package]
edition = "2024"
rust-version = "1.85"
name = "dbgfmt"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pretty-print Rust Debug trait output with proper indentation"
homepage = "https://github.com/poi2/dbgfmt"
readme = "README.md"
keywords = [
"debug",
"pretty-print",
"formatter",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/poi2/dbgfmt"
[lib]
name = "dbgfmt"
path = "src/lib.rs"
[[bin]]
name = "dbgfmt"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[profile.dist]
lto = "thin"
inherits = "release"