From 3db5760794a14cd3b42b650745df811d4f68819e Mon Sep 17 00:00:00 2001 From: Patrick Barrett Date: Wed, 13 May 2026 09:16:16 -0500 Subject: [PATCH 1/3] add edit links to pages --- book.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/book.toml b/book.toml index e3aa43e..ac56649 100644 --- a/book.toml +++ b/book.toml @@ -2,3 +2,6 @@ title = "Rust Fuzz Book" description = "Guide on how to fuzz test software written in the Rust programming language" authors = ["Corey Farwell"] + +[output.html] +edit-url-template = "https://github.com/rust-fuzz/book/edit/master/{path}" From 189c1e4d37fd99864cc143ac1868ede29d605a87 Mon Sep 17 00:00:00 2001 From: Patrick Barrett Date: Wed, 13 May 2026 10:25:19 -0500 Subject: [PATCH 2/3] update mdbook in CI, 0.4.7 -> 0.5.2 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 35d78a6..c50b04c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Install `mdbook` - run: curl -L "https://github.com/rust-lang/mdBook/releases/download/v0.4.7/mdbook-v0.4.7-x86_64-unknown-linux-gnu.tar.gz" \ + run: curl -L "https://github.com/rust-lang/mdBook/releases/download/v0.5.2/mdbook-v0.5.2-x86_64-unknown-linux-gnu.tar.gz" \ | tar xvz - run: ./mdbook test - run: ./mdbook build @@ -28,7 +28,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Install `mdbook` - run: curl -L "https://github.com/rust-lang/mdBook/releases/download/v0.4.7/mdbook-v0.4.7-x86_64-unknown-linux-gnu.tar.gz" \ + run: curl -L "https://github.com/rust-lang/mdBook/releases/download/v0.5.2/mdbook-v0.5.2-x86_64-unknown-linux-gnu.tar.gz" \ | tar xvz - run: ./mdbook build - run: ./ci/deploy.sh From 6d2932738abbe51716c4ec1349bacb0a7f76289a Mon Sep 17 00:00:00 2001 From: Patrick Barrett Date: Wed, 13 May 2026 10:28:45 -0500 Subject: [PATCH 3/3] add the other obvious [output.html] config options in book.toml --- book.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/book.toml b/book.toml index ac56649..c6fabe8 100644 --- a/book.toml +++ b/book.toml @@ -4,4 +4,7 @@ description = "Guide on how to fuzz test software written in the Rust programmin authors = ["Corey Farwell"] [output.html] +git-repository-url = "https://github.com/rust-fuzz/book" +git-repository-icon = "fab-github" edit-url-template = "https://github.com/rust-fuzz/book/edit/master/{path}" +site-url = "/book/"