Skip to content

Commit 0f0e0b5

Browse files
committed
build: update to nightly-2025-07-20 and use --locked for cargo-bloat
- Update rust-toolchain.toml to nightly-2025-07-20 - Add --locked flag to cargo install cargo-bloat in CI workflows to avoid dependency version conflicts
1 parent db1bb45 commit 0f0e0b5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
sudo apt-get install -qy build-essential curl gcc-multilib gcc-riscv64-unknown-elf git
3131
3232
- name: Install cargo-bloat
33-
run: cargo install cargo-bloat
33+
run: cargo install cargo-bloat --locked
3434

3535
- name: Verify Cargo.lock is up to date
3636
run: |

.github/workflows/size-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
sudo apt-get install -qy build-essential curl gcc-multilib gcc-riscv64-unknown-elf git
3131
3232
- name: Install cargo-bloat
33-
run: cargo install cargo-bloat
33+
run: cargo install cargo-bloat --locked
3434

3535
- name: Build current branch
3636
run: |

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Licensed under the Apache-2.0 license
22

33
[toolchain]
4-
channel = "nightly-2024-09-17"
4+
channel = "nightly-2025-07-20"
55
components = ["rust-src", "rustfmt", "clippy"]
66
targets = ["thumbv7em-none-eabihf"]
77
profile = "minimal"

0 commit comments

Comments
 (0)