zola/components/rendering/Cargo.toml

27 lines
566 B
TOML
Raw Normal View History

2017-07-01 16:47:41 +09:00
[package]
name = "rendering"
version = "0.1.0"
2018-03-14 18:22:24 +01:00
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
2017-07-01 16:47:41 +09:00
[dependencies]
tera = { version = "0.11", features = ["preserve_order"] }
2018-10-09 14:33:43 +02:00
syntect = "3"
pulldown-cmark = "0.2"
2017-07-01 16:47:41 +09:00
slug = "0.1"
2018-02-15 10:41:49 +01:00
serde = "1"
serde_derive = "1"
2018-10-09 15:24:56 +02:00
pest = "2"
pest_derive = "2"
regex = "1"
lazy_static = "1"
2017-07-01 16:47:41 +09:00
errors = { path = "../errors" }
front_matter = { path = "../front_matter" }
utils = { path = "../utils" }
2018-05-03 20:50:30 +02:00
config = { path = "../config" }
link_checker = { path = "../link_checker" }
2017-07-01 16:47:41 +09:00
[dev-dependencies]
templates = { path = "../templates" }