Update QUICHE to use Bazel 7.4.1, but without bzlmod for now
Enabling bzlmod almost works, but there's some weird issue with zlib that seems to stem from a second zlib getting pulled in automatically? Introducing a `MODULE.bazel` and switching most deps to it seems to fix that, but let's update Bazel first, just to isolate any issues caused by the two.
PiperOrigin-RevId: 698866941
diff --git a/.bazelrc b/.bazelrc
index 3b2dcc0..b9f50c8 100644
--- a/.bazelrc
+++ b/.bazelrc
@@ -1,5 +1,7 @@
# Automatically detect host platform to pick config
common --enable_platform_specific_config
+# Disable bzlmod for now.
+common --noenable_bzlmod
build --cxxopt=-std=c++17
build --cxxopt=-fno-rtti
diff --git a/.bazelversion b/.bazelversion
index 024b066..815da58 100644
--- a/.bazelversion
+++ b/.bazelversion
@@ -1 +1 @@
-6.2.1
+7.4.1