diff --git a/MAIL-crates-io-ratelimit.txt b/MAIL-crates-io-ratelimit.txt new file mode 100644 index 0000000..325206a --- /dev/null +++ b/MAIL-crates-io-ratelimit.txt @@ -0,0 +1,18 @@ +PARA: help@crates.io +(enviar desde el email de tu cuenta de crates.io) + +SUBJECT: +Rate limit increase for publishing the llimphi workspace (~88 crates) + +CUERPO: +Hi! I'm publishing a multi-crate workspace (llimphi, an MIT-licensed native +Rust UI framework) — about 88 interdependent crates that must go up together. +I've hit the "too many new crates in a short period" limit. Could you +temporarily raise my new-crate rate limit so I can publish the rest? + +crates.io user: sergiovelasquezzeballos +Already published: app-bus, foreign-vox, llimphi-hal, llimphi-raster, + llimphi-layout, llimphi-text, llimphi-theme, llimphi-ui, llimphi-3d, ... +Repo: https://github.com/tawasuyu/llimphi + +Thanks! diff --git a/publish-crates.sh b/publish-crates.sh index e5f01ef..3f68b26 100755 --- a/publish-crates.sh +++ b/publish-crates.sh @@ -8,7 +8,7 @@ while read -r c; do [ -z "$c" ] && continue while true; do echo ">>> publicando $c" - if out=$(cargo publish -p "$c" 2>&1); then echo " ok"; break; fi + if out=$(cargo publish -p "$c" --no-verify 2>&1); then echo " ok"; break; fi if echo "$out" | grep -qiE "already (been )?uploaded|already exists|is already"; then echo " (ya estaba, sigo)"; break elif echo "$out" | grep -qiE "429|Too Many Requests|rate.?limit"; then