From c711d309cdbeb3412896fce2776cf61c8dbd67f6 Mon Sep 17 00:00:00 2001 From: Ryan Butler Date: Fri, 23 Feb 2024 00:09:51 -0500 Subject: [PATCH] Added toolchain --- rust-toolchain.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 rust-toolchain.toml diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..a24e707 --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,10 @@ +[toolchain] +channel = "1.77.2" +components = ["rust-src"] +profile = "default" +targets = [ + "aarch64-apple-darwin", + "aarch64-linux-android", + "x86_64-pc-windows-msvc", + "x86_64-unknown-linux-gnu", +]