diff --git a/zsw-egui/src/lib.rs b/zsw-egui/src/lib.rs index 1f255a1..05cbe01 100644 --- a/zsw-egui/src/lib.rs +++ b/zsw-egui/src/lib.rs @@ -1,7 +1,7 @@ //! Egui wrapper // Features -#![feature(must_not_suspend, strict_provenance, never_type)] +#![feature(must_not_suspend, never_type)] // Imports use { diff --git a/zsw-error/src/lib.rs b/zsw-error/src/lib.rs index 6f69f80..2f783c1 100644 --- a/zsw-error/src/lib.rs +++ b/zsw-error/src/lib.rs @@ -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}; diff --git a/zsw-util/src/lib.rs b/zsw-util/src/lib.rs index 5d4589e..9844587 100644 --- a/zsw-util/src/lib.rs +++ b/zsw-util/src/lib.rs @@ -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 diff --git a/zsw-util/src/walk_dir.rs b/zsw-util/src/walk_dir.rs index 0990cc0..32e01ad 100644 --- a/zsw-util/src/walk_dir.rs +++ b/zsw-util/src/walk_dir.rs @@ -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(fut: &Option) -> Option<&'static str> { fut.as_ref().map(|_| "...") } diff --git a/zsw-wgpu/src/lib.rs b/zsw-wgpu/src/lib.rs index df1ed45..98176fa 100644 --- a/zsw-wgpu/src/lib.rs +++ b/zsw-wgpu/src/lib.rs @@ -1,7 +1,7 @@ //! Wgpu wrapper // Features -#![feature(must_not_suspend, strict_provenance)] +#![feature(must_not_suspend)] // Modules mod renderer; diff --git a/zsw/src/main.rs b/zsw/src/main.rs index 0472d64..8df9f91 100644 --- a/zsw/src/main.rs +++ b/zsw/src/main.rs @@ -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 )]