From 43993f645e0c9f8b3f1b4c610e1a7955dfcdceea Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 22 Apr 2024 13:41:17 -0700 Subject: [PATCH] Update to the latest nightly Rust. (#45) --- 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 7e0f69b..4aac1fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ exclude = ["/.github", "ci"] keywords = ["linux"] [dependencies] -c-gull = { version = "0.15.41", default-features = false, features = ["eyra"] } +c-gull = { version = "0.15.44", default-features = false, features = ["eyra"] } [dev-dependencies] assert_cmd = "2.0.12" diff --git a/rust-toolchain.toml b/rust-toolchain.toml index c9a29fc..e51ce31 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "nightly-2024-02-26" +channel = "nightly-2024-04-21" components = ["rustc", "cargo", "rust-std", "rust-src", "rustfmt"] diff --git a/tests/examples.rs b/tests/examples.rs index d74e421..82b6927 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-02-26"); + command.arg("+nightly-2024-04-21"); } command.arg("run").arg("--quiet"); if !features.is_empty() {