2015-07-06 12:21:59 +00:00
|
|
|
[package]
|
|
|
|
name = "mdbook"
|
2015-09-27 12:38:37 +00:00
|
|
|
version = "0.0.2"
|
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-09-27 12:38:37 +00:00
|
|
|
"src/theme/stylus",
|
2015-08-06 21:37:44 +00:00
|
|
|
]
|
2015-07-06 19:12:24 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2015-08-01 04:59:05 +00:00
|
|
|
clap = "*"
|
2015-07-18 22:08:38 +00:00
|
|
|
handlebars = "*"
|
|
|
|
rustc-serialize = "*"
|
2015-07-28 19:01:13 +00:00
|
|
|
pulldown-cmark = "*"
|
2015-11-09 13:31:00 +00:00
|
|
|
crossbeam = "^0.1.5"
|
2015-08-03 16:06:01 +00:00
|
|
|
|
2015-11-09 13:31:00 +00:00
|
|
|
# Watch feature
|
|
|
|
[dependencies.notify]
|
|
|
|
notify = "^2.4.1"
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
[dependencies.time]
|
|
|
|
time = "^0.1.33"
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
# Tests
|
2015-08-06 13:04:27 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
tempdir = "*"
|
|
|
|
|
2015-09-27 12:38:37 +00:00
|
|
|
|
2015-08-03 16:06:01 +00:00
|
|
|
[features]
|
2015-09-27 12:38:37 +00:00
|
|
|
default = ["output", "watch"]
|
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-11-09 13:31:00 +00:00
|
|
|
watch = ["notify", "time"]
|
2015-08-06 10:38:48 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
doc = false
|
|
|
|
name = "mdbook"
|
|
|
|
path = "src/bin/mdbook.rs"
|