[package]
edition = "2024"
name = "formati"
version = "0.1.4"
authors = ["nobane"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Evaluate dot notation and arbitrary expressions in format! macros"
readme = "README.md"
license = "MIT"
repository = "https://github.com/nobane/formati"
[features]
anyhow = []
default = []
log = []
stdio = []
tracing = []
[lib]
name = "formati"
path = "src/lib.rs"
proc-macro = true
[[example]]
name = "anyhow_integration"
path = "examples/anyhow_integration.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "log_integration"
path = "examples/log_integration.rs"
[[example]]
name = "stdio"
path = "examples/stdio.rs"
[[example]]
name = "tracing_integration"
path = "examples/tracing_integration.rs"
[[test]]
name = "test_anyhow"
path = "tests/test_anyhow.rs"
[[test]]
name = "test_formati"
path = "tests/test_formati.rs"
[[test]]
name = "test_log"
path = "tests/test_log.rs"
[[test]]
name = "test_stdio"
path = "tests/test_stdio.rs"
[[test]]
name = "test_tracing"
path = "tests/test_tracing.rs"
[dependencies.proc-macro2]
version = "1.0.95"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = ["full"]
[dev-dependencies.anyhow]
version = "1.0.98"
[dev-dependencies.log]
version = "0.4.27"
[dev-dependencies.stdio-override]
version = "0.2"
[dev-dependencies.tracing]
version = "0.1.41"
[dev-dependencies.tracing-subscriber]
version = "0.3.19"