2015-07-06 12:21:59 +00:00
|
|
|
[package]
|
|
|
|
name = "mdbook"
|
2015-12-11 21:17:05 +00:00
|
|
|
version = "0.0.4"
|
2015-07-06 12:21:59 +00:00
|
|
|
authors = ["Mathieu David <mathieudavid@mathieudavid.org>"]
|
2015-08-06 21:37:44 +00: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 14:13:41 +00:00
|
|
|
license = "MPL-2.0"
|
2015-08-06 21:37:44 +00:00
|
|
|
readme = "README.md"
|
2015-09-18 10:05:55 +00:00
|
|
|
build = "build.rs"
|
2015-08-06 21:37:44 +00:00
|
|
|
exclude = [
|
|
|
|
"book-example/*",
|
|
|
|
]
|
2015-07-06 19:12:24 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2015-11-20 13:41:16 +00:00
|
|
|
clap = "~1.5.3"
|
2015-12-15 17:58:34 +00:00
|
|
|
handlebars = "~0.12.0"
|
2015-11-20 13:41:16 +00:00
|
|
|
rustc-serialize = "~0.3.16"
|
|
|
|
pulldown-cmark = "~0.0.3"
|
2015-08-03 16:06:01 +00:00
|
|
|
|
2015-08-06 13:04:27 +00:00
|
|
|
[dev-dependencies]
|
2015-11-20 13:41:16 +00:00
|
|
|
tempdir = "~0.3.4"
|
2015-08-06 13:04:27 +00:00
|
|
|
|
2015-08-03 16:06:01 +00:00
|
|
|
[features]
|
2015-08-04 15:13:24 +00:00
|
|
|
default = ["output"]
|
2015-08-03 16:06:01 +00:00
|
|
|
debug = []
|
2015-08-04 15:13:24 +00:00
|
|
|
output = []
|
2015-09-24 13:37:20 +00:00
|
|
|
regenerate-css = []
|
2015-08-06 10:38:48 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
doc = false
|
|
|
|
name = "mdbook"
|
|
|
|
path = "src/bin/mdbook.rs"
|