Move renderer types to mdbook-renderer

This sets up mdbook-renderer with the intent of being the core
library that renderers use to implement the necessary interactions.
This commit is contained in:
Eric Huss
2025-07-21 15:30:51 -07:00
parent 12285f505d
commit 3278f84373
8 changed files with 93 additions and 79 deletions

View File

@@ -25,6 +25,7 @@ anyhow = "1.0.98"
log = "0.4.27"
mdbook-core = { path = "crates/mdbook-core" }
mdbook-preprocessor = { path = "crates/mdbook-preprocessor" }
mdbook-renderer = { path = "crates/mdbook-renderer" }
mdbook-summary = { path = "crates/mdbook-summary" }
memchr = "2.7.5"
pulldown-cmark = { version = "0.10.3", default-features = false, features = ["html"] } # Do not update, part of the public api.
@@ -63,6 +64,7 @@ hex = "0.4.3"
log.workspace = true
mdbook-core.workspace = true
mdbook-preprocessor.workspace = true
mdbook-renderer.workspace = true
mdbook-summary.workspace = true
memchr.workspace = true
opener = "0.8.1"