2021-05-25 01:58:05 +00:00
|
|
|
[package]
|
|
|
|
name = "rocket_dyn_templates"
|
2022-05-09 10:40:34 +00:00
|
|
|
version = "0.1.0-rc.2"
|
2021-05-25 01:58:05 +00:00
|
|
|
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
|
|
|
description = "Dynamic templating engine integration for Rocket."
|
2021-06-09 08:53:34 +00:00
|
|
|
documentation = "https://api.rocket.rs/v0.5-rc/rocket_dyn_templates/"
|
2021-05-25 01:58:05 +00:00
|
|
|
homepage = "https://rocket.rs"
|
2021-06-10 05:55:05 +00:00
|
|
|
repository = "https://github.com/SergioBenitez/Rocket/tree/master/contrib/dyn_templates"
|
2021-05-25 01:58:05 +00:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["rocket", "framework", "templates", "templating", "engine"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
2022-03-19 18:25:24 +00:00
|
|
|
edition = "2021"
|
|
|
|
rust-version = "1.56"
|
2021-05-25 01:58:05 +00:00
|
|
|
|
|
|
|
[features]
|
2021-06-09 16:47:21 +00:00
|
|
|
tera = ["tera_"]
|
|
|
|
handlebars = ["handlebars_"]
|
2021-05-25 01:58:05 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
glob = "0.3"
|
2022-09-17 01:34:45 +00:00
|
|
|
notify = "5.0.0"
|
2021-05-29 21:43:17 +00:00
|
|
|
normpath = "0.3"
|
2021-05-25 01:58:05 +00:00
|
|
|
|
|
|
|
[dependencies.rocket]
|
2022-05-09 10:40:34 +00:00
|
|
|
version = "0.5.0-rc.2"
|
2021-05-25 01:58:05 +00:00
|
|
|
path = "../../core/lib"
|
|
|
|
default-features = false
|
|
|
|
|
2021-06-09 16:47:21 +00:00
|
|
|
[dependencies.tera_]
|
2021-05-25 01:58:05 +00:00
|
|
|
package = "tera"
|
|
|
|
version = "1.10.0"
|
|
|
|
optional = true
|
|
|
|
|
2021-06-09 16:47:21 +00:00
|
|
|
[dependencies.handlebars_]
|
2021-05-25 01:58:05 +00:00
|
|
|
package = "handlebars"
|
2021-06-10 02:29:24 +00:00
|
|
|
version = "4.1"
|
2021-05-25 01:58:05 +00:00
|
|
|
optional = true
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|