mirror of
https://github.com/Zenithsiz/zsw.git
synced 2026-02-03 17:52:15 +00:00
Updated to rustc 1.86.0-nightly (99768c80a 2025-01-23).
This commit is contained in:
parent
d97caaa203
commit
9b4d6175ee
@ -1,7 +1,7 @@
|
||||
//! Egui wrapper
|
||||
|
||||
// Features
|
||||
#![feature(must_not_suspend, strict_provenance, never_type)]
|
||||
#![feature(must_not_suspend, never_type)]
|
||||
|
||||
// Imports
|
||||
use {
|
||||
|
||||
@ -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};
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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(|_| "...")
|
||||
}
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
//! Wgpu wrapper
|
||||
|
||||
// Features
|
||||
#![feature(must_not_suspend, strict_provenance)]
|
||||
#![feature(must_not_suspend)]
|
||||
|
||||
// Modules
|
||||
mod renderer;
|
||||
|
||||
@ -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
|
||||
)]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user