diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index c917fe43..409f1c93 100644 --- a/src/main.rs +++ b/src/main.rs @@ -13,7 +13,8 @@ // limitations under the License. // //! Alacritty - The GPU Enhanced Terminal -#![allow(stable_features)] // lying about question_mark because 1.14.0 isn't released! +#![feature(plugin)] +#![cfg_attr(feature = "clippy", plugin(clippy))] #[macro_use] extern crate alacritty; |