2015-07-06 12:21:59 +00:00
|
|
|
[package]
|
|
|
|
name = "mdbook"
|
2019-01-18 15:43:59 +00:00
|
|
|
version = "0.2.4-alpha.0"
|
2018-08-02 18:31:58 +00:00
|
|
|
authors = [
|
2018-12-25 12:10:45 +00:00
|
|
|
"Mathieu David <mathieudavid@mathieudavid.org>",
|
2018-08-02 18:31:58 +00:00
|
|
|
"Michael-F-Bryan <michaelfbryan@gmail.com>",
|
|
|
|
"Matt Ickstadt <mattico8@gmail.com>"
|
|
|
|
]
|
2017-11-22 10:35:18 +00:00
|
|
|
documentation = "http://rust-lang-nursery.github.io/mdBook/index.html"
|
2019-05-25 18:50:41 +00:00
|
|
|
edition = "2018"
|
|
|
|
exclude = ["/book-example/*"]
|
2015-08-06 21:37:44 +00:00
|
|
|
keywords = ["book", "gitbook", "rustbook", "markdown"]
|
2015-08-11 14:13:41 +00:00
|
|
|
license = "MPL-2.0"
|
2015-08-06 21:37:44 +00:00
|
|
|
readme = "README.md"
|
2019-05-25 18:50:41 +00:00
|
|
|
repository = "https://github.com/rust-lang-nursery/mdBook"
|
|
|
|
description = "Creates a book from markdown files"
|
2015-07-06 19:12:24 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2017-05-18 09:56:04 +00:00
|
|
|
clap = "2.24"
|
2017-12-30 10:43:46 +00:00
|
|
|
chrono = "0.4"
|
2019-04-28 17:54:01 +00:00
|
|
|
handlebars = { version = "1.0", default-features = false, features = ["no_dir_source"] }
|
2017-05-18 09:56:04 +00:00
|
|
|
serde = "1.0"
|
2017-05-18 17:32:08 +00:00
|
|
|
serde_derive = "1.0"
|
2018-07-19 10:35:34 +00:00
|
|
|
error-chain = "0.12"
|
2017-05-18 09:56:04 +00:00
|
|
|
serde_json = "1.0"
|
2018-03-11 14:17:38 +00:00
|
|
|
pulldown-cmark = "0.1.2"
|
2017-12-30 10:43:46 +00:00
|
|
|
lazy_static = "1.0"
|
|
|
|
log = "0.4"
|
2019-05-26 12:05:42 +00:00
|
|
|
env_logger = "0.6"
|
2018-10-20 04:50:35 +00:00
|
|
|
toml = "0.4.8"
|
2018-01-21 14:35:11 +00:00
|
|
|
memchr = "2.0"
|
2017-01-01 17:42:47 +00:00
|
|
|
open = "1.1"
|
2018-05-13 10:35:17 +00:00
|
|
|
regex = "1.0.0"
|
2018-03-26 23:47:37 +00:00
|
|
|
tempfile = "3.0"
|
2019-05-26 12:05:42 +00:00
|
|
|
itertools = "0.8"
|
2018-01-21 14:35:11 +00:00
|
|
|
shlex = "0.1"
|
2018-07-19 10:35:34 +00:00
|
|
|
toml-query = "0.7"
|
2015-08-03 16:06:01 +00:00
|
|
|
|
2015-11-09 13:31:00 +00:00
|
|
|
# Watch feature
|
2017-02-19 01:24:27 +00:00
|
|
|
notify = { version = "4.0", optional = true }
|
2015-11-09 13:31:00 +00:00
|
|
|
|
2016-04-02 02:46:05 +00:00
|
|
|
# Serve feature
|
2018-03-20 12:22:35 +00:00
|
|
|
iron = { version = "0.6", optional = true }
|
|
|
|
staticfile = { version = "0.5", optional = true }
|
2019-05-26 12:05:42 +00:00
|
|
|
ws = { version = "0.8", optional = true}
|
2016-04-02 02:46:05 +00:00
|
|
|
|
2018-03-07 13:02:06 +00:00
|
|
|
# Search feature
|
2018-07-19 04:11:54 +00:00
|
|
|
elasticlunr-rs = { version = "2.3", optional = true, default-features = false }
|
2019-05-26 12:05:42 +00:00
|
|
|
ammonia = { version = "2.1", optional = true }
|
2018-03-07 13:02:06 +00:00
|
|
|
|
2017-11-16 07:51:12 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
select = "0.4"
|
2019-05-26 12:05:42 +00:00
|
|
|
pretty_assertions = "0.6"
|
2017-12-30 10:43:46 +00:00
|
|
|
walkdir = "2.0"
|
2019-05-05 17:12:53 +00:00
|
|
|
# FIXME(issue #898)
|
|
|
|
pulldown-cmark-to-cmark = "=1.1.0"
|
2017-11-16 07:51:12 +00:00
|
|
|
|
2015-08-03 16:06:01 +00:00
|
|
|
[features]
|
2018-03-07 13:02:06 +00:00
|
|
|
default = ["output", "watch", "serve", "search"]
|
2015-08-03 16:06:01 +00:00
|
|
|
debug = []
|
2015-08-04 15:13:24 +00:00
|
|
|
output = []
|
2018-07-24 21:15:20 +00:00
|
|
|
watch = ["notify"]
|
2016-04-02 18:04:51 +00:00
|
|
|
serve = ["iron", "staticfile", "ws"]
|
2018-03-07 13:02:06 +00:00
|
|
|
search = ["elasticlunr-rs", "ammonia"]
|
2015-08-06 10:38:48 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
doc = false
|
|
|
|
name = "mdbook"
|