File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ zerocopy-panic-in-const-and-vec-try-reserve-1-57-0 = "1.57.0"
6060[package .metadata .ci ]
6161# The versions of the stable and nightly compiler toolchains to use in CI.
6262pinned-stable = " 1.87.0"
63- pinned-nightly = " nightly-2025-06-09 "
63+ pinned-nightly = " nightly-2025-06-12 "
6464
6565[package .metadata .docs .rs ]
6666all-features = true
Original file line number Diff line number Diff line change @@ -397,6 +397,9 @@ macro_rules! impl_or_verify {
397397 ( @verify $trait: ident, $impl_block: tt) => {
398398 #[ cfg( any( feature = "derive" , test) ) ]
399399 {
400+ // On some toolchains, `Subtrait` triggers the `dead_code` lint
401+ // because it is implemented but never used.
402+ #[ allow( dead_code) ]
400403 trait Subtrait : $trait { }
401404 $impl_block
402405 } ;
You can’t perform that action at this time.
0 commit comments