From 4175c9b59546b78d7bab2d17a5e8c87fc633b4a5 Mon Sep 17 00:00:00 2001 From: Nicholas Nethercote Date: Mon, 16 Oct 2023 17:08:14 +1100 Subject: [PATCH] Remove unused features from `rustc_data_structures`. --- compiler/rustc_data_structures/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/compiler/rustc_data_structures/src/lib.rs b/compiler/rustc_data_structures/src/lib.rs index 461ec3a90ed..1d1a5b4d5ee 100644 --- a/compiler/rustc_data_structures/src/lib.rs +++ b/compiler/rustc_data_structures/src/lib.rs @@ -8,7 +8,6 @@ #![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")] #![feature(array_windows)] -#![feature(associated_type_bounds)] #![feature(auto_traits)] #![feature(cell_leak)] #![feature(core_intrinsics)] @@ -25,7 +24,6 @@ #![feature(negative_impls)] #![feature(test)] #![feature(thread_id_value)] -#![feature(vec_into_raw_parts)] #![feature(allocator_api)] #![feature(get_mut_unchecked)] #![feature(lint_reasons)]