diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ea0e1db5b..f1a39a515 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: platform: [ubuntu-latest, macos-latest] - toolchain: [stable, 1.72.1] + toolchain: [stable, 1.73.0] steps: - uses: actions/checkout@v3 - name: "${{ matrix.toolchain }} with rustfmt, and wasm32" @@ -26,7 +26,8 @@ jobs: - uses: Swatinem/rust-cache@v1 - name: Downgrade dependencies run: | - cargo update -p clap@4.5.4 --precise 4.4.18 + cargo update -p clap --precise 4.4.18 + cargo update -p symbolic-debuginfo --precise 12.8.0 cd examples/adder && cargo update -p clap@4.5.4 --precise 4.4.18 - name: test run: cargo test --all --features unstable,legacy diff --git a/README.md b/README.md index 9796a458d..3e7a645b8 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Crates.io version Download Reference Documentation - MSRV + MSRV Join the community on Discord GitHub Actions Build

@@ -321,7 +321,7 @@ State breaking changes (low-level serialization format of any data type) will be ### MSRV -The minimum supported Rust version is currently `1.72`. There are no guarantees that this will be upheld if a security patch release needs to come in that requires a Rust toolchain increase. +The minimum supported Rust version is currently `1.73`. There are no guarantees that this will be upheld if a security patch release needs to come in that requires a Rust toolchain increase. ## Contributing