zola/components/site/Cargo.toml

25 lines
608 B
TOML
Raw Normal View History

2017-07-01 07:47:41 +00:00
[package]
name = "site"
version = "0.1.0"
2018-03-14 17:22:24 +00:00
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
2019-12-21 21:52:39 +00:00
edition = "2018"
2020-06-15 17:14:25 +00:00
include = ["src/**/*"]
2017-07-01 07:47:41 +00:00
[dependencies]
serde = { version = "1.0", features = ["derive"] }
2017-07-01 07:47:41 +00:00
errors = { path = "../errors" }
config = { path = "../config" }
console = { path = "../console" }
2017-07-01 07:47:41 +00:00
utils = { path = "../utils" }
templates = { path = "../templates" }
2018-03-15 17:58:32 +00:00
search = { path = "../search" }
2018-02-02 20:35:04 +00:00
imageproc = { path = "../imageproc" }
link_checker = { path = "../link_checker" }
libs = { path = "../libs" }
content = { path = "../content" }
2017-07-01 07:47:41 +00:00
[dev-dependencies]
2018-04-25 08:28:23 +00:00
tempfile = "3"
2022-07-10 14:31:09 +00:00
path-slash = "0.2"