diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca08fda..c983a49 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,11 +7,11 @@ 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: @@ -19,7 +19,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: clippy - run: cargo clippy -- --no-deps -Dclippy::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 diff --git a/tests/fail/04-no-full-pub.stderr b/tests/fail/04-no-full-pub.stderr index 34115fd..2b4a660 100644 --- a/tests/fail/04-no-full-pub.stderr +++ b/tests/fail/04-no-full-pub.stderr @@ -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)]