Skip to content

Commit 3294fda

Browse files
[ci] Roll pinned stable toolchain (#2480)
1 parent 77143d8 commit 3294fda

File tree

8 files changed

+3
-28
lines changed

8 files changed

+3
-28
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ zerocopy-panic-in-const-and-vec-try-reserve-1-57-0 = "1.57.0"
5959

6060
[package.metadata.ci]
6161
# The versions of the stable and nightly compiler toolchains to use in CI.
62-
pinned-stable = "1.85.1"
62+
pinned-stable = "1.86.0"
6363
pinned-nightly = "nightly-2025-03-31"
6464

6565
[package.metadata.docs.rs]

tests/ui-stable/transmute-mut-src-dst-not-references.stderr

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,6 @@ note: in edition 2024, the requirement `!: FromBytes` will fail
3030
| ^^^^^^^^^^^^^^^^^^^^^^
3131
= note: `#[warn(dependency_on_unit_never_type_fallback)]` on by default
3232
= note: this warning originates in the macro `transmute_mut` (in Nightly builds, run with -Z macro-backtrace for more info)
33-
help: use `()` annotations to avoid fallback changes
34-
--> src/macros.rs
35-
|
36-
| let e: &mut () = $e;
37-
| ~~
3833

3934
warning: never type fallback affects this call to an `unsafe` function
4035
--> tests/ui-stable/transmute-mut-src-dst-not-references.rs:17:44

tests/ui-stable/transmute-mut-src-immutable.stderr

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,6 @@ note: in edition 2024, the requirement `!: FromBytes` will fail
2626
| ^^^^^^^^^^^^^^^^^^^^
2727
= note: `#[warn(dependency_on_unit_never_type_fallback)]` on by default
2828
= note: this warning originates in the macro `transmute_mut` (in Nightly builds, run with -Z macro-backtrace for more info)
29-
help: use `()` annotations to avoid fallback changes
30-
--> src/macros.rs
31-
|
32-
| let e: &mut () = $e;
33-
| ~~
3429

3530
warning: never type fallback affects this call to an `unsafe` function
3631
--> tests/ui-stable/transmute-mut-src-immutable.rs:17:22

tests/ui-stable/transmute-mut-src-not-a-reference.stderr

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,6 @@ note: in edition 2024, the requirement `!: FromBytes` will fail
3030
| ^^^^^^^^^^^^^^^^^^^^^^
3131
= note: `#[warn(dependency_on_unit_never_type_fallback)]` on by default
3232
= note: this warning originates in the macro `transmute_mut` (in Nightly builds, run with -Z macro-backtrace for more info)
33-
help: use `()` annotations to avoid fallback changes
34-
--> src/macros.rs
35-
|
36-
| let e: &mut () = $e;
37-
| ~~
3833

3934
warning: never type fallback affects this call to an `unsafe` function
4035
--> tests/ui-stable/transmute-mut-src-not-a-reference.rs:17:38

tests/ui-stable/transmute-ref-src-dst-not-references.stderr

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,6 @@ note: in edition 2024, the requirement `!: IntoBytes` will fail
9393
| ^^^^^^^^^^^^^^^^^^^^^^
9494
= note: `#[warn(dependency_on_unit_never_type_fallback)]` on by default
9595
= note: this warning originates in the macro `transmute_ref` (in Nightly builds, run with -Z macro-backtrace for more info)
96-
help: use `()` annotations to avoid fallback changes
97-
--> src/macros.rs
98-
|
99-
| let e: &() = $e;
100-
| ~~
10196

10297
warning: never type fallback affects this call to an `unsafe` function
10398
--> tests/ui-stable/transmute-ref-src-dst-not-references.rs:17:39

tests/ui-stable/transmute-ref-src-not-a-reference.stderr

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,6 @@ note: in edition 2024, the requirement `!: IntoBytes` will fail
3030
| ^^^^^^^^^^^^^^^^^^^^^^
3131
= note: `#[warn(dependency_on_unit_never_type_fallback)]` on by default
3232
= note: this warning originates in the macro `transmute_ref` (in Nightly builds, run with -Z macro-backtrace for more info)
33-
help: use `()` annotations to avoid fallback changes
34-
--> src/macros.rs
35-
|
36-
| let e: &() = $e;
37-
| ~~
3833

3934
warning: never type fallback affects this call to an `unsafe` function
4035
--> tests/ui-stable/transmute-ref-src-not-a-reference.rs:17:34

zerocopy-derive/tests/ui-stable/union.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ warning: unexpected `cfg` condition name: `zerocopy_derive_union_into_bytes`
6868
39 | #[derive(IntoBytes)]
6969
| ^^^^^^^^^
7070
|
71-
= help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows`
71+
= help: expected names are: `docsrs`, `feature`, and `test` and 31 more
7272
= note: using a cfg inside a derive macro will use the cfgs from the destination crate and not the ones from the defining crate
7373
= help: try referring to `IntoBytes` crate for guidance on how handle this unexpected cfg
7474
= help: the derive macro `IntoBytes` may come from an old version of the `zerocopy_derive` crate, try updating your dependency with `cargo update -p zerocopy_derive`

zerocopy-derive/tests/ui-stable/union_into_bytes_cfg/union_into_bytes_cfg.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ warning: unexpected `cfg` condition name: `zerocopy_derive_union_into_bytes`
1313
20 | #[derive(IntoBytes)]
1414
| ^^^^^^^^^
1515
|
16-
= help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows`
16+
= help: expected names are: `docsrs`, `feature`, and `test` and 31 more
1717
= note: using a cfg inside a derive macro will use the cfgs from the destination crate and not the ones from the defining crate
1818
= help: try referring to `IntoBytes` crate for guidance on how handle this unexpected cfg
1919
= help: the derive macro `IntoBytes` may come from an old version of the `zerocopy_derive` crate, try updating your dependency with `cargo update -p zerocopy_derive`

0 commit comments

Comments
 (0)