From 7291702f6b4fff10f2470f084abe0785b95659a0 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Thu, 21 Jan 2021 14:45:33 -0500 Subject: Remove all rustc benchmarks Co-authored-by: Christian Duerr --- alacritty/Cargo.toml | 1 - alacritty/src/main.rs | 1 - 2 files changed, 2 deletions(-) (limited to 'alacritty') diff --git a/alacritty/Cargo.toml b/alacritty/Cargo.toml index b1055f5c..73724fbe 100644 --- a/alacritty/Cargo.toml +++ b/alacritty/Cargo.toml @@ -65,4 +65,3 @@ default = ["wayland", "x11"] x11 = ["copypasta/x11", "glutin/x11", "x11-dl", "png"] wayland = ["copypasta/wayland", "glutin/wayland", "wayland-client"] nightly = [] -bench = [] diff --git a/alacritty/src/main.rs b/alacritty/src/main.rs index 0e27c893..1bcf64b9 100644 --- a/alacritty/src/main.rs +++ b/alacritty/src/main.rs @@ -3,7 +3,6 @@ #![warn(rust_2018_idioms, future_incompatible)] #![deny(clippy::all, clippy::if_not_else, clippy::enum_glob_use, clippy::wrong_pub_self_convention)] #![cfg_attr(feature = "cargo-clippy", deny(warnings))] -#![cfg_attr(all(test, feature = "bench"), feature(test))] // With the default subsystem, 'console', windows creates an additional console // window for the program. // This is silently ignored on non-windows systems. -- cgit