mirror of
https://github.com/getzola/zola
synced 2025-01-21 00:04:04 +00:00
ae3a8b802e
* Add libs subcrate * Remove last direct lazy_static usage * Update pinned ci version * Update deps
21 lines
452 B
TOML
21 lines
452 B
TOML
[package]
|
|
name = "rendering"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
include = ["src/**/*"]
|
|
|
|
[dependencies]
|
|
serde = {version = "1.0", features = ["derive"] }
|
|
pest = "2"
|
|
pest_derive = "2"
|
|
|
|
errors = { path = "../errors" }
|
|
front_matter = { path = "../front_matter" }
|
|
utils = { path = "../utils" }
|
|
config = { path = "../config" }
|
|
link_checker = { path = "../link_checker" }
|
|
libs = { path = "../libs" }
|
|
|
|
[dev-dependencies]
|
|
templates = { path = "../templates" }
|
|
|