Skip to content

Commit

Permalink
rust: update nightly to Oct 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
bradjc committed Oct 9, 2024
1 parent 90f746f commit bc47c97
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"editor.defaultFormatter": "rust-lang.rust-analyzer",
"editor.formatOnSave": true,
"rust-analyzer.server.extraEnv": {
"RUSTUP_TOOLCHAIN": "nightly-2024-07-08"
"RUSTUP_TOOLCHAIN": "nightly-2024-10-09"
},
"rust-analyzer.check.allTargets": false,
}
4 changes: 2 additions & 2 deletions doc/Getting_Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ of installing some of these tools, but you can also install them yourself.

#### Rust (nightly)

We are using `nightly-2024-07-08`. We require
We are using `nightly-2024-10-09`. We require
installing it with [rustup](http://www.rustup.rs) so you can manage multiple
versions of Rust and continue using stable versions for other Rust code:

Expand All @@ -87,7 +87,7 @@ to your `$PATH`.
Then install the correct nightly version of Rust:

```bash
$ rustup install nightly-2024-07-08
$ rustup install nightly-2024-10-09
```

### Compiling the Kernel
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
# Copyright Tock Contributors 2023.

[toolchain]
channel = "nightly-2024-07-08"
channel = "nightly-2024-10-09"
components = ["miri", "llvm-tools", "rust-src", "rustfmt", "clippy", "rust-analyzer"]
targets = ["thumbv6m-none-eabi", "thumbv7em-none-eabi", "thumbv7em-none-eabihf", "riscv32imc-unknown-none-elf", "riscv32imac-unknown-none-elf"]
2 changes: 1 addition & 1 deletion tools/netlify-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ set -u
set -x

# Install rust stuff that we need
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly-2024-07-08
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly-2024-10-09

# And fixup path for the newly installed rust stuff
export PATH="$PATH:$HOME/.cargo/bin"
Expand Down

0 comments on commit bc47c97

Please sign in to comment.