zola/Cargo.toml

51 lines
1.1 KiB
TOML
Raw Normal View History

2016-12-06 05:51:33 +00:00
[package]
name = "gutenberg"
2017-07-14 12:53:41 +00:00
version = "0.1.0"
2016-12-06 05:51:33 +00:00
authors = ["Vincent Prouillet <vincent@wearewizards.io>"]
license = "MIT"
readme = "README.md"
description = "Static site generator"
homepage = "https://github.com/Keats/gutenberg"
repository = "https://github.com/Keats/gutenberg"
keywords = ["static", "site", "generator", "blog"]
2017-07-15 04:24:31 +00:00
build = "build.rs"
[build-dependencies]
clap = "2"
2016-12-06 05:51:33 +00:00
[[bin]]
name = "gutenberg"
2016-12-06 05:51:33 +00:00
[dependencies]
2017-03-20 06:32:43 +00:00
clap = "2"
2017-06-22 07:28:52 +00:00
chrono = "0.4"
2017-05-12 05:01:10 +00:00
toml = "0.4"
2017-03-25 06:52:51 +00:00
term-painter = "0.2"
2016-12-06 05:51:33 +00:00
2017-03-06 10:35:56 +00:00
# Below is for the serve cmd
staticfile = "0.4"
iron = "0.5"
mount = "0.3"
notify = "4"
2017-04-05 01:49:00 +00:00
ws = "0.7"
2017-03-06 10:35:56 +00:00
2017-07-01 07:47:41 +00:00
site = { path = "components/site" }
errors = { path = "components/errors" }
content = { path = "components/content" }
front_matter = { path = "components/front_matter" }
utils = { path = "components/utils" }
[workspace]
members = [
"components/config",
"components/content",
"components/errors",
"components/front_matter",
"components/pagination",
"components/rendering",
"components/site",
"components/taxonomies",
"components/templates",
"components/utils",
]