Skip to content

Commit 63b7c46

Browse files
committed
README: Install tools with --locked
Fixes: #133 See: https://doc.rust-lang.org/cargo/commands/cargo-install.html#dealing-with-the-lockfile Signed-off-by: Daniel Schaefer <[email protected]>
1 parent 585d33b commit 63b7c46

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,9 @@ Prepare Rust toolchain (once):
131131

132132
```sh
133133
rustup target install thumbv6m-none-eabi
134-
cargo install flip-link
135-
cargo install cargo-make
136-
cargo install elf2uf2-rs
134+
cargo install flip-link --locked
135+
cargo install cargo-make --locked
136+
cargo install elf2uf2-rs --locked
137137
```
138138

139139
Build:
@@ -161,7 +161,7 @@ Tracking issue: https://github.com/rust-lang/cargo/issues/9406
161161

162162
```sh
163163
# Install cargo-make to help build it
164-
cargo install cargo-make
164+
cargo install cargo-make --locked
165165

166166
# Build it
167167
> cargo make --cwd inputmodule-control

0 commit comments

Comments
 (0)