zola/Cargo.toml
2017-04-05 20:31:10 +09:00

44 lines
946 B
TOML

[package]
name = "gutenberg"
version = "0.0.2"
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"
[dependencies]
error-chain = "0.10"
clap = "2"
walkdir = "1"
pulldown-cmark = "0"
regex = "0.2"
lazy_static = "0.2"
glob = "0.2"
serde = "0.9"
serde_derive = "0.9"
# tera = { path = "../tera" }
# tera = { git = "https://github.com/Keats/tera" }
tera = "0.9"
slug = "0.1"
syntect = { version = "1", features = ["static-onig"] }
chrono = "0.3"
toml = { version = "0.3", default-features = false, features = ["serde"]}
term-painter = "0.2"
base64 = "0.4"
# Below is for the serve cmd
staticfile = "0.4"
iron = "0.5"
mount = "0.3"
notify = "4"
ws = "0.7"
[dev-dependencies]
tempdir = "0.3"