Rocket/contrib/dyn_templates/Cargo.toml

45 lines
1004 B
TOML
Raw Normal View History

[package]
name = "rocket_dyn_templates"
2023-11-03 23:26:07 +00:00
version = "0.1.0"
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/"
homepage = "https://rocket.rs"
repository = "https://github.com/rwf2/Rocket/tree/master/contrib/dyn_templates"
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.75"
[lints.clippy]
type_complexity = "allow"
multiple_bound_locations = "allow"
[features]
tera = ["tera_"]
handlebars = ["handlebars_"]
[dependencies]
walkdir = "2.4"
notify = "6"
normpath = "1"
[dependencies.rocket]
2023-11-18 10:30:50 +00:00
version = "0.6.0-dev"
path = "../../core/lib"
default-features = false
[dependencies.tera_]
package = "tera"
version = "1.10.0"
optional = true
[dependencies.handlebars_]
package = "handlebars"
2024-01-13 04:23:24 +00:00
version = "5.1"
optional = true
[package.metadata.docs.rs]
all-features = true