File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
dev-tools/omdb/src/bin/omdb Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ disallowed-methods = [
26
26
]
27
27
disallowed-types = [
28
28
{ path = " once_cell::unsync::Lazy" , reason = " use `std::cell::LazyCell` instead" },
29
- { path = " once_cell::unsync::LazyCell " , reason = " use `std::cell::LazyCell ` instead" },
29
+ { path = " once_cell::sync::Lazy " , reason = " use `std::sync::LazyLock ` instead" },
30
30
]
31
31
32
32
[[disallowed-macros ]]
Original file line number Diff line number Diff line change @@ -4055,7 +4055,7 @@ async fn cmd_nexus_support_bundles_delete(
4055
4055
}
4056
4056
4057
4057
async fn write_stream_to_sink (
4058
- mut stream : impl futures:: Stream < Item = anyhow:: Result < bytes:: Bytes > > ,
4058
+ stream : impl futures:: Stream < Item = anyhow:: Result < bytes:: Bytes > > ,
4059
4059
mut sink : impl std:: io:: Write ,
4060
4060
) -> Result < ( ) , anyhow:: Error > {
4061
4061
let mut stream = std:: pin:: pin!( stream) ;
Original file line number Diff line number Diff line change @@ -593,8 +593,8 @@ impl DnsConfigBuilder {
593
593
. get ( & ServiceName :: BoundaryNtp )
594
594
. map ( |zone2port| {
595
595
let records = zone2port
596
- . iter ( )
597
- . map ( |( zone, _port ) | {
596
+ . keys ( )
597
+ . map ( |zone| {
598
598
let zone_ip = self . zones . get ( & zone) . expect (
599
599
"service_backend_zone() ensures zones are defined" ,
600
600
) ;
Original file line number Diff line number Diff line change 2
2
# We choose a specific toolchain (rather than "stable") for repeatability. The
3
3
# intent is to keep this up-to-date with recently-released stable Rust.
4
4
5
- channel = " 1.87 .0"
5
+ channel = " 1.88 .0"
6
6
profile = " default"
You can’t perform that action at this time.
0 commit comments