2017-07-01 07:47:41 +00:00
|
|
|
[package]
|
2022-04-26 18:51:04 +00:00
|
|
|
name = "content"
|
2017-07-01 07:47:41 +00:00
|
|
|
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"] }
|
2022-03-20 21:01:01 +00:00
|
|
|
time = { version = "0.3", features = ["macros"] }
|
2022-04-26 18:51:04 +00:00
|
|
|
|
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" }
|
2022-04-26 18:51:04 +00:00
|
|
|
config = { path = "../config" }
|
|
|
|
|
|
|
|
# TODO: remove it?
|
|
|
|
markdown = { path = "../markdown" }
|
2020-12-08 18:18:14 +00:00
|
|
|
|
|
|
|
[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
|
2022-04-26 18:51:04 +00:00
|
|
|
tempfile = "3.3.0"
|