diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-11-12 06:27:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-12 06:27:18 +0100 |
| commit | 52bb9fafd0857ea082a8fc457a6bb07ceca7e7d7 (patch) | |
| tree | 6cedea61d427ffee35fdf202216cf9e84b945538 /src | |
| parent | b7dc4813a8ea9debafd7bc86bda3baafe6646f93 (diff) | |
| parent | 544b9f9a94384742f9e1649e9318419d88785e19 (diff) | |
| download | rust-52bb9fafd0857ea082a8fc457a6bb07ceca7e7d7.tar.gz rust-52bb9fafd0857ea082a8fc457a6bb07ceca7e7d7.zip | |
Rollup merge of #132793 - ehuss:update-mdbook, r=Mark-Simulacrum
Update mdbook to 0.4.42 This updates mdbook to 0.4.42 Changelog: https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md#mdbook-0441 There were some significant changes that I would like to get early testing on. This also updates rust-by-example which was required due to an update to the theme file.
Diffstat (limited to 'src')
| m--------- | src/doc/rust-by-example | 0 | ||||
| -rw-r--r-- | src/tools/rustbook/.gitignore | 1 | ||||
| -rw-r--r-- | src/tools/rustbook/Cargo.lock | 24 |
3 files changed, 21 insertions, 4 deletions
diff --git a/src/doc/rust-by-example b/src/doc/rust-by-example -Subproject 9db78608b17d5f4a6c033b8a3038466b87d6320 +Subproject e1d1f2cdcee4d52b9a01ff7c448be4372a377b7 diff --git a/src/tools/rustbook/.gitignore b/src/tools/rustbook/.gitignore new file mode 100644 index 00000000000..ea8c4bf7f35 --- /dev/null +++ b/src/tools/rustbook/.gitignore @@ -0,0 +1 @@ +/target diff --git a/src/tools/rustbook/Cargo.lock b/src/tools/rustbook/Cargo.lock index 27ccb205b50..914b03c8679 100644 --- a/src/tools/rustbook/Cargo.lock +++ b/src/tools/rustbook/Cargo.lock @@ -441,11 +441,12 @@ dependencies = [ [[package]] name = "handlebars" -version = "5.1.2" +version = "6.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d08485b96a0e6393e9e4d1b8d48cf74ad6c063cd905eb33f42c1ce3f0377539b" +checksum = "fd4ccde012831f9a071a637b0d4e31df31c0f6c525784b35ae76a9ac6bc1e315" dependencies = [ "log", + "num-order", "pest", "pest_derive", "serde", @@ -645,9 +646,9 @@ dependencies = [ [[package]] name = "mdbook" -version = "0.4.40" +version = "0.4.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b45a38e19bd200220ef07c892b0157ad3d2365e5b5a267ca01ad12182491eea5" +checksum = "7624879735513024d323e7267a0b3a7176aceb0db537939beb4ee31d9e8945e3" dependencies = [ "ammonia", "anyhow", @@ -763,6 +764,21 @@ dependencies = [ ] [[package]] +name = "num-modular" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17bb261bf36fa7d83f4c294f834e91256769097b3cb505d44831e0a179ac647f" + +[[package]] +name = "num-order" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "537b596b97c40fcf8056d153049eb22f481c17ebce72a513ec9286e4986d1bb6" +dependencies = [ + "num-modular", +] + +[[package]] name = "num-traits" version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" |
