damask 0.11.2

Damask: React-like, compile-time components for Rust.
Documentation
[package]
name = "damask"
description = "Damask: React-like, compile-time components for Rust."
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
rust-version.workspace = true
readme = "../../README.md"
keywords = ["template", "component", "html", "macro", "render"]
categories = ["template-engine", "web-programming"]

[features]
# How `HtmlRenderer::new()` treats the newlines in the markup handed to it.
# This is a feature rather than an argument because `Component::render` builds
# its own renderer — there is no call site to pass a choice at, and threading
# one through every component would put a formatting concern in every template.
#
# Neither alters the rendered document; see `renderers::Whitespace` for why.
# Off by default, which emits each template's bytes exactly as written.
pretty = []
minify = []

[dependencies]
damask-macros.workspace = true

[dev-dependencies]
trybuild = "1"

[lints]
workspace = true