From 8361f9c8f83992295cfa40cf4d27a17146afb2d9 Mon Sep 17 00:00:00 2001 From: Mingwei Samuel Date: Mon, 5 Feb 2024 11:34:38 -0800 Subject: [PATCH] chore: update pinned rust nightly version to 2024-02-03 (#1057) --- hydroflow/tests/compile-fail/surface_source_iter_badtype.stderr | 2 +- rust-toolchain.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hydroflow/tests/compile-fail/surface_source_iter_badtype.stderr b/hydroflow/tests/compile-fail/surface_source_iter_badtype.stderr index aaf6488dd745..fded8b29b0e1 100644 --- a/hydroflow/tests/compile-fail/surface_source_iter_badtype.stderr +++ b/hydroflow/tests/compile-fail/surface_source_iter_badtype.stderr @@ -7,7 +7,7 @@ error[E0277]: `{integer}` is not an iterator | | `{integer}` is not an iterator | required by a bound introduced by this call | - = help: the trait `Iterator` is not implemented for `{integer}` + = help: the trait `Iterator` is not implemented for `{integer}`, which is required by `{integer}: IntoIterator` = note: if you want to iterate between `start` until a value `end`, use the exclusive range syntax `start..end` or the inclusive range syntax `start..=end` = note: required for `{integer}` to implement `IntoIterator` note: required by a bound in `check_iter` diff --git a/rust-toolchain.toml b/rust-toolchain.toml index a3ed5e9f200e..3186c703a65e 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,4 +1,4 @@ [toolchain] -channel = "nightly-2023-10-24" +channel = "nightly-2024-02-03" components = ["rustfmt", "clippy"] targets = ["wasm32-unknown-unknown", "x86_64-unknown-linux-musl"]