2017-07-01 07:47:41 +00:00
|
|
|
[package]
|
|
|
|
name = "front_matter"
|
|
|
|
version = "0.1.0"
|
2022-02-01 22:02:03 +00:00
|
|
|
edition = "2021"
|
2017-07-01 07:47:41 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-02-01 22:02:03 +00:00
|
|
|
serde = {version = "1.0", features = ["derive"] }
|
2017-07-01 07:47:41 +00:00
|
|
|
|
|
|
|
errors = { path = "../errors" }
|
2018-11-01 09:36:19 +00:00
|
|
|
utils = { path = "../utils" }
|
2022-02-01 22:02:03 +00:00
|
|
|
libs = { path = "../libs" }
|
2020-12-08 18:18:14 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-02-01 22:02:03 +00:00
|
|
|
test-case = "1" # TODO: can we solve that usecase in src/page.rs in a simpler way? A custom macro_rules! maybe
|