From a9472ede64d44e1d9138ca9af6c8042a9e7a30c2 Mon Sep 17 00:00:00 2001 From: Tim van der Meij Date: Wed, 3 Feb 2016 00:24:51 +0100 Subject: [PATCH] Remove old features 'clone_from_slice' and 'convert' --- components/canvas/lib.rs | 1 - components/compositing/lib.rs | 1 - components/gfx/lib.rs | 1 - 3 files changed, 3 deletions(-) diff --git a/components/canvas/lib.rs b/components/canvas/lib.rs index 5a0b1a9e596..7377e0385c7 100644 --- a/components/canvas/lib.rs +++ b/components/canvas/lib.rs @@ -2,7 +2,6 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#![feature(clone_from_slice)] #![feature(nonzero)] #![feature(plugin)] #![plugin(plugins)] diff --git a/components/compositing/lib.rs b/components/compositing/lib.rs index bf192bd044a..6434c3a8939 100644 --- a/components/compositing/lib.rs +++ b/components/compositing/lib.rs @@ -3,7 +3,6 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #![feature(box_syntax)] -#![feature(clone_from_slice)] #![feature(custom_derive)] #![feature(plugin)] #![feature(mpsc_select)] diff --git a/components/gfx/lib.rs b/components/gfx/lib.rs index 871e210f541..c088e7e9b97 100644 --- a/components/gfx/lib.rs +++ b/components/gfx/lib.rs @@ -3,7 +3,6 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ // For simd (currently x86_64/aarch64) -#![cfg_attr(any(target_arch = "x86_64", target_arch = "aarch64"), feature(convert))] #![cfg_attr(any(target_os = "linux", target_os = "android", target_os = "windows"), feature(heap_api))] #![feature(alloc)]