mirror of
https://github.com/rwf2/Rocket.git
synced 2025-02-10 02:32:05 +00:00
The new examples directory... * Contains a `README.md` explaining each example. * Consolidates examples into more complete chunks. * Is just better. Resolves #1447.
18 lines
433 B
TOML
18 lines
433 B
TOML
[package]
|
|
name = "templating"
|
|
version = "0.0.0"
|
|
workspace = "../"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
rocket = { path = "../../core/lib" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
[dependencies.rocket_contrib]
|
|
path = "../../contrib/lib"
|
|
default-features = false
|
|
# in your application, you should enable only the template engine(s) used
|
|
features = ["tera_templates", "handlebars_templates"]
|