New version: rocket_dyn_templates 0.2.0.

This commit is contained in:
Sergio Benitez 2024-05-22 20:34:03 -05:00
parent 2993678e80
commit 92eb043733
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "rocket_dyn_templates"
version = "0.1.0"
version = "0.2.0"
authors = ["Sergio Benitez <sb@sergio.bz>"]
description = "Dynamic templating engine integration for Rocket."
documentation = "https://api.rocket.rs/v0.5/rocket_dyn_templates/"

View File

@ -22,7 +22,7 @@ supports [Handlebars] and [Tera].
```toml
[dependencies.rocket_dyn_templates]
version = "0.1.0"
version = "0.2.0"
features = ["handlebars", "tera"]
```

View File

@ -12,7 +12,7 @@
//!
//! ```toml
//! [dependencies.rocket_dyn_templates]
//! version = "0.1.0"
//! version = "0.2.0"
//! features = ["handlebars", "tera", "minijinja"]
//! ```
//!

View File

@ -64,7 +64,7 @@ to `Cargo.toml`:
- rocket = "0.4"
- rocket_contrib = { version = "0.4", features = ["json"], default-features = false }
+ rocket = { version = "0.5.1", features = ["json"] }
+ rocket_dyn_templates = { version = "0.1.0", features = ["tera"] }
+ rocket_dyn_templates = { version = "0.2.0", features = ["tera"] }
```
! note: `rocket_dyn_templates` (and co.) _does not_ follow in version lock-step