From d4a44dddd9c894b40d672255861667e5b0b9b93e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dj8yf0=CE=BCl?= Date: Thu, 6 Jun 2024 22:35:44 +0300 Subject: [PATCH] chore: bump MSRV to 1.73.0 --- .github/workflows/test.yml | 5 +++-- README.md | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) 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