diff options
Diffstat (limited to 'rust-toolchain.toml')
-rw-r--r-- | rust-toolchain.toml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..145ef55 --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,14 @@ +# Before upgrading check that everything is available on all tier1 targets here: +# https://rust-lang.github.io/rustup-components-history +[toolchain] +channel = "nightly-2022-07-28" +components = [ "rust-src", "rustfmt" ] +targets = [ + "thumbv6m-none-eabi", + "thumbv7em-none-eabi", + "riscv32imc-unknown-none-elf", + "riscv32imac-unknown-none-elf", + "i686-unknown-linux-gnu", + "x86_64-unknown-linux-gnu", + "riscv64gc-unknown-linux-gnu", +] |