From 3c4b0f190fb88e75a2448391628fed91c4e3b48d Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Fri, 27 Oct 2023 20:52:06 +0300 Subject: [PATCH] Update 'rust-toolchain' file to TOML format (#946) https://rust-lang.github.io/rustup/overrides.html#the-toolchain-file --- rust-toolchain | 1 - rust-toolchain.toml | 3 +++ 2 files changed, 3 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 af92bdd..0000000 --- a/rust-toolchain +++ /dev/null @@ -1 +0,0 @@ -1.63.0 diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..07d72a9 --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,3 @@ +[toolchain] +channel = "1.63.0" +components = [ "rustfmt" ]