From 6fec9ca38f713d9353bb9a1f7b3038b8c1563fc9 Mon Sep 17 00:00:00 2001 From: Geert Stappers Date: Wed, 8 Jun 2022 09:06:27 +0200 Subject: [PATCH] features removed as adviced by rustc --explain E0557 --- src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 5015fe9..73e1bda 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,10 +1,8 @@ //! Definitions of register addresses and bits within those registers #![feature(llvm_asm)] -#![feature(const_fn)] #![feature(associated_type_defaults)] #![feature(lang_items)] -#![feature(unwind_attributes)] #![feature(proc_macro_hygiene)] #![no_std]