chore: Bump nightly Rust toolchain

This commit is contained in:
Kévin Commaille 2024-11-29 12:02:14 +01:00 committed by strawberry
parent ce715d4c13
commit 73702b74f1
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ env:
CARGO_TERM_COLOR: always
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
# Keep in sync with version in `rust-toolchain.toml` and `xtask/src/ci.rs`
NIGHTLY: nightly-2024-09-06
NIGHTLY: nightly-2024-11-26
on:
push:

View File

@ -1,4 +1,4 @@
[toolchain]
# Keep in sync with version in `xtask/src/ci.rs` and `.github/workflows/ci.yml`
channel = "nightly-2024-09-06"
channel = "nightly-2024-11-26"
components = ["rustfmt", "clippy"]

View File

@ -15,7 +15,7 @@ use serde::Deserialize;
use serde_json::from_str as from_json_str;
// Keep in sync with version in `rust-toolchain.toml` and `.github/workflows/ci.yml`
const NIGHTLY: &str = "nightly-2024-09-06";
const NIGHTLY: &str = "nightly-2024-11-26";
mod cargo;
mod ci;