ci: pin tokio to 1.29.1 and cc to 1.0.81 to build with MSRV 1.57.0

This commit is contained in:
Steve Myers 2023-08-09 14:13:44 -05:00
parent 7231039e81
commit 361f925526
No known key found for this signature in database
GPG Key ID: 8105A46B22C2D051
2 changed files with 8 additions and 0 deletions

View File

@ -69,6 +69,8 @@ jobs:
cargo update -p zip --precise "0.6.3"
cargo update -p base64ct --precise "1.5.3"
cargo update -p rustix --precise "0.37.23"
cargo update -p tokio --precise "1.29.1"
cargo update -p cc --precise "1.0.81"
- name: Build
run: cargo build --features ${{ matrix.features }} --no-default-features
- name: Clippy
@ -227,5 +229,7 @@ jobs:
cargo update -p zip --precise "0.6.3"
cargo update -p base64ct --precise "1.5.3"
cargo update -p rustix --precise "0.37.23"
cargo update -p tokio --precise "1.29.1"
cargo update -p cc --precise "1.0.81"
- name: Test
run: cargo test --features test-hardware-signer

View File

@ -223,4 +223,8 @@ cargo update -p zip --precise "0.6.3"
cargo update -p base64ct --precise "1.5.3"
# rustix 0.38.0 has MSRV 1.65.0
cargo update -p rustix --precise "0.37.23"
# tokio 0.30.0 has MSRV 1.63.0
cargo update -p tokio --precise "1.29.1"
# cc 1.0.82 is throwing error with rust 1.57.0, "error[E0599]: no method named `retain_mut`..."
cargo update -p cc --precise "1.0.81"
```