zola/components/rendering/Cargo.toml

22 lines
452 B
TOML
Raw Normal View History

2017-07-01 07:47:41 +00:00
[package]
name = "rendering"
version = "0.1.0"
edition = "2021"
2020-06-15 17:14:25 +00:00
include = ["src/**/*"]
2017-07-01 07:47:41 +00:00
[dependencies]
serde = {version = "1.0", features = ["derive"] }
2018-10-09 13:24:56 +00:00
pest = "2"
pest_derive = "2"
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" }
libs = { path = "../libs" }
2017-07-01 07:47:41 +00:00
[dev-dependencies]
templates = { path = "../templates" }