From 67948f73735e96e79b5a5e2ba416cdb4f65de6ab Mon Sep 17 00:00:00 2001 From: Chris McDonald Date: Tue, 11 Apr 2023 15:01:21 -0600 Subject: [PATCH] Fix clippy CI: once_cell is stabilized (#517) This feature has been stabilized in 1.70-nightly, so remove the feature flag so that Clippy stops complaining about it. --- src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index c47a1e5..4832f93 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,6 @@ #![feature(proc_macro_hygiene)] #![feature(const_mut_refs)] #![feature(exclusive_range_pattern)] -#![feature(once_cell)] #![feature(c_variadic)] #![allow( clippy::borrow_interior_mutable_const,