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"
|
2017-07-01 07:47:41 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2019-12-07 16:50:51 +00:00
|
|
|
tera = { version = "1", features = ["preserve_order"] }
|
2020-04-29 20:35:28 +00:00
|
|
|
syntect = { version = "4.1", default-features = false, features = ["default-fancy"]}
|
2020-02-16 18:17:41 +00:00
|
|
|
pulldown-cmark = "0.7"
|
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"
|
2018-11-16 17:19:38 +00:00
|
|
|
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" }
|
2018-07-16 19:13:00 +00:00
|
|
|
link_checker = { path = "../link_checker" }
|
2017-07-01 07:47:41 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
templates = { path = "../templates" }
|
2018-07-05 15:43:30 +00:00
|
|
|
|