79 lines
1.8 KiB
TOML
79 lines
1.8 KiB
TOML
[package]
|
|
name = "mdbook"
|
|
version = "0.1.4-alpha.0"
|
|
authors = ["Mathieu David <mathieudavid@mathieudavid.org>", "Michael-F-Bryan <michaelfbryan@gmail.com>"]
|
|
description = "create books from markdown files (like Gitbook)"
|
|
documentation = "http://rust-lang-nursery.github.io/mdBook/index.html"
|
|
repository = "https://github.com/rust-lang-nursery/mdBook"
|
|
keywords = ["book", "gitbook", "rustbook", "markdown"]
|
|
license = "MPL-2.0"
|
|
readme = "README.md"
|
|
build = "build.rs"
|
|
exclude = [
|
|
"book-example/*",
|
|
"src/theme/stylus/**",
|
|
]
|
|
|
|
[package.metadata.release]
|
|
sign-commit = true
|
|
push-remote = "upstream"
|
|
tag-prefix = "v"
|
|
|
|
[dependencies]
|
|
clap = "2.24"
|
|
chrono = "0.4"
|
|
handlebars = "0.29"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
error-chain = "0.11"
|
|
serde_json = "1.0"
|
|
pulldown-cmark = "0.1.2"
|
|
lazy_static = "1.0"
|
|
log = "0.4"
|
|
env_logger = "0.5.0-rc.1"
|
|
toml = "0.4"
|
|
memchr = "2.0"
|
|
open = "1.1"
|
|
regex = "0.2.1"
|
|
tempdir = "0.3.4"
|
|
itertools = "0.7"
|
|
shlex = "0.1"
|
|
toml-query = "0.6"
|
|
|
|
# Watch feature
|
|
notify = { version = "4.0", optional = true }
|
|
time = { version = "0.1.34", optional = true }
|
|
crossbeam = { version = "0.3", optional = true }
|
|
|
|
# Serve feature
|
|
iron = { version = "0.5", optional = true }
|
|
staticfile = { version = "0.4", optional = true }
|
|
ws = { version = "0.7", optional = true}
|
|
|
|
# Search feature
|
|
elasticlunr-rs = { version = "0.2", optional = true }
|
|
ammonia = { version = "1.1", optional = true }
|
|
|
|
[build-dependencies]
|
|
error-chain = "0.11"
|
|
|
|
[dev-dependencies]
|
|
select = "0.4"
|
|
pretty_assertions = "0.4"
|
|
walkdir = "2.0"
|
|
pulldown-cmark-to-cmark = "1.1.0"
|
|
|
|
[features]
|
|
default = ["output", "watch", "serve", "search"]
|
|
debug = []
|
|
output = []
|
|
regenerate-css = []
|
|
watch = ["notify", "time", "crossbeam"]
|
|
serve = ["iron", "staticfile", "ws"]
|
|
search = ["elasticlunr-rs", "ammonia"]
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "mdbook"
|
|
path = "src/bin/mdbook.rs"
|