Skip to content

Commit c8571f5

Browse files
committed
Add mdbook-driver
This is intended to hold the high-level MDBook type.
1 parent 7eccd1d commit c8571f5

File tree

4 files changed

+19
-0
lines changed

4 files changed

+19
-0
lines changed

Cargo.lock

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ handlebars = "6.3.2"
2828
hex = "0.4.3"
2929
log = "0.4.27"
3030
mdbook-core = { path = "crates/mdbook-core" }
31+
mdbook-driver = { path = "crates/mdbook-driver" }
3132
mdbook-html = { path = "crates/mdbook-html" }
3233
mdbook-markdown = { path = "crates/mdbook-markdown" }
3334
mdbook-preprocessor = { path = "crates/mdbook-preprocessor" }

crates/mdbook-driver/Cargo.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[package]
2+
name = "mdbook-driver"
3+
version = "0.5.0-alpha.1"
4+
description = "High-level library for running mdBook"
5+
edition.workspace = true
6+
license.workspace = true
7+
repository.workspace = true
8+
rust-version.workspace = true
9+
10+
[dependencies]
11+
12+
[lints]
13+
workspace = true

crates/mdbook-driver/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
//! High-level library for running mdBook.

0 commit comments

Comments
 (0)