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