From d8b94940a8f942253e1f00bbcf8f06ef45eb4425 Mon Sep 17 00:00:00 2001 From: meliurwen Date: Sat, 30 Jul 2022 17:58:17 +0200 Subject: [PATCH] Added `rust-toolchain.toml` --- rust-toolchain.toml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 rust-toolchain.toml diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..367bc0b --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,7 @@ +# This file defines the Rust toolchain to use when a command is executed. +# See also https://rust-lang.github.io/rustup/overrides.html + +[toolchain] +channel = "stable" +components = [ "clippy", "rustfmt" ] +profile = "minimal"