diff --git a/native_bootstrap.sh b/native_bootstrap.sh index b827d99b..2a728fe1 100755 --- a/native_bootstrap.sh +++ b/native_bootstrap.sh @@ -1171,7 +1171,7 @@ else fi fi -cargoInstall just 1.42.4 +cargoInstall just 1.50.0 cargoInstall cbindgen 0.29.0 if [ "$dependenciesonly" = false ]; then diff --git a/podman/rustinstall.sh b/podman/rustinstall.sh index 78e475cb..9a3f49f9 100755 --- a/podman/rustinstall.sh +++ b/podman/rustinstall.sh @@ -6,11 +6,11 @@ echo "Installing rust..." curl "https://sh.rustup.rs" -sSf | sh -s -- -y --default-toolchain stable --profile minimal echo "Downloading sccache..." -SCCACHE_URL="https://github.com/mozilla/sccache/releases/download/v0.10.0/sccache-v0.10.0-$(uname -m)-unknown-linux-musl.tar.gz" +SCCACHE_URL="https://github.com/mozilla/sccache/releases/download/v0.15.0/sccache-v0.15.0-$(uname -m)-unknown-linux-musl.tar.gz" wget -qO- --show-progress "${SCCACHE_URL}" | tar -xz -C ~/.cargo/bin --strip-components=1 --wildcards '*/sccache' echo "Downloading just..." -JUST_URL="https://github.com/casey/just/releases/download/1.45.0/just-1.45.0-$(uname -m)-unknown-linux-musl.tar.gz" +JUST_URL="https://github.com/casey/just/releases/download/1.50.0/just-1.50.0-$(uname -m)-unknown-linux-musl.tar.gz" wget -qO- --show-progress "${JUST_URL}" | tar -xz -C ~/.cargo/bin --wildcards 'just' echo "Downloading cbindgen..."