Rocket/examples/templating/Cargo.toml

16 lines
363 B
TOML
Raw Normal View History

2017-05-16 22:14:46 +00:00
[package]
name = "templating"
2017-05-16 22:14:46 +00:00
version = "0.0.0"
workspace = "../"
2019-06-13 02:41:29 +00:00
edition = "2018"
publish = false
2017-05-16 22:14:46 +00:00
[dependencies]
rocket = { path = "../../core/lib" }
2017-05-16 22:14:46 +00:00
[dependencies.rocket_contrib]
path = "../../contrib/lib"
2017-05-16 22:14:46 +00:00
default-features = false
# in your application, you should enable only the template engine(s) used
features = ["tera_templates", "handlebars_templates"]