2015-07-06 14:21:59 +02:00
|
|
|
[package]
|
|
|
|
name = "mdbook"
|
2016-08-02 00:58:08 +02:00
|
|
|
version = "0.0.14"
|
2015-07-06 14:21:59 +02:00
|
|
|
authors = ["Mathieu David <mathieudavid@mathieudavid.org>"]
|
2015-08-06 23:37:44 +02: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 16:13:41 +02:00
|
|
|
license = "MPL-2.0"
|
2015-08-06 23:37:44 +02:00
|
|
|
readme = "README.md"
|
2015-09-18 12:05:55 +02:00
|
|
|
build = "build.rs"
|
2015-08-06 23:37:44 +02:00
|
|
|
exclude = [
|
|
|
|
"book-example/*",
|
2015-09-27 14:38:37 +02:00
|
|
|
"src/theme/stylus",
|
2015-08-06 23:37:44 +02:00
|
|
|
]
|
2015-07-06 21:12:24 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2016-03-19 17:45:58 +01:00
|
|
|
clap = "2.2.1"
|
2016-08-01 14:06:08 +02:00
|
|
|
handlebars = "0.20.0"
|
2016-03-19 17:45:58 +01:00
|
|
|
rustc-serialize = "0.3.18"
|
2016-08-01 14:06:08 +02:00
|
|
|
pulldown-cmark = "0.0.8"
|
2015-08-03 18:06:01 +02:00
|
|
|
|
2015-11-09 14:31:00 +01:00
|
|
|
# Watch feature
|
2016-03-27 17:20:17 -05:00
|
|
|
notify = { version = "2.5.5", optional = true }
|
2016-03-19 17:45:58 +01:00
|
|
|
time = { version = "0.1.34", optional = true }
|
2016-03-01 18:32:43 +01:00
|
|
|
crossbeam = { version = "0.2.8", optional = true }
|
2015-11-09 14:31:00 +01:00
|
|
|
|
2016-04-02 04:46:05 +02:00
|
|
|
# Serve feature
|
2016-08-01 14:06:08 +02:00
|
|
|
iron = { version = "0.4", optional = true }
|
|
|
|
staticfile = { version = "0.3", optional = true }
|
|
|
|
ws = { version = "0.5.1", optional = true}
|
2016-04-02 04:46:05 +02:00
|
|
|
|
2015-12-29 13:40:13 +01:00
|
|
|
|
2015-11-09 14:31:00 +01:00
|
|
|
# Tests
|
2015-08-06 15:04:27 +02:00
|
|
|
[dev-dependencies]
|
2016-03-01 18:32:43 +01:00
|
|
|
tempdir = "0.3.4"
|
2015-08-06 15:04:27 +02:00
|
|
|
|
2015-09-27 14:38:37 +02:00
|
|
|
|
2015-08-03 18:06:01 +02:00
|
|
|
[features]
|
2016-04-02 04:46:05 +02:00
|
|
|
default = ["output", "watch", "serve"]
|
2015-08-03 18:06:01 +02:00
|
|
|
debug = []
|
2015-08-04 17:13:24 +02:00
|
|
|
output = []
|
2015-09-24 15:37:20 +02:00
|
|
|
regenerate-css = []
|
2015-12-29 13:40:13 +01:00
|
|
|
watch = ["notify", "time", "crossbeam"]
|
2016-04-02 20:04:51 +02:00
|
|
|
serve = ["iron", "staticfile", "ws"]
|
2015-08-06 12:38:48 +02:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
doc = false
|
|
|
|
name = "mdbook"
|
|
|
|
path = "src/bin/mdbook.rs"
|