zola/components/site/Cargo.toml

26 lines
564 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>"]
2017-07-01 07:47:41 +00:00
[dependencies]
2018-02-15 09:41:49 +00:00
tera = "0.11"
2017-07-01 07:47:41 +00:00
glob = "0.2"
2018-02-15 09:41:49 +00:00
rayon = "1"
serde = "1"
serde_derive = "1"
2017-07-24 08:46:29 +00:00
sass-rs = "0.2"
2017-07-01 07:47:41 +00:00
errors = { path = "../errors" }
config = { path = "../config" }
utils = { path = "../utils" }
templates = { path = "../templates" }
front_matter = { path = "../front_matter" }
pagination = { path = "../pagination" }
taxonomies = { path = "../taxonomies" }
content = { path = "../content" }
2018-03-15 17:58:32 +00:00
search = { path = "../search" }
2017-07-01 07:47:41 +00:00
[dev-dependencies]
2018-04-25 08:28:23 +00:00
tempfile = "3"