From 4d03fc536beaf861bebc08eabd0364e867a48a4a Mon Sep 17 00:00:00 2001 From: Sophie Atkins Date: Fri, 22 Dec 2023 18:19:17 +0100 Subject: [PATCH 1/3] Add rust-toolchain --- 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 000000000000..c3ce07ad11c8 --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,5 @@ +[toolchain] +channel = "stable" +components = [] +targets = [] +profile = "minimal" From 4f817f99e65b75a5a077d6baaf179c7b33364e5f Mon Sep 17 00:00:00 2001 From: Sophie Atkins Date: Tue, 2 Jan 2024 14:26:07 +0100 Subject: [PATCH 2/3] Update channel to specific latest include wasm32 target --- rust-toolchain.toml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index c3ce07ad11c8..bdbeb14b0607 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,3 @@ [toolchain] -channel = "stable" -components = [] -targets = [] -profile = "minimal" +channel = "1.75.0" +targets = ["wasm32-unknown-unknown"] From 4b85dfa2f70b939fed28272851227bd61661bd2a Mon Sep 17 00:00:00 2001 From: Sophie Atkins Date: Wed, 3 Jan 2024 11:01:19 +0100 Subject: [PATCH 3/3] set channel stable --- rust-toolchain.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index bdbeb14b0607..e918eb3dbf9c 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.75.0" +channel = "stable" targets = ["wasm32-unknown-unknown"]