diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d4ff3be5..fbd4a5d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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-2023-11-08 + NIGHTLY: nightly-2024-02-14 on: push: diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 9ac81209..90c225f3 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,4 +1,4 @@ [toolchain] # Keep in sync with version in `xtask/src/ci.rs` and `.github/workflows/ci.yml` -channel = "nightly-2023-11-08" +channel = "nightly-2024-02-14" components = ["rustfmt", "clippy"] diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 0d0836e1..5fd239ea 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -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-2023-11-08"; +const NIGHTLY: &str = "nightly-2024-02-14"; #[cfg(feature = "default")] mod cargo;