Skip to content

Commit 6d220cb

Browse files
authored
Merge branch 'main' into cargo-update-2025-12-22
2 parents 44e9986 + cb96014 commit 6d220cb

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

docs/book.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ description = "Documentation for the Kani Rust Verifier"
66
authors = ["Kani Developers"]
77
src = "src"
88
language = "en"
9-
multilingual = false
109

1110
[output.html]
1211
site-url = "/kani/"

rfc/book.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ title = "Kani RFC Book"
55
description = "Design documents for Kani Rust Verifier"
66
authors = ["Kani Developers"]
77
language = "en"
8-
multilingual = false
98
src = "src"
109

1110
[output.html]

scripts/build-docs.sh

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,16 @@ if [ $(uname -m) = "arm64" ]; then
2020
MDBOOK=mdbook
2121
else
2222
# Download mdbook release (vs spending time building it via cargo install)
23-
MDBOOK_VERSION=v0.4.18
23+
MDBOOK_VERSION=v0.5.2
2424
FILE="mdbook-${MDBOOK_VERSION}-x86_64-unknown-linux-gnu.tar.gz"
2525
URL="https://github.com/rust-lang/mdBook/releases/download/${MDBOOK_VERSION}/$FILE"
26-
EXPECTED_HASH="d276b0e594d5980de6a7917ce74c348f28d3cb8b353ca4eaae344ae8a4c40bea"
27-
if [ ! -x mdbook ]; then
26+
EXPECTED_HASH="084e4342ba564db270108763e404a7d1f309d932651a22484e93c0dc1a071f6d"
27+
MDBOOK=${SCRIPT_DIR}/mdbook
28+
if [ ! -x ${MDBOOK} ]; then
2829
curl -sSL -o "$FILE" "$URL"
2930
echo "$EXPECTED_HASH $FILE" | sha256sum -c -
3031
tar zxf $FILE
3132
MDBOOK=${SCRIPT_DIR}/mdbook
32-
else
33-
MDBOOK=mdbook
3433
fi
3534
fi
3635

0 commit comments

Comments
 (0)