51 lines
1.1 KiB
TOML
51 lines
1.1 KiB
TOML
[package]
|
|
name = "mdbook"
|
|
version = "0.0.11"
|
|
authors = ["Mathieu David <mathieudavid@mathieudavid.org>"]
|
|
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"
|
|
readme = "README.md"
|
|
build = "build.rs"
|
|
exclude = [
|
|
"book-example/*",
|
|
"src/theme/stylus",
|
|
]
|
|
|
|
[dependencies]
|
|
clap = "2.2.1"
|
|
handlebars = "0.16.0"
|
|
rustc-serialize = "0.3.18"
|
|
pulldown-cmark = "0.0.7"
|
|
|
|
# Watch feature
|
|
notify = { version = "2.5.4", optional = true }
|
|
time = { version = "0.1.34", optional = true }
|
|
crossbeam = { version = "0.2.8", optional = true }
|
|
|
|
# Serve feature
|
|
iron = { version = "0.3", optional = true }
|
|
staticfile = { version = "0.2", optional = true }
|
|
websocket = { version = "0.16.1", optional = true}
|
|
|
|
|
|
# Tests
|
|
[dev-dependencies]
|
|
tempdir = "0.3.4"
|
|
|
|
|
|
[features]
|
|
default = ["output", "watch", "serve"]
|
|
debug = []
|
|
output = []
|
|
regenerate-css = []
|
|
watch = ["notify", "time", "crossbeam"]
|
|
serve = ["iron", "staticfile", "websocket"]
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "mdbook"
|
|
path = "src/bin/mdbook.rs"
|