# Update Rust

> Update the pinned stable and nightly Rust toolchain versions used by the repository

- Skill: `azure-azure-sdk-for-rust/update-rust` (Agent Skill)
- Install (CLI): `npx skillmds@latest add azure-azure-sdk-for-rust/update-rust`
- Raw SKILL.md: https://api.skillmd.com/api/skills/azure-azure-sdk-for-rust/update-rust/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: Azure (https://skillmd.com/u/azure-azure-sdk-for-rust)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/azure-azure-sdk-for-rust/update-rust

---


Run `eng/scripts/Update-Rust.ps1` to update the pinned Rust toolchain versions.

## What the script does

- Fetches the latest stable Rust version from GitHub (if `-Version` not specified)
- Detects a working nightly toolchain date from `rustc --version` (if `-NightlyVersion` not specified), advancing day-by-day until `rustup` can install it
- Updates `rust-toolchain.toml`, `eng/scripts/Language-Settings.ps1`, and `eng/scripts/*.rs` shebang lines

## Parameters

- `-Version` — stable channel version (e.g., `"1.96.0"`); omit to auto-detect from GitHub
- `-NightlyVersion` — nightly date (e.g., `"2026-05-01"` or `"nightly-2026-05-01"`); omit to auto-detect from `rustc --version`

## Examples

Update both channels automatically:

```powershell
eng/scripts/Update-Rust.ps1
```

Update to a specific stable version with auto-detected nightly:

```powershell
eng/scripts/Update-Rust.ps1 -Version 1.96.0
```

Update both channels explicitly:

```powershell
eng/scripts/Update-Rust.ps1 -Version 1.96.0 -NightlyVersion 2026-05-01
```

