summary refs log tree commit diff
path: root/usb_util/src
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@chromium.org>2019-04-12 15:40:20 -0700
committerchrome-bot <chrome-bot@chromium.org>2019-04-15 02:06:09 -0700
commit967c2f2c9bce9e177f0eea3f1bb73d35d9c95922 (patch)
tree1b26a9925c15116ca16b3c2146df0edda45f9c62 /usb_util/src
parent79a2a2d7b44f1e49a83fdf527dd554f3bef704bc (diff)
downloadcrosvm-967c2f2c9bce9e177f0eea3f1bb73d35d9c95922.tar
crosvm-967c2f2c9bce9e177f0eea3f1bb73d35d9c95922.tar.gz
crosvm-967c2f2c9bce9e177f0eea3f1bb73d35d9c95922.tar.bz2
crosvm-967c2f2c9bce9e177f0eea3f1bb73d35d9c95922.tar.lz
crosvm-967c2f2c9bce9e177f0eea3f1bb73d35d9c95922.tar.xz
crosvm-967c2f2c9bce9e177f0eea3f1bb73d35d9c95922.tar.zst
crosvm-967c2f2c9bce9e177f0eea3f1bb73d35d9c95922.zip
clippy: Switch to tool attributes for suppressing lints
Tool attributes were stabilized in Rust 1.31:
https://blog.rust-lang.org/2018/12/06/Rust-1.31-and-rust-2018.html#tool-lints

Before:

    #[cfg_attr(feature = "cargo-clippy", allow(cast_ptr_alignment)]

After:

    #[allow(clippy::cast_ptr_alignment)]

TEST=cargo check --all-features

Change-Id: If2f1511f6231d60578b5e0d5bd4210a68eb08caf
Reviewed-on: https://chromium-review.googlesource.com/1566651
Commit-Ready: David Tolnay <dtolnay@chromium.org>
Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com>
Tested-by: David Tolnay <dtolnay@chromium.org>
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: David Tolnay <dtolnay@chromium.org>
Diffstat (limited to 'usb_util/src')
-rw-r--r--usb_util/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/usb_util/src/lib.rs b/usb_util/src/lib.rs
index 8755428..07af5ad 100644
--- a/usb_util/src/lib.rs
+++ b/usb_util/src/lib.rs
@@ -7,7 +7,7 @@
 #![allow(non_camel_case_types)]
 #![allow(non_snake_case)]
 #![allow(non_upper_case_globals)]
-#[cfg_attr(feature = "cargo-clippy", allow(clippy))]
+#[allow(clippy::all)]
 mod bindings;
 
 #[macro_use]