mirror of https://github.com/rwf2/Rocket.git
New version: rocket_dyn_templates 0.2.0.
This commit is contained in:
parent
2993678e80
commit
92eb043733
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rocket_dyn_templates"
|
name = "rocket_dyn_templates"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
||||||
description = "Dynamic templating engine integration for Rocket."
|
description = "Dynamic templating engine integration for Rocket."
|
||||||
documentation = "https://api.rocket.rs/v0.5/rocket_dyn_templates/"
|
documentation = "https://api.rocket.rs/v0.5/rocket_dyn_templates/"
|
||||||
|
|
|
@ -22,7 +22,7 @@ supports [Handlebars] and [Tera].
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies.rocket_dyn_templates]
|
[dependencies.rocket_dyn_templates]
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
features = ["handlebars", "tera"]
|
features = ["handlebars", "tera"]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
//!
|
//!
|
||||||
//! ```toml
|
//! ```toml
|
||||||
//! [dependencies.rocket_dyn_templates]
|
//! [dependencies.rocket_dyn_templates]
|
||||||
//! version = "0.1.0"
|
//! version = "0.2.0"
|
||||||
//! features = ["handlebars", "tera", "minijinja"]
|
//! features = ["handlebars", "tera", "minijinja"]
|
||||||
//! ```
|
//! ```
|
||||||
//!
|
//!
|
||||||
|
|
|
@ -64,7 +64,7 @@ to `Cargo.toml`:
|
||||||
- rocket = "0.4"
|
- rocket = "0.4"
|
||||||
- rocket_contrib = { version = "0.4", features = ["json"], default-features = false }
|
- rocket_contrib = { version = "0.4", features = ["json"], default-features = false }
|
||||||
+ rocket = { version = "0.5.1", features = ["json"] }
|
+ 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
|
! note: `rocket_dyn_templates` (and co.) _does not_ follow in version lock-step
|
||||||
|
|
Loading…
Reference in New Issue