From 0d90da896be1bc2dfaf700fe61f9f41939fe7b69 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) # Objective - Publishing takes a long time - There's a 20 second wait between crates to not hit the rate limit on crates.io ## Solution - 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 965aadfa5b..c76d4c16d3 100644 --- a/tools/publish.sh +++ b/tools/publish.sh @@ -11,7 +11,6 @@ do pushd "$crate" cargo publish popd - sleep 20 done popd