feat: enforce stable rust with a rust-toolchain.toml

This commit adds a rust-toolchain.toml which helps maintain
the compiler version across users. We don't pin the latest
version, assuming that stable rust does not have too many
breaking changes across versions. Although new clippy lints
will always probably cause some problems.
This commit is contained in:
Fisher Darling 2024-09-27 08:27:02 +02:00
parent 6b48ef7521
commit e97719bec1

3
rust-toolchain.toml Normal file
View file

@ -0,0 +1,3 @@
[toolchain]
channel = "stable"
targets = ["wasm32-unknown-unknown"]