Skip to content

Commit

Permalink
chore: fix punctuation and use rustup override set instead
Browse files Browse the repository at this point in the history
- fix some nits and punctuation typos.
- recommend usage of `rustup override set` instead of `rustup default` command.

Co-authored-by: Steve Myers <[email protected]>
  • Loading branch information
oleonardolima and notmandatory authored Jan 21, 2025
1 parent ac3dcd7 commit d411cec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Fully working examples of how to use these components are in `/example-crates`:
[`bdk_chain`]: https://docs.rs/bdk-chain/

## Minimum Supported Rust Version (MSRV)
The BDK library maintains a MSRV of 1.63.0. This includes the following crates
The BDK library maintains a MSRV of 1.63.0. This includes the following crates:

- `bdk_core`
- `bdk_chain`
Expand All @@ -73,7 +73,7 @@ The BDK library maintains a MSRV of 1.63.0. This includes the following crates

The MSRV of `bdk_electrum` is 1.75.0.

To build with the MSRV of 1.63.0 you will need to pin dependencies by running the [`pin-msrv.sh`](./ci/pin-msrv.sh) script
To build with the MSRV of 1.63.0 you will need to pin dependencies by running the [`pin-msrv.sh`](./ci/pin-msrv.sh) script.

## License

Expand Down
2 changes: 1 addition & 1 deletion ci/pin-msrv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set -euo pipefail
# To pin deps, switch toolchain to MSRV and execute the below updates

# cargo clean
# rustup default 1.63.0
# rustup override set 1.63.0

cargo update -p zstd-sys --precise "2.0.8+zstd.1.5.5"
cargo update -p time --precise "0.3.20"
Expand Down

0 comments on commit d411cec

Please sign in to comment.