From d911f22401f2fc0b4c14f432e323a9fb6a3b82c5 Mon Sep 17 00:00:00 2001 From: Yuekai Jia Date: Thu, 20 Apr 2023 23:34:16 +0800 Subject: [PATCH] Remove `impl const` and `~const` in the standard library Otherwise it will fail to compile on nightly-2023-04-19 See https://github.com/rust-lang/rust/issues/110395 --- src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index d700595..57e70a4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,7 +11,6 @@ //! methods for manipulating various page table entries. #![no_std] -#![feature(const_trait_impl)] #![feature(doc_auto_cfg)] #![feature(doc_cfg)]