tvl-depot/Cargo.toml
Vincent Ambo 3db069c60d feat(main): Add support for Tera templates
Sets up the structure required to carry Tera templates in the
actix-web state.

The (still very barebones) index renderer has been updated to render a
Tera template.
2018-04-08 17:30:03 +02:00

17 lines
406 B
TOML

[package]
name = "converse"
version = "0.1.0"
authors = ["Vincent Ambo <mail@tazj.in>"]
[dependencies]
actix = "0.5"
actix-web = { git="https://github.com/actix/actix-web.git" }
env_logger = "0.5"
diesel = { version = "1.2", features = ["postgres", "chrono", "r2d2"]}
chrono = { version = "0.4", features = ["serde"] }
log = "0.4"
r2d2 = "*"
futures = "*"
tera = "0.11"
serde = "1.0"
serde_derive = "1.0"