mdBook/Cargo.toml

35 lines
690 B
TOML
Raw Normal View History

2015-07-06 20:21:59 +08:00
[package]
name = "mdbook"
version = "0.0.1"
authors = ["Mathieu David <mathieudavid@mathieudavid.org>"]
2015-08-07 05:37:44 +08:00
description = "create books from markdown files (like Gitbook)"
documentation = "http://azerupi.github.io/mdBook/index.html"
repository = "https://github.com/azerupi/mdBook"
keywords = ["book", "gitbook", "rustbook", "markdown"]
license = "MPL-2.0"
2015-08-07 05:37:44 +08:00
readme = "README.md"
build = "build.rs"
2015-08-07 05:37:44 +08:00
exclude = [
"book-example/*",
]
2015-07-07 03:12:24 +08:00
[dependencies]
2015-08-01 12:59:05 +08:00
clap = "*"
handlebars = "*"
rustc-serialize = "*"
pulldown-cmark = "*"
[dev-dependencies]
tempdir = "*"
[features]
default = ["output"]
debug = []
output = []
regenerate-css = []
2015-08-06 18:38:48 +08:00
[[bin]]
doc = false
name = "mdbook"
path = "src/bin/mdbook.rs"