zola/components/content/Cargo.toml

21 lines
508 B
TOML
Raw Normal View History

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