From 3c37eae52ea659829674a6897b9a2109142e45f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Mockers?= Date: Wed, 26 Mar 2025 22:27:29 +0100 Subject: [PATCH] don't wait during publishing (#18563) - Publishing takes a long time - There's a 20 second wait between crates to not hit the rate limit on crates.io - Our rate limit has been increased by the crates.io team, don't wait anymore! --- tools/publish.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/publish.sh b/tools/publish.sh index 81347d4873..a1f0f01bd8 100644 --- a/tools/publish.sh +++ b/tools/publish.sh @@ -63,7 +63,6 @@ do pushd "$crate" cargo publish popd - sleep 5 done popd