mdBook/Cargo.toml

51 lines
1.1 KiB
TOML
Raw Normal View History

2015-07-06 20:21:59 +08:00
[package]
name = "mdbook"
version = "0.0.12"
2015-07-06 20:21:59 +08:00
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"]
license = "MPL-2.0"
2015-08-07 05:37:44 +08:00
readme = "README.md"
build = "build.rs"
2015-08-07 05:37:44 +08:00
exclude = [
"book-example/*",
"src/theme/stylus",
2015-08-07 05:37:44 +08:00
]
2015-07-07 03:12:24 +08:00
[dependencies]
2016-03-20 00:45:58 +08:00
clap = "2.2.1"
handlebars = "0.16.0"
rustc-serialize = "0.3.18"
pulldown-cmark = "0.0.7"
# Watch feature
notify = { version = "2.5.5", optional = true }
2016-03-20 00:45:58 +08:00
time = { version = "0.1.34", optional = true }
crossbeam = { version = "0.2.8", optional = true }
2016-04-02 10:46:05 +08:00
# Serve feature
iron = { version = "0.3", optional = true }
staticfile = { version = "0.2", optional = true }
2016-04-03 02:04:51 +08:00
ws = { version = "0.4.6", optional = true}
2016-04-02 10:46:05 +08:00
# Tests
[dev-dependencies]
tempdir = "0.3.4"
[features]
2016-04-02 10:46:05 +08:00
default = ["output", "watch", "serve"]
debug = []
output = []
regenerate-css = []
watch = ["notify", "time", "crossbeam"]
2016-04-03 02:04:51 +08:00
serve = ["iron", "staticfile", "ws"]
2015-08-06 18:38:48 +08:00
[[bin]]
doc = false
name = "mdbook"
path = "src/bin/mdbook.rs"