diff options
author | James McCoy <jamessan@jamessan.com> | 2021-01-21 14:45:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-21 19:45:33 +0000 |
commit | 7291702f6b4fff10f2470f084abe0785b95659a0 (patch) | |
tree | e39a9c24608db9b661d947059acac18b30d90ca5 /alacritty | |
parent | 753c4ed19ed026fabfad98b9874c54eb4bdcf8f0 (diff) | |
download | r-alacritty-7291702f6b4fff10f2470f084abe0785b95659a0.tar.gz r-alacritty-7291702f6b4fff10f2470f084abe0785b95659a0.tar.bz2 r-alacritty-7291702f6b4fff10f2470f084abe0785b95659a0.zip |
Remove all rustc benchmarks
Co-authored-by: Christian Duerr <contact@christianduerr.com>
Diffstat (limited to 'alacritty')
-rw-r--r-- | alacritty/Cargo.toml | 1 | ||||
-rw-r--r-- | alacritty/src/main.rs | 1 |
2 files changed, 0 insertions, 2 deletions
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. |