From fbfe86fffe2935f4d2c4d7456fd613de126b1430 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Wed, 15 Apr 2020 15:01:46 +0200 Subject: [PATCH] =?UTF-8?q?Remove=20unused=20`#![feature(=E2=80=A6)]`=20at?= =?UTF-8?q?tributes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/script/lib.rs | 1 - components/script_layout_interface/lib.rs | 1 - ports/glutin/main.rs | 2 -- 3 files changed, 4 deletions(-) diff --git a/components/script/lib.rs b/components/script/lib.rs index 07090f4716b..996480cff53 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -7,7 +7,6 @@ #![feature(const_transmute)] #![feature(core_intrinsics)] #![feature(drain_filter)] -#![feature(inner_deref)] #![feature(plugin)] #![feature(register_tool)] #![deny(unsafe_code)] diff --git a/components/script_layout_interface/lib.rs b/components/script_layout_interface/lib.rs index 651c0815f9f..374c650986d 100644 --- a/components/script_layout_interface/lib.rs +++ b/components/script_layout_interface/lib.rs @@ -7,7 +7,6 @@ //! to depend on script. #![deny(unsafe_code)] -#![feature(box_into_raw_non_null)] #[macro_use] extern crate html5ever; diff --git a/ports/glutin/main.rs b/ports/glutin/main.rs index 50da58121bc..85c237c55db 100644 --- a/ports/glutin/main.rs +++ b/ports/glutin/main.rs @@ -15,8 +15,6 @@ //! //! [glutin]: https://github.com/tomaka/glutin -#![feature(core_intrinsics)] - #[cfg(not(target_os = "android"))] include!("main2.rs");