Skip to content

Commit bd3e555

Browse files
committed
Add mdbook-summary
This new crate will hold the Summary types and parsing support.
1 parent 02b6628 commit bd3e555

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-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
@@ -24,6 +24,7 @@ rust-version = "1.85.0" # Keep in sync with installation.md and .github/workflow
2424
anyhow = "1.0.98"
2525
log = "0.4.27"
2626
mdbook-core = { path = "crates/mdbook-core" }
27+
mdbook-summary = { path = "crates/mdbook-summary" }
2728
pulldown-cmark = { version = "0.10.3", default-features = false, features = ["html"] } # Do not update, part of the public api.
2829
regex = "1.11.1"
2930
serde = { version = "1.0.219", features = ["derive"] }

crates/mdbook-summary/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-summary"
3+
version = "0.5.0-alpha.1"
4+
description = "Summary parser for 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

0 commit comments

Comments
 (0)