zola/components/site/Cargo.toml

28 lines
615 B
TOML
Raw Normal View History

2017-07-01 07:47:41 +00:00
[package]
name = "site"
version = "0.1.0"
authors = ["Vincent Prouillet <vincent@wearewizards.io>"]
[dependencies]
tera = "0.10"
glob = "0.2"
walkdir = "1"
rayon = "0.8"
2017-07-04 23:27:27 +00:00
serde = "1.0"
serde_derive = "1.0"
2017-07-14 07:53:48 +00:00
sass-rs = "0.1"
#sass-rs = { git = "https://github.com/compass-rs/sass-rs.git" }
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" }
2017-07-06 13:19:15 +00:00
2017-07-01 07:47:41 +00:00
[dev-dependencies]
tempdir = "0.3"