Skip to content

Commit

Permalink
fix: update rust version to 1.61
Browse files Browse the repository at this point in the history
fixes #17
  • Loading branch information
jmg-duarte committed Aug 15, 2024
1 parent 1ebb5b1 commit 1fba5bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ on:

jobs:
tests:
name: Rust 1.56.0
name: Rust 1.61.0
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.56.0
- uses: dtolnay/rust-toolchain@1.61.0
- run: cargo test

clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.56.0
- uses: dtolnay/rust-toolchain@1.61.0
with:
components: clippy
- run: cargo clippy -- --no-deps -Dclippy::all
Expand All @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.56.0
- uses: dtolnay/rust-toolchain@1.61.0
with:
components: rustfmt
- run: cargo fmt --all -- --check
Expand Down
2 changes: 1 addition & 1 deletion tests/fail/04-no-full-pub.stderr
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
error: `pub` visibility breaks the seal as allows to use it outside its crate.
Consider tightening the visibility (e.g. `pub(crate)`) if you actually need sealing.
Consider tightening the visibility (e.g. `pub(crate)`) if you actually need sealing.
--> tests/fail/04-no-full-pub.rs:8:26
|
8 | #[sealed(pub)]
Expand Down

0 comments on commit 1fba5bf

Please sign in to comment.