zola/components/rendering/Cargo.toml

28 lines
632 B
TOML
Raw Permalink Normal View History

2017-07-01 07:47:41 +00:00
[package]
name = "rendering"
version = "0.1.0"
2018-03-14 17:22:24 +00:00
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
2019-12-21 21:52:39 +00:00
edition = "2018"
2020-06-15 17:14:25 +00:00
include = ["src/**/*"]
2017-07-01 07:47:41 +00:00
[dependencies]
2019-12-07 16:50:51 +00:00
tera = { version = "1", features = ["preserve_order"] }
syntect = "4.1"
2020-09-03 19:22:20 +00:00
pulldown-cmark = { version = "0.8", default-features = false }
2018-02-15 09:41:49 +00:00
serde = "1"
serde_derive = "1"
2018-10-09 13:24:56 +00:00
pest = "2"
pest_derive = "2"
regex = "1"
lazy_static = "1"
2017-07-01 07:47:41 +00:00
errors = { path = "../errors" }
front_matter = { path = "../front_matter" }
utils = { path = "../utils" }
2018-05-03 18:50:30 +00:00
config = { path = "../config" }
link_checker = { path = "../link_checker" }
2017-07-01 07:47:41 +00:00
[dev-dependencies]
templates = { path = "../templates" }