Add mdbook-driver

This is intended to hold the high-level MDBook type.
This commit is contained in:
Eric Huss 2025-07-21 20:47:33 -07:00
parent 7eccd1d556
commit c8571f592c
4 changed files with 19 additions and 0 deletions

4
Cargo.lock generated
View file

@ -1307,6 +1307,10 @@ dependencies = [
"toml", "toml",
] ]
[[package]]
name = "mdbook-driver"
version = "0.5.0-alpha.1"
[[package]] [[package]]
name = "mdbook-html" name = "mdbook-html"
version = "0.5.0-alpha.1" version = "0.5.0-alpha.1"

View file

@ -28,6 +28,7 @@ handlebars = "6.3.2"
hex = "0.4.3" hex = "0.4.3"
log = "0.4.27" log = "0.4.27"
mdbook-core = { path = "crates/mdbook-core" } mdbook-core = { path = "crates/mdbook-core" }
mdbook-driver = { path = "crates/mdbook-driver" }
mdbook-html = { path = "crates/mdbook-html" } mdbook-html = { path = "crates/mdbook-html" }
mdbook-markdown = { path = "crates/mdbook-markdown" } mdbook-markdown = { path = "crates/mdbook-markdown" }
mdbook-preprocessor = { path = "crates/mdbook-preprocessor" } mdbook-preprocessor = { path = "crates/mdbook-preprocessor" }

View file

@ -0,0 +1,13 @@
[package]
name = "mdbook-driver"
version = "0.5.0-alpha.1"
description = "High-level library for running mdBook"
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
[dependencies]
[lints]
workspace = true

View file

@ -0,0 +1 @@
//! High-level library for running mdBook.