From: Leonardo L. Date: Tue, 21 Jan 2025 19:50:30 +0000 (-0300) Subject: chore: fix punctuation and use `rustup override set` instead X-Git-Tag: bitcoind_rpc-0.18.0~8^2 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/database/scripts/trait.StdError.html?a=commitdiff_plain;h=c8b55da39913ddaf11d26f09d92034aef4f550e0;p=bdk chore: fix punctuation and use `rustup override set` instead - fix some nits and punctuation typos. - recommend usage of `rustup override set` instead of `rustup default` command. Co-authored-by: Steve Myers --- diff --git a/README.md b/README.md index 5ed54e97..c6c212f1 100644 --- a/README.md +++ b/README.md @@ -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` @@ -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 diff --git a/ci/pin-msrv.sh b/ci/pin-msrv.sh index 07454d58..214ab649 100755 --- a/ci/pin-msrv.sh +++ b/ci/pin-msrv.sh @@ -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"