Merge "Bail with an error if no crates specified." into main
diff --git a/tools/external_crates/crate_tool/src/managed_repo.rs b/tools/external_crates/crate_tool/src/managed_repo.rs
index 23b0410..466db38 100644
--- a/tools/external_crates/crate_tool/src/managed_repo.rs
+++ b/tools/external_crates/crate_tool/src/managed_repo.rs
@@ -51,7 +51,9 @@
 // TODO: Store this as a data file in the monorepo.
 static IMPORT_DENYLIST: LazyLock<BTreeSet<&str>> = LazyLock::new(|| {
     BTreeSet::from([
-        "instant", // Not maintained.
+        "instant",        // Not maintained.
+        "bumpalo",        // Unsound
+        "allocator-api2", // Unsound
         // Uniffi crates.
         // Per mmaurer: "considered too difficult to verify and stopped being used for the original use case".
         "oneshot-uniffi",