Skip to content

Commit

Permalink
Use 1.63 MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
jbesraa committed Nov 15, 2023
1 parent d1d1a8a commit 46ebf11
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 25 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
rust:
- 1.57.0 # MSRV
- 1.63.0 # MSRV
- stable
- nightly

Expand All @@ -24,17 +24,6 @@ jobs:
with:
toolchain: ${{ matrix.rust }}
override: true
- name: Fixes for MSRV
if: matrix.rust == '1.57.0'
run: |
cargo update
cargo update -p log --precise 0.4.18
cargo update -p tempfile --precise 3.6.0
cargo update -p flate2 --precise 1.0.26
cargo update -p minreq --precise 2.8.0
cargo update -p rustls --precise 0.20.8
cargo update -p webpki --precise 0.22.2
cargo update -p byteorder --precise 1.4.3
- name: test
run: cargo test --verbose --all-features --lib

Expand Down
19 changes: 6 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,19 +72,12 @@ Seeking review of the code that verifies there is no overpayment. Contributions

## Minimum Supported Rust Version (MSRV)

The `payjoin` library should always compile with any combination of features on Rust **1.57.0**.

To build and test with the MSRV you will need to pin the below dependency versions:

```shell
cargo update -p log --precise 0.4.18
cargo update -p tempfile --precise 3.6.0
cargo update -p flate2 --precise 1.0.26
cargo update -p minreq --precise 2.8.0
cargo update -p rustls --precise 0.20.8
cargo update -p webpki --precise 0.22.2
cargo update -p byteorder --precise 1.4.3
```
The `payjoin` library MSRV is **1.63.0**.

The `payjoin` library is reguraly tested aginst **1.63.0/stable/nightly**.

The `payjoin-cli` package is not maintaing MSRV and
it is reguraly tested against **stable/nightly**.

## License

Expand Down

0 comments on commit 46ebf11

Please sign in to comment.