Fix zeroize crate build breakage

Newer version of zeroize has a README.md file that needs to be included
in rust sources. Adds it as compiled data.

Bug: 534687717
Change-Id: I1915cfb208831de3afdced49a485e8177260fbfb
diff --git a/gbl/MODULE.bazel b/gbl/MODULE.bazel
index 4b06fd3..acfafcb 100644
--- a/gbl/MODULE.bazel
+++ b/gbl/MODULE.bazel
@@ -1383,6 +1383,7 @@
 
 gbl_rust_crate_repository(
     name = "zeroize",
+    compile_data = ["README.md"],
     path = "external/rust/android-crates-io/crates/zeroize",
     rustc_flags = ["--cap-lints=allow"],
 )