diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2017-01-06 15:14:32 -0800 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2017-01-06 15:14:32 -0800 |
commit | 085800c330e7f496ecd2298de4762a7cafcbc13a (patch) | |
tree | 08ab43955cae0a46646a24641e88ec32172ac1c5 | |
parent | 8d8fca6b039cb8b8b6481658cbb8dc978a580c2f (diff) | |
download | alacritty-085800c330e7f496ecd2298de4762a7cafcbc13a.tar.gz alacritty-085800c330e7f496ecd2298de4762a7cafcbc13a.zip |
Make plugin feature optional
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ #![feature(inclusive_range)] #![feature(drop_types_in_const)] #![feature(step_trait)] -#![feature(plugin)] +#![cfg_attr(feature = "clippy", feature(plugin))] #![cfg_attr(feature = "clippy", plugin(clippy))] #![cfg_attr(feature = "clippy", deny(clippy))] #![cfg_attr(feature = "clippy", deny(enum_glob_use))] |