rust-toolchain.toml
1 # [[file:../CONTRIBUTING.org::*\[\[https:/doc.rust-lang.org/cargo/reference/manifest.html#the-rust-toolchain-file\]\[rust-toolchain.toml\]\]][[[https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-toolchain-file][rust-toolchain.toml]]:1]] 2 [toolchain] 3 channel = "esp" 4 profile = "minimal" 5 # channel = "stable" 6 7 components = [ 8 "rustc", 9 "cargo", 10 "clippy", 11 "rustfmt", 12 "rust-src", 13 "rust-analyzer", 14 "rustfmt", 15 ] 16 17 targets = [ 18 "thumbv6m-none-eabi", 19 "thumbv7em-none-eabihf", 20 "thumbv8m.main-none-eabihf", 21 "riscv32imac-unknown-none-elf", 22 ] 23 # [[https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-toolchain-file][rust-toolchain.toml]]:1 ends here