2015-07-06 20:21:59 +08:00
|
|
|
[package]
|
|
|
|
name = "mdbook"
|
2023-09-30 05:33:45 +08:00
|
|
|
version = "0.4.35"
|
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>"
|
|
|
|
]
|
2022-11-19 09:53:08 +08:00
|
|
|
documentation = "https://rust-lang.github.io/mdBook/index.html"
|
2022-06-24 19:20:02 +08:00
|
|
|
edition = "2021"
|
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"
|
2023-11-30 06:36:39 +08:00
|
|
|
rust-version = "1.70"
|
2015-07-07 03:12:24 +08:00
|
|
|
|
|
|
|
[dependencies]
|
2023-05-14 03:01:03 +08:00
|
|
|
anyhow = "1.0.71"
|
|
|
|
chrono = { version = "0.4.24", default-features = false, features = ["clock"] }
|
2023-07-17 03:33:53 +08:00
|
|
|
clap = { version = "4.3.12", features = ["cargo", "wrap_help"] }
|
|
|
|
clap_complete = "4.3.2"
|
2023-05-14 03:01:03 +08:00
|
|
|
once_cell = "1.17.1"
|
2022-12-14 23:53:24 +08:00
|
|
|
env_logger = "0.10.0"
|
2023-05-14 03:01:03 +08:00
|
|
|
handlebars = "4.3.7"
|
|
|
|
log = "0.4.17"
|
|
|
|
memchr = "2.5.0"
|
2023-07-17 03:37:23 +08:00
|
|
|
opener = "0.6.1"
|
2023-05-29 03:00:00 +08:00
|
|
|
pulldown-cmark = { version = "0.9.3", default-features = false }
|
2023-11-01 12:33:13 +08:00
|
|
|
pathdiff = "0.2.1"
|
2023-05-14 03:01:03 +08:00
|
|
|
regex = "1.8.1"
|
|
|
|
serde = { version = "1.0.163", features = ["derive"] }
|
|
|
|
serde_json = "1.0.96"
|
|
|
|
shlex = "1.1.0"
|
|
|
|
tempfile = "3.4.0"
|
2023-08-02 23:39:17 +08:00
|
|
|
toml = "0.5.11" # Do not update, see https://github.com/rust-lang/mdBook/issues/2037
|
2022-12-15 00:04:59 +08:00
|
|
|
topological-sort = "0.2.2"
|
2015-08-04 00:06:01 +08:00
|
|
|
|
2015-11-09 21:31:00 +08:00
|
|
|
# Watch feature
|
2023-08-22 01:29:59 +08:00
|
|
|
notify = { version = "6.1.1", optional = true }
|
|
|
|
notify-debouncer-mini = { version = "0.4.1", optional = true }
|
2023-04-23 03:49:39 +08:00
|
|
|
ignore = { version = "0.4.20", optional = true }
|
2015-11-09 21:31:00 +08:00
|
|
|
|
2016-04-02 10:46:05 +08:00
|
|
|
# Serve feature
|
2023-05-14 03:01:03 +08:00
|
|
|
futures-util = { version = "0.3.28", optional = true }
|
|
|
|
tokio = { version = "1.28.1", features = ["macros", "rt-multi-thread"], optional = true }
|
2023-11-26 17:02:54 +08:00
|
|
|
warp = { version = "0.3.6", 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
|
2023-05-14 03:01:03 +08:00
|
|
|
elasticlunr-rs = { version = "3.0.2", optional = true }
|
|
|
|
ammonia = { version = "3.3.0", optional = true }
|
2018-03-07 21:02:06 +08:00
|
|
|
|
2017-11-16 15:51:12 +08:00
|
|
|
[dev-dependencies]
|
2023-05-14 03:01:03 +08:00
|
|
|
assert_cmd = "2.0.11"
|
2023-07-17 03:42:44 +08:00
|
|
|
predicates = "3.0.3"
|
2022-12-15 00:03:05 +08:00
|
|
|
select = "0.6.0"
|
2023-05-14 03:01:03 +08:00
|
|
|
semver = "1.0.17"
|
|
|
|
pretty_assertions = "1.3.0"
|
|
|
|
walkdir = "2.3.3"
|
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"]
|
2023-04-23 03:49:39 +08:00
|
|
|
watch = ["dep:notify", "dep:notify-debouncer-mini", "dep:ignore"]
|
|
|
|
serve = ["dep:futures-util", "dep:tokio", "dep:warp"]
|
|
|
|
search = ["dep:elasticlunr-rs", "dep:ammonia"]
|
2015-08-06 18:38:48 +08:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
doc = false
|
|
|
|
name = "mdbook"
|
2022-09-25 05:32:41 +08:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "nop-preprocessor"
|
|
|
|
test = true
|