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"]
|
2015-08-11 22:13:41 +08:00
|
|
|
license = "MPL-2.0"
|
2015-08-07 05:37:44 +08:00
|
|
|
readme = "README.md"
|
2015-09-18 18:05:55 +08:00
|
|
|
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 = "*"
|
2015-07-19 06:08:38 +08:00
|
|
|
handlebars = "*"
|
|
|
|
rustc-serialize = "*"
|
2015-07-29 03:01:13 +08:00
|
|
|
pulldown-cmark = "*"
|
2015-08-04 00:06:01 +08:00
|
|
|
|
2015-08-06 21:04:27 +08:00
|
|
|
[dev-dependencies]
|
|
|
|
tempdir = "*"
|
|
|
|
|
2015-08-04 00:06:01 +08:00
|
|
|
[features]
|
2015-08-04 23:13:24 +08:00
|
|
|
default = ["output"]
|
2015-08-04 00:06:01 +08:00
|
|
|
debug = []
|
2015-08-04 23:13:24 +08:00
|
|
|
output = []
|
2015-09-24 21:37:20 +08:00
|
|
|
regenerate-css = []
|
2015-08-06 18:38:48 +08:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
doc = false
|
|
|
|
name = "mdbook"
|
|
|
|
path = "src/bin/mdbook.rs"
|