askama_rocket 0.13.0+deprecated

Integration crates like `askama_rocket` were removed from askama 0.13.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
#![no_std]
#![doc = include_str!("../README.md")]

#[cfg(not(docsrs))]
compile_error!(
    "\
    Integration crates like `askama_rocket` were removed from askama 0.13.\n\
    Useful information can be found in our upgrade guide \
    <https://askama.readthedocs.io/en/v0.13.0/upgrading.html>, \
    and in our blog post <https://blog.guillaume-gomez.fr/articles/2025-03-19+Askama+and+Rinja+merge>.\
    "
);