[package]
name = "dfmt"
authors = ["Tom Dymel <tom@dymel.dev>"]
version = "0.4.1"
edition = "2021"
keywords = ["dynamic", "format", "template", "string", "arguments"]
categories = [
"value-formatting",
"text-processing",
"no-std",
"template-engine",
]
description = "A fully featured dynamic template drop in replacement for the format! macro."
readme = "README.md"
repository = "https://github.com/tdymel/dfmt"
documentation = "https://docs.rs/dfmt"
license = "MIT OR Apache-2.0"
exclude = [
".github",
"ensure_no_std",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md",
"tests",
"benches",
]
rust-version = "1.81"
[dependencies]
[dev-dependencies]
[[bench]]
name = "performance"
path = "benches/performance.rs"
[[bench]]
name = "dformat"
path = "benches/dformat.rs"
[features]
nightly_formatting_options = []
std = []
default = ["std", "error"]
error = []