Files
risc0/rust-toolchain.toml
Victor Graf 0034d08492 Update Rust toolchain version in rust-toolchain.toml (#2584)
I've started to see some issues with crates requiring Rust tool chains
newer than 1.77. This PR bumps the Rust toolchain version to 1.81, which
coincides with the latest guest toolchain (although there is no strong
requirement that these coincide).

I opened this in reaction to build failures in the `risc0-ethereum` job.
There is also the following, more targeted solution to that exact
problem. https://github.com/risc0/risc0/pull/2586
2024-12-02 21:28:54 +00:00

6 lines
133 B
TOML

[toolchain]
channel = "1.81"
components = ["clippy", "rustfmt", "rust-src"]
targets = ["wasm32-unknown-unknown"]
profile = "minimal"