2015-07-06 12:21:59 +00:00
|
|
|
[package]
|
|
|
|
name = "mdbook"
|
2021-05-10 16:38:43 +00:00
|
|
|
version = "0.4.8"
|
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>"
|
|
|
|
]
|
2019-10-29 13:04:16 +00:00
|
|
|
documentation = "http://rust-lang.github.io/mdBook/index.html"
|
2019-05-25 18:50:41 +00:00
|
|
|
edition = "2018"
|
2020-09-23 01:16:09 +00:00
|
|
|
exclude = ["/guide/*"]
|
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-10-29 13:04:16 +00:00
|
|
|
repository = "https://github.com/rust-lang/mdBook"
|
2019-05-25 18:50:41 +00:00
|
|
|
description = "Creates a book from markdown files"
|
2015-07-06 19:12:24 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-05-20 21:32:00 +00:00
|
|
|
anyhow = "1.0.28"
|
2017-12-30 10:43:46 +00:00
|
|
|
chrono = "0.4"
|
2019-05-30 15:23:42 +00:00
|
|
|
clap = "2.24"
|
2020-05-20 21:32:00 +00:00
|
|
|
env_logger = "0.7.1"
|
2020-01-24 03:01:44 +00:00
|
|
|
handlebars = "3.0"
|
2017-12-30 10:43:46 +00:00
|
|
|
lazy_static = "1.0"
|
|
|
|
log = "0.4"
|
2018-01-21 14:35:11 +00:00
|
|
|
memchr = "2.0"
|
2017-01-01 17:42:47 +00:00
|
|
|
open = "1.1"
|
2020-05-20 21:32:00 +00:00
|
|
|
pulldown-cmark = "0.7.0"
|
2018-05-13 10:35:17 +00:00
|
|
|
regex = "1.0.0"
|
2019-05-30 15:23:42 +00:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|
2021-02-21 23:15:16 +00:00
|
|
|
shlex = "1"
|
2019-05-30 15:23:42 +00:00
|
|
|
tempfile = "3.0"
|
2019-05-31 16:00:15 +00:00
|
|
|
toml = "0.5.1"
|
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 }
|
2019-10-04 12:59:17 +00:00
|
|
|
gitignore = { version = "1.0", optional = true }
|
2015-11-09 13:31:00 +00:00
|
|
|
|
2016-04-02 02:46:05 +00:00
|
|
|
# Serve feature
|
2020-05-20 21:32:00 +00:00
|
|
|
futures-util = { version = "0.3.4", optional = true }
|
|
|
|
tokio = { version = "0.2.18", features = ["macros"], optional = true }
|
|
|
|
warp = { version = "0.2.2", default-features = false, features = ["websocket"], 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-09-21 09:22:52 +00:00
|
|
|
ammonia = { version = "3", optional = true }
|
2018-03-07 13:02:06 +00:00
|
|
|
|
2017-11-16 07:51:12 +00:00
|
|
|
[dev-dependencies]
|
2020-06-30 17:11:09 +00:00
|
|
|
select = "0.5"
|
2021-04-26 15:08:53 +00:00
|
|
|
semver = "0.11.0"
|
2019-05-26 12:05:42 +00:00
|
|
|
pretty_assertions = "0.6"
|
2017-12-30 10:43:46 +00:00
|
|
|
walkdir = "2.0"
|
2017-11-16 07:51:12 +00:00
|
|
|
|
2015-08-03 16:06:01 +00:00
|
|
|
[features]
|
2020-05-20 21:32:00 +00:00
|
|
|
default = ["watch", "serve", "search"]
|
2019-10-04 12:59:17 +00:00
|
|
|
watch = ["notify", "gitignore"]
|
2020-05-20 21:32:00 +00:00
|
|
|
serve = ["futures-util", "tokio", "warp"]
|
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"
|