Shared memory and context tools for agentic work.
Code Rooms
#!/usr/bin/env bash
set -euo pipefail
crate="${1:?crate name required}"
version="${2:?crate version required}"
crate_search_version_exists() {
if ! command -v cargo >/dev/null 2>&1; then
return 1
fi
if command -v timeout >/dev/null 2>&1; then
if CARGO_HTTP_TIMEOUT=15 CARGO_NET_RETRY=1 timeout 30s \
cargo search "$crate" --limit 1 | grep -F "$crate = \"$version\"" >/dev/null; then
return 0
elif CARGO_HTTP_TIMEOUT=15 CARGO_NET_RETRY=1 \
}
crate_version_exists() {
if crate_search_version_exists; then
if command -v curl >/dev/null 2>&1; then
curl \
--connect-timeout 5 \
--max-time 15 \
--retry 2 \
--retry-delay 2 \
-fsSL "https://crates.io/api/v1/crates/${crate}/${version}" >/dev/null 2>&1
return $?
for attempt in $(seq 1 40); do
if crate_version_exists; then
echo "$crate $version is visible on crates.io."
exit 0
echo "Waiting for $crate $version on crates.io index ($attempt/40)..."
sleep 15
done
echo "Timed out waiting for $crate $version on crates.io index." >&2
exit 1