Skip to content

Commit

Permalink
Upgrade dependencies and rust to 1.74
Browse files Browse the repository at this point in the history
Upgrade rust to 1.72
Upgrade all dependencies
Fixing ring to trust SystemRNG with wasm32-unknown-unknown

Fix clippy following rust 1.74 upgrade
Clippy detects redundant conditions.

Add README upgrade to rust 1.74

Fix rust fmt following upgrade to 1.74
  • Loading branch information
thibmeu committed Feb 29, 2024
1 parent 336e06f commit ddd1d64
Show file tree
Hide file tree
Showing 11 changed files with 262 additions and 393 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.70.0
toolchain: 1.74
override: true
- name: cargo fetch
uses: actions-rs/cargo@v1
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.70.0
toolchain: 1.74
override: true
- name: Add target
run: rustup target add ${{ matrix.target }}
Expand All @@ -63,7 +63,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.70.0
toolchain: 1.74
override: true
- name: cargo check
uses: actions-rs/cargo@v1
Expand All @@ -72,20 +72,20 @@ jobs:
args: --tests --examples --benches --all-features

clippy:
name: Clippy (1.70.0)
name: Clippy (1.74)
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.70.0
toolchain: 1.74
components: clippy
override: true
- name: Clippy check
uses: actions-rs/clippy-check@v1
with:
name: Clippy (1.70.0)
name: Clippy (1.74)
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features --all-targets -- -D warnings

Expand All @@ -97,7 +97,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.70.0
toolchain: 1.74
override: true
- name: cargo fetch
uses: actions-rs/cargo@v1
Expand All @@ -120,7 +120,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.70.0
toolchain: 1.74
components: rustfmt
override: true
- name: Check formatting
Expand Down
Loading

0 comments on commit ddd1d64

Please sign in to comment.