mdBook/Cargo.toml

74 lines
2.0 KiB
TOML
Raw Normal View History

2015-07-06 20:21:59 +08:00
[package]
name = "mdbook"
2023-03-05 07:40:56 +08:00
version = "0.4.28"
authors = [
2018-12-25 20:10:45 +08:00
"Mathieu David <mathieudavid@mathieudavid.org>",
"Michael-F-Bryan <michaelfbryan@gmail.com>",
"Matt Ickstadt <mattico8@gmail.com>"
]
documentation = "https://rust-lang.github.io/mdBook/index.html"
edition = "2021"
exclude = ["/guide/*"]
2015-08-07 05:37:44 +08:00
keywords = ["book", "gitbook", "rustbook", "markdown"]
license = "MPL-2.0"
2015-08-07 05:37:44 +08:00
readme = "README.md"
repository = "https://github.com/rust-lang/mdBook"
description = "Creates a book from markdown files"
2023-04-23 03:49:39 +08:00
rust-version = "1.63"
2015-07-07 03:12:24 +08:00
[dependencies]
anyhow = "1.0.28"
2023-01-26 17:02:43 +08:00
chrono = { version = "0.4", default-features = false, features = ["clock"] }
2022-07-04 23:16:31 +08:00
clap = { version = "4.0.29", features = ["cargo", "wrap_help"] }
clap_complete = "4.0.6"
once_cell = "1"
env_logger = "0.10.0"
2021-05-26 23:11:01 +08:00
handlebars = "4.0"
log = "0.4"
memchr = "2.0"
opener = "0.5"
2022-01-18 23:01:23 +08:00
pulldown-cmark = { version = "0.9.1", default-features = false }
2022-03-09 15:04:50 +08:00
regex = "1.5.5"
serde = { version = "1.0", features = ["derive"] }
2019-05-30 23:23:42 +08:00
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"
2023-02-13 23:31:33 +08:00
toml = "0.5.1"
topological-sort = "0.2.2"
# Watch feature
notify = { version = "5.0.0", optional = true }
notify-debouncer-mini = { version = "0.2.1", optional = true }
2023-04-23 03:49:39 +08:00
ignore = { version = "0.4.20", optional = true }
2016-04-02 10:46:05 +08:00
# Serve feature
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 }
2022-06-21 01:48:03 +08:00
warp = { version = "0.3.2", default-features = false, features = ["websocket"], optional = true }
2016-04-02 10:46:05 +08:00
# Search feature
2022-05-23 10:30:32 +08:00
elasticlunr-rs = { version = "3.0.0", optional = true }
2019-09-21 17:22:52 +08:00
ammonia = { version = "3", optional = true }
[dev-dependencies]
assert_cmd = "2.0.7"
2021-07-14 07:03:07 +08:00
predicates = "2"
select = "0.6.0"
semver = "1.0"
pretty_assertions = "1.2.1"
walkdir = "2.0"
[features]
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"
[[example]]
name = "nop-preprocessor"
test = true