From e15047815c1297c12f81d5fe5b480535a85b21df Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Wed, 13 Sep 2023 10:43:03 -0500 Subject: [PATCH] Update Rust toolchain file to use TOML format (#7339) Ref https://rust-lang.github.io/rustup/overrides.html#the-toolchain-file Should resolve Dependabot failure at https://github.com/astral-sh/ruff/network/updates/721380342 Follows #7034 --- rust-toolchain | 1 - rust-toolchain.toml | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) delete mode 100644 rust-toolchain create mode 100644 rust-toolchain.toml diff --git a/rust-toolchain b/rust-toolchain deleted file mode 100644 index cc31fcd4f5..0000000000 --- a/rust-toolchain +++ /dev/null @@ -1 +0,0 @@ -1.72 diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000000..7e8f0a9aab --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,2 @@ +[toolchain] +channel = "1.72"