| commit | f8fe18114ed2d7875315818d81235691c315ac96 | [log] [tgz] |
|---|---|---|
| author | Tim Windelschmidt <tim@monogon.tech> | Mon Jun 16 12:44:20 2025 +0200 |
| committer | Tim Windelschmidt <tim@monogon.tech> | Tue Jun 24 13:25:40 2025 +0000 |
| tree | 16217de6c1817472633d3da5a4f347d208887d0d | |
| parent | 77bf754c26c64befa772e00f652faf784b0913c9 [diff] [blame] |
treewide: replace custom mdbook rules with rules_rust extension Change-Id: I342080f27cf3b41d0522aec7142b35ab53f1e24e Reviewed-on: https://review.monogon.dev/c/monogon/+/4256 Tested-by: Jenkins CI Reviewed-by: Lorenz Brun <lorenz@monogon.tech>
diff --git a/metropolis/handbook/BUILD.bazel b/metropolis/handbook/BUILD.bazel index 72c3490..103748b 100644 --- a/metropolis/handbook/BUILD.bazel +++ b/metropolis/handbook/BUILD.bazel
@@ -1,7 +1,7 @@ -load("//metropolis/handbook:defs.bzl", "mdbook_html") +load("@rules_rust_mdbook//:defs.bzl", "mdbook") -mdbook_html( +mdbook( name = "handbook", srcs = glob(["src/**/*.md"]), - title = "Metropolis Handbook", + book = ":book.toml", )