From 66489654a5f9338ae01accbf31b86f83444aa94e Mon Sep 17 00:00:00 2001 From: R0GUE Date: Wed, 20 Mar 2024 18:13:19 +0700 Subject: [PATCH] chore: add rust-toolchain.toml --- rust-toolchain.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 rust-toolchain.toml diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 00000000..f81199a2 --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,14 @@ +[toolchain] +channel = "stable" +components = [ + "cargo", + "clippy", + "rust-analyzer", + "rust-src", + "rust-std", + "rustc", + "rustc-dev", + "rustfmt", +] +targets = ["wasm32-unknown-unknown"] +profile = "minimal"