mdBook/Cargo.toml

85 lines
2.5 KiB
TOML
Raw Permalink Normal View History

2024-11-02 22:41:55 +00:00
[workspace]
members = [".", "examples/remove-emphasis/mdbook-remove-emphasis"]
2015-07-06 12:21:59 +00:00
[package]
name = "mdbook"
2024-11-07 14:42:05 +00:00
version = "0.4.42"
authors = [
2018-12-25 12:10:45 +00: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-06 21:37:44 +00:00
keywords = ["book", "gitbook", "rustbook", "markdown"]
license = "MPL-2.0"
2015-08-06 21:37:44 +00:00
readme = "README.md"
repository = "https://github.com/rust-lang/mdBook"
description = "Creates a book from markdown files"
2024-05-14 18:38:13 +00:00
rust-version = "1.74"
2015-07-06 19:12:24 +00:00
[dependencies]
2023-05-13 19:01:03 +00:00
anyhow = "1.0.71"
chrono = { version = "0.4.24", default-features = false, features = ["clock"] }
2023-07-16 19:33:53 +00:00
clap = { version = "4.3.12", features = ["cargo", "wrap_help"] }
clap_complete = "4.3.2"
2023-05-13 19:01:03 +00:00
once_cell = "1.17.1"
2024-02-05 22:20:37 +00:00
env_logger = "0.11.1"
2024-07-23 08:32:47 +00:00
handlebars = "6.0"
2023-05-13 19:01:03 +00:00
log = "0.4.17"
memchr = "2.5.0"
2024-05-14 18:22:41 +00:00
opener = "0.7.0"
pulldown-cmark = { version = "0.10.0", default-features = false, features = ["html"] } # Do not update, part of the public api.
2023-05-13 19:01:03 +00:00
regex = "1.8.1"
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
shlex = "1.3.0"
2023-05-13 19:01:03 +00:00
tempfile = "3.4.0"
2023-08-02 15:39:17 +00:00
toml = "0.5.11" # Do not update, see https://github.com/rust-lang/mdBook/issues/2037
topological-sort = "0.2.2"
# Watch feature
notify = { version = "6.1.1", optional = true }
notify-debouncer-mini = { version = "0.4.1", optional = true }
2023-04-22 19:49:39 +00:00
ignore = { version = "0.4.20", optional = true }
pathdiff = { version = "0.2.1", optional = true }
2024-02-24 21:35:39 +00:00
walkdir = { version = "2.3.3", optional = true }
2016-04-02 02:46:05 +00:00
# Serve feature
2023-05-13 19:01:03 +00:00
futures-util = { version = "0.3.28", optional = true }
tokio = { version = "1.28.1", features = ["macros", "rt-multi-thread"], optional = true }
warp = { version = "0.3.6", default-features = false, features = ["websocket"], optional = true }
2016-04-02 02:46:05 +00:00
# Search feature
2023-05-13 19:01:03 +00:00
elasticlunr-rs = { version = "3.0.2", optional = true }
2024-05-14 18:21:52 +00:00
ammonia = { version = "4.0.0", optional = true }
[dev-dependencies]
2023-05-13 19:01:03 +00:00
assert_cmd = "2.0.11"
2023-07-16 19:42:44 +00:00
predicates = "3.0.3"
select = "0.6.0"
2023-05-13 19:01:03 +00:00
semver = "1.0.17"
pretty_assertions = "1.3.0"
walkdir = "2.3.3"
[features]
default = ["watch", "serve", "search"]
2024-02-24 21:35:39 +00:00
watch = ["dep:notify", "dep:notify-debouncer-mini", "dep:ignore", "dep:pathdiff", "dep:walkdir"]
2023-04-22 19:49:39 +00:00
serve = ["dep:futures-util", "dep:tokio", "dep:warp"]
search = ["dep:elasticlunr-rs", "dep:ammonia"]
2015-08-06 10:38:48 +00:00
[[bin]]
doc = false
name = "mdbook"
[[example]]
name = "nop-preprocessor"
test = true
2024-11-02 22:41:55 +00:00
[[example]]
name = "remove-emphasis"
path = "examples/remove-emphasis/test.rs"
crate-type = ["lib"]
test = true