chore: publish con --no-verify (evita disco lleno por recompilar cada crate)
This commit is contained in:
@@ -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!
|
||||||
+1
-1
@@ -8,7 +8,7 @@ while read -r c; do
|
|||||||
[ -z "$c" ] && continue
|
[ -z "$c" ] && continue
|
||||||
while true; do
|
while true; do
|
||||||
echo ">>> publicando $c"
|
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
|
if echo "$out" | grep -qiE "already (been )?uploaded|already exists|is already"; then
|
||||||
echo " (ya estaba, sigo)"; break
|
echo " (ya estaba, sigo)"; break
|
||||||
elif echo "$out" | grep -qiE "429|Too Many Requests|rate.?limit"; then
|
elif echo "$out" | grep -qiE "429|Too Many Requests|rate.?limit"; then
|
||||||
|
|||||||
Reference in New Issue
Block a user