No description
* Update to axum-core 0.1 Together with the new 0.4 release of `axum` we made a new crate called [`axum-core`]. `axum-core` has a small API and is less likely to receive breaking changes. Therefore its recommended for libraries to depend on `axum-core` instead of `axum`. So this updates `maud` to use `axum-core`. Note this is a breaking change since `axum-core` requires `axum` 0.4. [`axum-core`]: https://crates.io/crates/axum-core * Update changelog link * fix test |
||
---|---|---|
.github/workflows | ||
docs | ||
doctest | ||
maud | ||
maud_macros | ||
.editorconfig | ||
.gitignore | ||
Cargo.toml | ||
CHANGELOG.md | ||
CONTRIBUTING.md | ||
LICENSE-APACHE | ||
LICENSE-MIT | ||
maud.png | ||
README.md | ||
RELEASE_PROCESS.md | ||
rustfmt.toml |
maud
Documentation (source) • API reference • Change log
Maud is an HTML template engine for Rust.
It's implemented as a macro, html!
,
which compiles your markup to specialized Rust code.
This unique approach makes Maud templates
blazing fast, super type-safe, and easy to deploy.
For more info on Maud, see the official book.