Updated to rustc 1.86.0-nightly (99768c80a 2025-01-23).

This commit is contained in:
Filipe Rodrigues 2025-03-19 17:37:49 +00:00
parent d97caaa203
commit 9b4d6175ee
Signed by: zenithsiz
SSH Key Fingerprint: SHA256:Mb5ppb3Sh7IarBO/sBTXLHbYEOz37hJAlslLQPPAPaU
6 changed files with 4 additions and 7 deletions

View File

@ -1,7 +1,7 @@
//! Egui wrapper
// Features
#![feature(must_not_suspend, strict_provenance, never_type)]
#![feature(must_not_suspend, never_type)]
// Imports
use {

View File

@ -1,7 +1,7 @@
//! App error
// Features
#![feature(must_not_suspend, strict_provenance, never_type)]
#![feature(must_not_suspend, never_type)]
// Imports
use std::{io, sync::Arc};

View File

@ -10,9 +10,7 @@
if_let_guard,
let_chains,
extend_one,
async_closure,
must_not_suspend,
strict_provenance,
impl_trait_in_assoc_type,
try_trait_v2,
assert_matches

View File

@ -90,6 +90,7 @@ impl WalkDir {
impl fmt::Debug for WalkDir {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
#[expect(clippy::ref_option, reason = "We don't want to use `.as_ref()` on the caller")]
fn show_fut<F>(fut: &Option<F>) -> Option<&'static str> {
fut.as_ref().map(|_| "...")
}

View File

@ -1,7 +1,7 @@
//! Wgpu wrapper
// Features
#![feature(must_not_suspend, strict_provenance)]
#![feature(must_not_suspend)]
// Modules
mod renderer;

View File

@ -7,7 +7,6 @@
#![feature(
never_type,
decl_macro,
async_closure,
assert_matches,
type_alias_impl_trait,
path_file_prefix,
@ -17,7 +16,6 @@
generic_const_exprs,
hash_raw_entry,
must_not_suspend,
strict_provenance,
anonymous_lifetime_in_impl_trait,
try_blocks
)]