From aed02daabbd8f6f0c46364d5b34931570645b324 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 19:57:13 +0100 Subject: [PATCH] chore(deps): bump rust-toolchain from 1.91 to 1.93 (#69) * chore(deps): bump rust-toolchain from 1.91 to 1.93 Bumps [rust-toolchain](https://github.com/rust-lang/rust) from 1.91 to 1.93. - [Release notes](https://github.com/rust-lang/rust/releases) - [Changelog](https://github.com/rust-lang/rust/blob/main/RELEASES.md) - [Commits](https://github.com/rust-lang/rust/compare/1.91.0...1.93.0) --- updated-dependencies: - dependency-name: rust-toolchain dependency-version: '1.93' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * allow unused assignments --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JasterV <49537445+JasterV@users.noreply.github.com> --- rust-toolchain.toml | 2 +- test-context/tests/test.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 2767a11..b96b848 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.91" +channel = "1.93" components = ["rustfmt", "clippy", "rust-src", "rust-analyzer"] diff --git a/test-context/tests/test.rs b/test-context/tests/test.rs index c8919d6..a82e864 100644 --- a/test-context/tests/test.rs +++ b/test-context/tests/test.rs @@ -130,6 +130,7 @@ async fn test_async_teardown(ctx: &mut AsyncContext) { #[test_context(AsyncContext)] #[tokio::test] +#[allow(unused_assignments)] #[should_panic(expected = "Number changed")] async fn test_async_panicking_teardown(ctx: &mut AsyncContext) { ctx.n = 2;