From 50dabb85f4a231f47b76dea0a4c0e1f0a0d5d8c2 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 2 Jan 2025 09:35:13 -0800 Subject: [PATCH] Update to the latest nightly Rust. --- Cargo.toml | 2 +- rust-toolchain.toml | 2 +- tests/examples.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 362b279..b24d36c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ exclude = ["/.github", "ci"] keywords = ["linux"] [dependencies] -c-gull = { version = "0.20.3", default-features = false, features = ["eyra"] } +c-gull = { version = "0.21.0", default-features = false, features = ["eyra"] } [dev-dependencies] assert_cmd = "2.0.12" diff --git a/rust-toolchain.toml b/rust-toolchain.toml index ef919a1..1a27b4e 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "nightly-2024-10-15" +channel = "nightly-2025-01-02" components = ["rustc", "cargo", "rust-std", "rust-src", "rustfmt"] diff --git a/tests/examples.rs b/tests/examples.rs index 960dde4..201eafe 100644 --- a/tests/examples.rs +++ b/tests/examples.rs @@ -39,7 +39,7 @@ fn test_example(name: &str, features: &str, stdout: &str, stderr: &str) { let mut command = Command::new("cargo"); if which::which("rustup").is_ok() { - command.arg("+nightly-2024-10-15"); + command.arg("+nightly-2025-01-02"); } command.arg("run").arg("--quiet"); if !features.is_empty() {