From acfd7d6ed538b4563111d63acb5aa63c7b46c960 Mon Sep 17 00:00:00 2001 From: intendednull Date: Sat, 25 Apr 2026 06:54:42 -0700 Subject: [PATCH] chore: add rust-toolchain.toml (closes #353) Pin toolchain to match CI: stable + rustfmt/clippy + wasm32 target. --- rust-toolchain.toml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 rust-toolchain.toml diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 00000000..c38c8a87 --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,4 @@ +[toolchain] +channel = "stable" +components = ["rustfmt", "clippy"] +targets = ["wasm32-unknown-unknown"]