[package]
edition = "2024"
rust-version = "1.85"
name = "smart-format"
version = "0.2.0"
authors = ["Alexander Irbis <irbis@irbis-labs.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Composable, zero-allocation Display formatting combinators for Rust."
homepage = "https://github.com/irbis-labs/smart-format"
documentation = "https://docs.rs/smart-format/"
readme = "README.md"
keywords = [
"format",
"display",
"zero-alloc",
"text",
"combinator",
]
categories = [
"text-processing",
"rust-patterns",
"value-formatting",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/irbis-labs/smart-format"
[features]
default = []
full = [
"html",
"url",
"xml",
]
html = []
url = ["percent-encoding"]
xml = []
[lib]
name = "smart_format"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.percent-encoding]
version = "2"
optional = true
[dependencies.smart-string]
version = "0.3.0"