Skip to content
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

Recommend --locked #150

Merged
merged 2 commits into from
Aug 15, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/docs/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Download and install [`cmake`](https://cmake.org/download/). Make sure it's adde

You have multiple options, the two most interesting are:

- To install the latest release, run `cargo install probe-rs-tools`
- To install the latest release, run `cargo install probe-rs-tools --locked`
- To try the latest development version (a.k.a the `master` branch) with experimental and unreleased changes, run `cargo install probe-rs-tools --git https://github.com/probe-rs/probe-rs --locked`

See the [Cargo book](https://doc.rust-lang.org/cargo/commands/cargo-install.html) for details.
Expand Down
2 changes: 1 addition & 1 deletion src/docs/library/crosscompiling.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ image = "crossimage"
docker build -t crossimage crossimage/

# Run cross to compile, cross arguments are the same as the `cargo` ones
cross build --path probe-rs-tools --release --target=armv7-unknown-linux-gnueabihf
cross build -p probe-rs-tools --release --target=armv7-unknown-linux-gnueabihf

# Done
```
Expand Down
Loading