]> git.proxmox.com Git - rustc.git/blame - src/vendor/mdbook/Cargo.toml
New upstream version 1.18.0+dfsg1
[rustc.git] / src / vendor / mdbook / Cargo.toml
CommitLineData
cc61c64b
XL
1[package]
2name = "mdbook"
3version = "0.0.19"
4authors = ["Mathieu David <mathieudavid@mathieudavid.org>"]
5description = "create books from markdown files (like Gitbook)"
6documentation = "http://azerupi.github.io/mdBook/index.html"
7repository = "https://github.com/azerupi/mdBook"
8keywords = ["book", "gitbook", "rustbook", "markdown"]
9license = "MPL-2.0"
10readme = "README.md"
11build = "build.rs"
12exclude = [
13 "book-example/*",
14 "src/theme/stylus",
15]
16
17[dependencies]
18clap = "2.19.2"
19handlebars = { version = "0.25.0", features = ["serde_type"] }
20serde = "0.9"
21serde_json = "0.9"
22pulldown-cmark = "0.0.8"
23log = "0.3"
24env_logger = "0.4.0"
25toml = { version = "0.3", features = ["serde"] }
26open = "1.1"
27regex = "0.2.1"
28
29# Watch feature
30notify = { version = "4.0", optional = true }
31time = { version = "0.1.34", optional = true }
32crossbeam = { version = "0.2.8", optional = true }
33
34# Serve feature
35iron = { version = "0.5", optional = true }
36staticfile = { version = "0.4", optional = true }
37ws = { version = "0.6", optional = true}
38
39# Tests
40[dev-dependencies]
41tempdir = "0.3.4"
42
43[features]
44default = ["output", "watch", "serve"]
45debug = []
46output = []
47regenerate-css = []
48watch = ["notify", "time", "crossbeam"]
49serve = ["iron", "staticfile", "ws"]
50
51[[bin]]
52doc = false
53name = "mdbook"
54path = "src/bin/mdbook.rs"