CI: Update MSRV pins

Pinning is broken again, update the pins it CI so that the following
sequence of commands would work

```bash
rm Cargo.lock
cargo +1.48 update -p wasm-bindgen-test --precise 0.3.34
cargo +1.48 update -p serde_test --precise 1.0.175
cargo +1.48 test --all-features
```

Note, solely out of interest, `cargo +1.48 build` does not need
pinning (at the moment :)
This commit is contained in:
Tobin C. Harding 2023-08-08 11:56:26 +10:00
parent 29e1a0c44e
commit 79e184f08a
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ fi
# Pin dependencies as required if we are using MSRV toolchain. # Pin dependencies as required if we are using MSRV toolchain.
if cargo --version | grep "1\.48"; then if cargo --version | grep "1\.48"; then
cargo update -p wasm-bindgen-test --precise 0.3.34 cargo update -p wasm-bindgen-test --precise 0.3.34
cargo update -p serde --precise 1.0.156 cargo update -p serde_test --precise 1.0.175
fi fi
# Test if panic in C code aborts the process (either with a real panic or with SIGILL) # Test if panic in C code aborts the process (either with a real panic or with SIGILL)