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() {