Upgrade to rust 1.93 (#10080)

I needed to upgrade bazel one to get gnullvm artifacts and then noticed
monorepo had drifted forward. They should move in lockstep. Also 1.93
already shipped so we can try that instead.
This commit is contained in:
zbarsky-openai
2026-01-28 12:46:18 -05:00
committed by GitHub
parent 96386755b6
commit ad5f9e7370
7 changed files with 10 additions and 10 deletions

View File

@@ -179,7 +179,7 @@ if (-not (Ensure-Command 'cargo')) {
Write-Host "==> Configuring Rust toolchain per rust-toolchain.toml" -ForegroundColor Cyan
# Pin to the workspace toolchain and install components
$toolchain = '1.92.0'
$toolchain = '1.93.0'
& rustup toolchain install $toolchain --profile minimal | Out-Host
& rustup default $toolchain | Out-Host
& rustup component add clippy rustfmt rust-src --toolchain $toolchain | Out-Host