2025-07-21 18:06:49 -07:00
|
|
|
[package]
|
|
|
|
|
name = "mdbook-html"
|
|
|
|
|
version = "0.5.0-alpha.1"
|
|
|
|
|
description = "mdBook HTML renderer"
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
rust-version.workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-07-21 20:45:14 -07:00
|
|
|
ammonia = { workspace = true, optional = true }
|
2025-07-21 18:32:36 -07:00
|
|
|
anyhow.workspace = true
|
2025-07-21 20:45:14 -07:00
|
|
|
elasticlunr-rs = { workspace = true, optional = true }
|
|
|
|
|
handlebars.workspace = true
|
|
|
|
|
hex.workspace = true
|
2025-07-21 18:32:36 -07:00
|
|
|
log.workspace = true
|
2025-07-21 20:45:14 -07:00
|
|
|
mdbook-core.workspace = true
|
|
|
|
|
mdbook-markdown.workspace = true
|
|
|
|
|
mdbook-renderer.workspace = true
|
|
|
|
|
pulldown-cmark.workspace = true
|
|
|
|
|
regex.workspace = true
|
|
|
|
|
serde.workspace = true
|
|
|
|
|
serde_json.workspace = true
|
|
|
|
|
sha2.workspace = true
|
2025-07-21 18:32:36 -07:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2025-07-21 20:45:14 -07:00
|
|
|
pretty_assertions.workspace = true
|
2025-07-21 18:32:36 -07:00
|
|
|
tempfile.workspace = true
|
2025-07-21 20:45:14 -07:00
|
|
|
toml.workspace = true
|
2025-07-21 18:06:49 -07:00
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
2025-07-21 18:32:36 -07:00
|
|
|
|
|
|
|
|
[features]
|
2025-07-21 20:45:14 -07:00
|
|
|
search = ["dep:ammonia", "dep:elasticlunr-rs"]
|