From ff599e2c68220547349f71928756e7c67c945682 Mon Sep 17 00:00:00 2001 From: Reilly Wood Date: Fri, 26 Jan 2024 22:38:01 -0800 Subject: [PATCH] Pin to Rust 1.71.1 again, compile time regression still pretty bad This reverts commit fdeeee4400614cfc035ad32836bb08bc35808f2a. https://github.com/rust-lang/rust/issues/115283 --- rust-toolchain.toml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 rust-toolchain.toml diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..17c6ea2 --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,9 @@ +# Here's some documentation on how to use this file: +# https://rust-lang.github.io/rustup/overrides.html#the-toolchain-file + +[toolchain] +# The default profile includes rustc, rust-std, cargo, rust-docs, rustfmt and clippy. +# https://rust-lang.github.io/rustup/concepts/profiles.html +profile = "default" +# Pin to 1.71.1 to avoid a compile time regression in 1.72.0 https://github.com/zachs18/zbus-repro/ +channel = "1.71.1"