From b4402e6c8b25dcd0a1d5651d0a5954087624ee2d Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sun, 19 Dec 2021 23:24:24 +0100 Subject: [PATCH] Remove features asm, global_asm and llvm_asm These features are now stable, as of the 19th of December! See https://github.com/rust-lang/rust/issues/87228 --- luma_core/src/lib.rs | 2 -- luma_runtime/src/lib.rs | 2 -- 2 files changed, 4 deletions(-) diff --git a/luma_core/src/lib.rs b/luma_core/src/lib.rs index da5871f..1a5f4c2 100644 --- a/luma_core/src/lib.rs +++ b/luma_core/src/lib.rs @@ -6,8 +6,6 @@ #![no_std] #![allow(unused_attributes)] #![feature( - global_asm, - asm, asm_experimental_arch, box_into_boxed_slice, allocator_api diff --git a/luma_runtime/src/lib.rs b/luma_runtime/src/lib.rs index 7c5ba30..c0993d9 100644 --- a/luma_runtime/src/lib.rs +++ b/luma_runtime/src/lib.rs @@ -6,10 +6,8 @@ //! **NOTE**: This is currently in a very experimental state and is subject to change. #![no_std] #![feature( - global_asm, asm_experimental_arch, lang_items, - llvm_asm, alloc_error_handler )]