Skip to content

Specify minimum rust version #77

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[toolchain]
channel = "1.85"
components = [ "rust-src", "rustfmt", "llvm-tools" ]
targets = [
Copy link

@teburd teburd Apr 1, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be great to see some additional architectures being tested for here...

x86, xtensa (esp32), and sparc (leon) are all supported by upstream rust and by zephyr
https://doc.rust-lang.org/rustc/platform-support/xtensa.html

Not a blocker, but something I'd love to see

"thumbv7em-none-eabi",
"thumbv7m-none-eabi",
"thumbv6m-none-eabi",
"thumbv7em-none-eabihf",
"thumbv8m.main-none-eabihf",
"riscv32i-unknown-none-elf",
"riscv64imac-unknown-none-elf",
]