zola/components/rendering/Cargo.toml

28 lines
592 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>"]
2019-12-21 16:52:39 -05:00
edition = "2018"
2020-06-15 19:14:25 +02:00
include = ["src/**/*"]
2017-07-01 16:47:41 +09:00
[dependencies]
2019-12-07 17:50:51 +01:00
tera = { version = "1", features = ["preserve_order"] }
syntect = "4.1"
2020-02-16 19:17:41 +01:00
pulldown-cmark = "0.7"
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" }