From 5590532cff3e221f50f09f789fc000bf25317714 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Tue, 5 Jul 2022 02:29:28 +0530 Subject: [PATCH] rust: add rust-toolchain file --- rust-toolchain.toml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 rust-toolchain.toml diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..18729ae --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,5 @@ +[toolchain] +channel = "stable" +components = [ "clippy", "rustfmt", "rust-src" ] +targets = [ "x86_64-unknown-linux-gnu" ] +profile = "minimal"