2016-12-06 05:51:33 +00:00
|
|
|
[package]
|
|
|
|
name = "gutenberg"
|
2017-03-10 12:36:43 +00:00
|
|
|
version = "0.0.1"
|
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"]
|
|
|
|
|
|
|
|
[dependencies]
|
2017-03-03 08:12:40 +00:00
|
|
|
error-chain = "0.10"
|
2016-12-06 05:51:33 +00:00
|
|
|
clap = "2.19"
|
2016-12-06 08:27:03 +00:00
|
|
|
walkdir = "1"
|
|
|
|
pulldown-cmark = "0"
|
2017-02-23 08:34:57 +00:00
|
|
|
regex = "0.2"
|
2016-12-06 08:27:03 +00:00
|
|
|
lazy_static = "0.2"
|
2016-12-11 06:05:03 +00:00
|
|
|
glob = "0.2"
|
2017-02-23 08:34:57 +00:00
|
|
|
serde = "0.9"
|
|
|
|
serde_json = "0.9"
|
|
|
|
serde_derive = "0.9"
|
2017-03-09 07:34:12 +00:00
|
|
|
tera = { git = "https://github.com/Keats/tera", branch = "reload" }
|
2017-03-07 07:43:27 +00:00
|
|
|
# tera = "0.8"
|
2017-03-03 08:12:40 +00:00
|
|
|
slug = "0.1"
|
2017-02-23 08:34:57 +00:00
|
|
|
syntect = "1"
|
2017-03-06 11:58:31 +00:00
|
|
|
chrono = "0.3"
|
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"
|
|
|
|
ws = "0.6"
|
|
|
|
|
2016-12-06 05:51:33 +00:00
|
|
|
[dependencies.toml]
|
2017-02-23 08:34:57 +00:00
|
|
|
version = "0.3"
|
2016-12-06 05:51:33 +00:00
|
|
|
default-features = false
|
|
|
|
features = ["serde"]
|
|
|
|
|
|
|
|
|