Skip to content

Commit

Permalink
Bump the minor-changes group with 1 update (#23)
Browse files Browse the repository at this point in the history
Bumps the minor-changes group with 1 update:
[base64](https://github.com/marshallpierce/rust-base64).

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alex Ostrovski <ostrovski.alex@gmail.com>
  • Loading branch information
dependabot[bot] and slowli authored Feb 3, 2024
1 parent 323cfee commit 7c3508d
Show file tree
Hide file tree
Showing 7 changed files with 71 additions and 76 deletions.
2 changes: 1 addition & 1 deletion .clippy.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Minimum supported Rust version. Should be consistent with CI and mentions
# in crate READMEs.
msrv = "1.66"
msrv = "1.67"
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

env:
# Minimum supported Rust version.
msrv: 1.66.0
msrv: 1.67.0
# Nightly Rust necessary for the no-std job.
nightly: nightly-2023-09-09

Expand All @@ -17,15 +17,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.msrv }}

- name: Cache cargo build
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: target
key: ${{ runner.os }}-msrv-cargo-${{ hashFiles('**/Cargo.lock') }}
Expand All @@ -40,21 +40,21 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt, clippy
- name: Install cargo-deny
uses: baptiste0928/cargo-install@v2
uses: baptiste0928/cargo-install@v3
with:
crate: cargo-deny
version: "^0.14"

- name: Cache cargo build
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
Expand All @@ -80,7 +80,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Rust
uses: dtolnay/rust-toolchain@master
Expand All @@ -89,7 +89,7 @@ jobs:
targets: thumbv7m-none-eabi

- name: Cache cargo build
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: target
key: ${{ runner.os }}-nostd-cargo-${{ hashFiles('**/Cargo.lock') }}
Expand All @@ -109,15 +109,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable

- name: Cache cargo build
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: target
key: ${{ runner.os }}-document-cargo-${{ hashFiles('**/Cargo.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)

### Changed

- Bump MSRV to 1.66.
- Bump MSRV to 1.67.

## 0.3.0 - 2022-11-01

Expand Down
Loading

0 comments on commit 7c3508d

Please sign in to comment.