2021-05-25 01:58:05 +00:00
|
|
|
[package]
|
|
|
|
name = "rocket_dyn_templates"
|
2023-11-03 23:26:07 +00:00
|
|
|
version = "0.1.0"
|
2021-05-25 01:58:05 +00:00
|
|
|
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
|
|
|
description = "Dynamic templating engine integration for Rocket."
|
2023-11-18 10:30:50 +00:00
|
|
|
documentation = "https://api.rocket.rs/master/rocket_dyn_templates/"
|
2021-05-25 01:58:05 +00:00
|
|
|
homepage = "https://rocket.rs"
|
2023-11-21 15:29:44 +00:00
|
|
|
repository = "https://github.com/rwf2/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"
|
2024-01-30 17:18:40 +00:00
|
|
|
rust-version = "1.75"
|
2021-05-25 01:58:05 +00:00
|
|
|
|
2024-03-20 07:00:33 +00:00
|
|
|
[lints.clippy]
|
|
|
|
type_complexity = "allow"
|
|
|
|
multiple_bound_locations = "allow"
|
|
|
|
|
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]
|
2023-10-14 22:00:36 +00:00
|
|
|
walkdir = "2.4"
|
2023-10-10 00:03:21 +00:00
|
|
|
notify = "6"
|
2023-03-22 20:44:16 +00:00
|
|
|
normpath = "1"
|
2021-05-25 01:58:05 +00:00
|
|
|
|
|
|
|
[dependencies.rocket]
|
2023-11-18 10:30:50 +00:00
|
|
|
version = "0.6.0-dev"
|
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"
|
2024-01-13 04:23:24 +00:00
|
|
|
version = "5.1"
|
2021-05-25 01:58:05 +00:00
|
|
|
optional = true
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|