2015-07-06 20:21:59 +08:00
|
|
|
[package]
|
|
|
|
name = "mdbook"
|
2021-08-02 23:19:34 +08:00
|
|
|
version = "0.4.12"
|
2018-08-03 02:31:58 +08:00
|
|
|
authors = [
|
2018-12-25 20:10:45 +08:00
|
|
|
"Mathieu David <mathieudavid@mathieudavid.org>",
|
2018-08-03 02:31:58 +08:00
|
|
|
"Michael-F-Bryan <michaelfbryan@gmail.com>",
|
|
|
|
"Matt Ickstadt <mattico8@gmail.com>"
|
|
|
|
]
|
2019-10-29 21:04:16 +08:00
|
|
|
documentation = "http://rust-lang.github.io/mdBook/index.html"
|
2019-05-26 02:50:41 +08:00
|
|
|
edition = "2018"
|
2020-09-23 09:16:09 +08:00
|
|
|
exclude = ["/guide/*"]
|
2015-08-07 05:37:44 +08:00
|
|
|
keywords = ["book", "gitbook", "rustbook", "markdown"]
|
2015-08-11 22:13:41 +08:00
|
|
|
license = "MPL-2.0"
|
2015-08-07 05:37:44 +08:00
|
|
|
readme = "README.md"
|
2019-10-29 21:04:16 +08:00
|
|
|
repository = "https://github.com/rust-lang/mdBook"
|
2019-05-26 02:50:41 +08:00
|
|
|
description = "Creates a book from markdown files"
|
2015-07-07 03:12:24 +08:00
|
|
|
|
|
|
|
[dependencies]
|
2020-05-21 05:32:00 +08:00
|
|
|
anyhow = "1.0.28"
|
2017-12-30 18:43:46 +08:00
|
|
|
chrono = "0.4"
|
2019-05-30 23:23:42 +08:00
|
|
|
clap = "2.24"
|
2020-05-21 05:32:00 +08:00
|
|
|
env_logger = "0.7.1"
|
2021-05-26 23:11:01 +08:00
|
|
|
handlebars = "4.0"
|
2017-12-30 18:43:46 +08:00
|
|
|
lazy_static = "1.0"
|
|
|
|
log = "0.4"
|
2018-01-21 22:35:11 +08:00
|
|
|
memchr = "2.0"
|
2021-09-07 03:52:43 +08:00
|
|
|
open = "2.0"
|
2020-05-21 05:32:00 +08:00
|
|
|
pulldown-cmark = "0.7.0"
|
2018-05-13 18:35:17 +08:00
|
|
|
regex = "1.0.0"
|
2019-05-30 23:23:42 +08:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|
2021-02-22 07:15:16 +08:00
|
|
|
shlex = "1"
|
2019-05-30 23:23:42 +08:00
|
|
|
tempfile = "3.0"
|
2019-06-01 00:00:15 +08:00
|
|
|
toml = "0.5.1"
|
2015-08-04 00:06:01 +08:00
|
|
|
|
2015-11-09 21:31:00 +08:00
|
|
|
# Watch feature
|
2017-02-19 09:24:27 +08:00
|
|
|
notify = { version = "4.0", optional = true }
|
2019-10-04 20:59:17 +08:00
|
|
|
gitignore = { version = "1.0", optional = true }
|
2015-11-09 21:31:00 +08:00
|
|
|
|
2016-04-02 10:46:05 +08:00
|
|
|
# Serve feature
|
2020-05-21 05:32:00 +08:00
|
|
|
futures-util = { version = "0.3.4", optional = true }
|
2021-07-26 10:14:40 +08:00
|
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"], optional = true }
|
|
|
|
warp = { version = "0.3.1", default-features = false, features = ["websocket"], optional = true }
|
2016-04-02 10:46:05 +08:00
|
|
|
|
2018-03-07 21:02:06 +08:00
|
|
|
# Search feature
|
2018-07-19 12:11:54 +08:00
|
|
|
elasticlunr-rs = { version = "2.3", optional = true, default-features = false }
|
2019-09-21 17:22:52 +08:00
|
|
|
ammonia = { version = "3", optional = true }
|
2018-03-07 21:02:06 +08:00
|
|
|
|
2017-11-16 15:51:12 +08:00
|
|
|
[dev-dependencies]
|
2020-07-01 01:11:09 +08:00
|
|
|
select = "0.5"
|
2021-04-26 23:08:53 +08:00
|
|
|
semver = "0.11.0"
|
2019-05-26 20:05:42 +08:00
|
|
|
pretty_assertions = "0.6"
|
2017-12-30 18:43:46 +08:00
|
|
|
walkdir = "2.0"
|
2017-11-16 15:51:12 +08:00
|
|
|
|
2015-08-04 00:06:01 +08:00
|
|
|
[features]
|
2020-05-21 05:32:00 +08:00
|
|
|
default = ["watch", "serve", "search"]
|
2019-10-04 20:59:17 +08:00
|
|
|
watch = ["notify", "gitignore"]
|
2020-05-21 05:32:00 +08:00
|
|
|
serve = ["futures-util", "tokio", "warp"]
|
2018-03-07 21:02:06 +08:00
|
|
|
search = ["elasticlunr-rs", "ammonia"]
|
2015-08-06 18:38:48 +08:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
doc = false
|
|
|
|
name = "mdbook"
|