zola/components/front_matter/Cargo.toml

15 lines
405 B
TOML
Raw Normal View History

2017-07-01 16:47:41 +09:00
[package]
name = "front_matter"
version = "0.1.0"
edition = "2021"
2017-07-01 16:47:41 +09:00
[dependencies]
serde = {version = "1.0", features = ["derive"] }
time = { version = "0.3", features = ["macros"] }
2017-07-01 16:47:41 +09:00
errors = { path = "../errors" }
utils = { path = "../utils" }
libs = { path = "../libs" }
[dev-dependencies]
2022-03-23 10:00:55 +01:00
test-case = "2" # TODO: can we solve that usecase in src/page.rs in a simpler way? A custom macro_rules! maybe