2015-07-06 12:21:59 +00:00
|
|
|
[package]
|
|
|
|
name = "mdbook"
|
2016-02-16 07:57:55 +00:00
|
|
|
version = "0.0.9"
|
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-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"
|
2016-02-15 18:25:46 +00:00
|
|
|
pulldown-cmark = "~0.0.6"
|
2015-08-03 16:06:01 +00:00
|
|
|
|
2015-11-09 13:31:00 +00:00
|
|
|
# Watch feature
|
2016-02-15 20:18:43 +00:00
|
|
|
notify = { version = "~2.4.1", optional = true }
|
|
|
|
time = { version = "~0.1.33", optional = true }
|
|
|
|
crossbeam = { version = "~0.2.8", optional = true }
|
2015-11-09 13:31:00 +00:00
|
|
|
|
2015-12-29 12:40:13 +00:00
|
|
|
|
2015-11-09 13:31:00 +00:00
|
|
|
# Tests
|
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-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-12-29 12:40:13 +00:00
|
|
|
watch = ["notify", "time", "crossbeam"]
|
2015-08-06 10:38:48 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
doc = false
|
|
|
|
name = "mdbook"
|
|
|
|
path = "src/bin/mdbook.rs"
|