2017-07-01 16:47:41 +09:00
|
|
|
[package]
|
|
|
|
name = "front_matter"
|
|
|
|
version = "0.1.0"
|
2022-02-01 23:02:03 +01:00
|
|
|
edition = "2021"
|
2017-07-01 16:47:41 +09:00
|
|
|
|
|
|
|
[dependencies]
|
2022-02-01 23:02:03 +01:00
|
|
|
serde = {version = "1.0", features = ["derive"] }
|
2022-03-20 17:01:01 -04:00
|
|
|
time = { version = "0.3", features = ["macros"] }
|
2017-07-01 16:47:41 +09:00
|
|
|
errors = { path = "../errors" }
|
2018-11-01 10:36:19 +01:00
|
|
|
utils = { path = "../utils" }
|
2022-02-01 23:02:03 +01:00
|
|
|
libs = { path = "../libs" }
|
2020-12-08 19:18:14 +01:00
|
|
|
|
|
|
|
[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
|