From 4b13130fc31c13bebf38c743518fe806ec36286e Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Thu, 13 Jul 2023 10:30:34 -0700 Subject: [PATCH] deps: Upgrade to Rust v1.71. (#149) --- .github/workflows/ci.yml | 1 + CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- rust-toolchain.toml | 2 +- 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb7f96cc3..8d850ddec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,6 +69,7 @@ jobs: - uses: moonrepo/setup-rust@v0 with: bins: cargo-wasi + cache: false - run: cd plugins && cargo wasi build -p proto_wasm_test - run: cargo run -- --help - run: cargo run -- list-remote node diff --git a/CHANGELOG.md b/CHANGELOG.md index d49c53229..82e39f95a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ - Renamed `ParseVersion*` to `ParseVersionFile*`. - Published a `proto_pdk_test_utils` package for writing tests. +#### ⚙️ Internal + +- Updated Rust to v1.71. + ## 0.12.1 #### 🚀 Updates diff --git a/Cargo.toml b/Cargo.toml index 48d17b0c4..81f95b178 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ tracing = "0.1.37" # The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax) cargo-dist-version = "0.0.7" # The preferred Rust toolchain to use in CI (rustup toolchain syntax) -rust-toolchain-version = "1.70.0" +rust-toolchain-version = "1.71.0" # CI backends to support (see 'cargo dist generate-ci') ci = ["github"] # Target platforms to build apps for (Rust target-triple syntax) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 1d6628dac..8b843c417 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] profile = "default" -channel = "1.70.0" +channel = "1.71.0"