diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-06-17 09:19:30 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-17 09:19:30 +0000 |
commit | 5ba34d4f9766a55a06ed5e3e44cc384af1b09f65 (patch) | |
tree | 11965fbe66f5d25ea00be1a02e74b724c4071d3c /src/main.rs | |
parent | 0f700a01bd73623cdfc0afc4a54f9e82f46d8f49 (diff) | |
download | alacritty-5ba34d4f9766a55a06ed5e3e44cc384af1b09f65.tar.gz alacritty-5ba34d4f9766a55a06ed5e3e44cc384af1b09f65.zip |
Move to cargo clippy
Using clippy as a library has been deprecated, instead the `cargo
clippy` command should be used instead. To comply with this change
clippy has been removed from the `Cargo.toml` and is now installed with
cargo when building in CI.
This has also lead to a few new clippy issues to show up, this includes
everything in the `font` subdirectory. This has been fixed and `font`
should now be covered by clippy CI too.
This also upgrades all dependencies, as a result this fixes #1341 and
this fixes #1344.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/main.rs b/src/main.rs index c45dfda5..b0e507e4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -13,12 +13,7 @@ // limitations under the License. // //! Alacritty - The GPU Enhanced Terminal -#![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))] -#![cfg_attr(feature = "clippy", deny(if_not_else))] -#![cfg_attr(feature = "clippy", deny(wrong_pub_self_convention))] +#![cfg_attr(feature = "cargo-clippy", deny(clippy, if_not_else, enum_glob_use, wrong_pub_self_convention))] #![cfg_attr(feature = "nightly", feature(core_intrinsics))] #![cfg_attr(all(test, feature = "bench"), feature(test))] |