2016-12-06 05:51:33 +00:00
|
|
|
[package]
|
|
|
|
name = "gutenberg"
|
2018-06-22 13:14:12 +00:00
|
|
|
version = "0.3.4"
|
2018-01-25 11:18:21 +00:00
|
|
|
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
|
2016-12-06 05:51:33 +00:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
2018-03-16 18:11:08 +00:00
|
|
|
description = "A fast static site generator with everything built-in"
|
2016-12-06 05:51:33 +00:00
|
|
|
homepage = "https://github.com/Keats/gutenberg"
|
|
|
|
repository = "https://github.com/Keats/gutenberg"
|
|
|
|
keywords = ["static", "site", "generator", "blog"]
|
2017-07-16 01:12:54 +00:00
|
|
|
# build = "build.rs"
|
2017-07-15 04:24:31 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
clap = "2"
|
2016-12-06 05:51:33 +00:00
|
|
|
|
2017-03-14 12:25:45 +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"
|
2017-07-27 09:24:43 +00:00
|
|
|
# Used in init to ensure the url given as base_url is a valid one
|
|
|
|
url = "1.5"
|
2017-03-06 10:35:56 +00:00
|
|
|
# Below is for the serve cmd
|
2017-12-29 18:51:22 +00:00
|
|
|
staticfile = "0.5"
|
|
|
|
iron = "0.6"
|
|
|
|
mount = "0.4"
|
2017-03-06 10:35:56 +00:00
|
|
|
notify = "4"
|
2017-04-05 01:49:00 +00:00
|
|
|
ws = "0.7"
|
2018-01-22 17:11:25 +00:00
|
|
|
ctrlc = "3"
|
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" }
|
2018-01-29 17:40:12 +00:00
|
|
|
rebuild = { path = "components/rebuild" }
|
2017-07-01 07:47:41 +00:00
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"components/config",
|
|
|
|
"components/content",
|
|
|
|
"components/errors",
|
|
|
|
"components/front_matter",
|
2017-10-30 20:55:14 +00:00
|
|
|
"components/highlighting",
|
2017-07-01 07:47:41 +00:00
|
|
|
"components/pagination",
|
2018-01-29 17:40:12 +00:00
|
|
|
"components/rebuild",
|
2017-07-01 07:47:41 +00:00
|
|
|
"components/rendering",
|
|
|
|
"components/site",
|
|
|
|
"components/taxonomies",
|
|
|
|
"components/templates",
|
|
|
|
"components/utils",
|
2018-03-15 17:58:32 +00:00
|
|
|
"components/search",
|
2017-07-01 07:47:41 +00:00
|
|
|
]
|