mdBook/Cargo.toml

60 lines
1.3 KiB
TOML
Raw Normal View History

2015-07-06 12:21:59 +00:00
[package]
name = "mdbook"
version = "0.0.22-pre"
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"]
license = "MPL-2.0"
2015-08-06 21:37:44 +00:00
readme = "README.md"
build = "build.rs"
2015-08-06 21:37:44 +00:00
exclude = [
"book-example/*",
"src/theme/stylus",
2015-08-06 21:37:44 +00:00
]
2015-07-06 19:12:24 +00:00
[dependencies]
2017-05-18 09:56:04 +00:00
clap = "2.24"
handlebars = "0.27"
2017-05-18 09:56:04 +00:00
serde = "1.0"
2017-05-18 17:32:08 +00:00
serde_derive = "1.0"
2017-06-24 15:48:50 +00:00
error-chain = "0.10.0"
2017-05-18 09:56:04 +00:00
serde_json = "1.0"
pulldown-cmark = "0.0.14"
log = "0.3"
2017-02-16 22:17:26 +00:00
env_logger = "0.4.0"
2017-05-18 09:56:04 +00:00
toml = { version = "0.4", features = ["serde"] }
2017-01-01 17:42:47 +00:00
open = "1.1"
2017-02-16 22:11:16 +00:00
regex = "0.2.1"
# Watch feature
2017-02-19 01:24:27 +00:00
notify = { version = "4.0", optional = true }
2016-03-19 16:45:58 +00:00
time = { version = "0.1.34", optional = true }
crossbeam = { version = "0.2.8", optional = true }
2016-04-02 02:46:05 +00:00
# Serve feature
iron = { version = "0.5", optional = true }
staticfile = { version = "0.4", optional = true }
2017-05-18 09:56:04 +00:00
ws = { version = "0.7", optional = true}
2016-04-02 02:46:05 +00:00
# Tests
[dev-dependencies]
tempdir = "0.3.4"
[build-dependencies]
error-chain = "0.10"
[features]
2016-04-02 02:46:05 +00:00
default = ["output", "watch", "serve"]
debug = []
output = []
regenerate-css = []
watch = ["notify", "time", "crossbeam"]
2016-04-02 18:04:51 +00:00
serve = ["iron", "staticfile", "ws"]
2015-08-06 10:38:48 +00:00
[[bin]]
doc = false
name = "mdbook"
path = "src/bin/mdbook.rs"