From 3159e61c05f44b8eadbbc8c5afef0ce930de181b Mon Sep 17 00:00:00 2001 From: StripedMonkey Date: Wed, 28 Aug 2024 18:56:35 -0400 Subject: [PATCH 1/2] create 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 000000000..438956093 --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,7 @@ +[toolchain] +# Anything in the latest stable version of rust is fine to use. +channel = "stable" +targets = [ + "x86_64-unknown-linux-gnu", + "x86_64-pc-windows-msvc", +] \ No newline at end of file From 2c192b568959dbfaef0a6b397091588e807ff3ca Mon Sep 17 00:00:00 2001 From: Noah Date: Sat, 31 Aug 2024 11:53:45 -0400 Subject: [PATCH 2/2] add requested targets --- rust-toolchain.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 438956093..c4bd27c80 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -2,6 +2,8 @@ # Anything in the latest stable version of rust is fine to use. channel = "stable" targets = [ - "x86_64-unknown-linux-gnu", + "x86_64-apple-darwin", + "x86_64-pc-windows-gnu", "x86_64-pc-windows-msvc", -] \ No newline at end of file + "x86_64-unknown-linux-gnu", +]