zola/Cargo.toml

45 lines
947 B
TOML
Raw Normal View History

2016-12-06 05:51:33 +00:00
[package]
name = "gutenberg"
2017-04-23 06:32:08 +00:00
version = "0.0.4"
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"]
[[bin]]
name = "gutenberg"
2016-12-06 05:51:33 +00:00
[dependencies]
error-chain = "0.10"
2017-03-20 06:32:43 +00:00
clap = "2"
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"
glob = "0.2"
2017-04-21 05:09:22 +00:00
serde = "1.0"
serde_derive = "1.0"
# tera = { path = "../tera" }
2017-04-05 01:49:00 +00:00
# tera = { git = "https://github.com/Keats/tera" }
2017-04-21 05:09:22 +00:00
tera = "0.10"
slug = "0.1"
2017-04-05 01:49:00 +00:00
syntect = { version = "1", features = ["static-onig"] }
2017-03-06 11:58:31 +00:00
chrono = "0.3"
# toml = "0.4"
toml = { git = "https://github.com/alexcrichton/toml-rs" }
2017-03-25 06:52:51 +00:00
term-painter = "0.2"
2017-04-23 06:32:08 +00:00
base64 = "0.5"
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
[dev-dependencies]
tempdir = "0.3"