We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0bdc05 commit 8723486Copy full SHA for 8723486
src/lib.rs
@@ -15,7 +15,11 @@
15
#![doc = include_str!("../README.md")]
16
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
17
#![warn(missing_docs, missing_debug_implementations)]
18
-#![allow(clippy::drop_non_drop)] // triggered by wasm_bindgen code
+// triggered by wasm_bindgen code
19
+#![allow(clippy::drop_non_drop)]
20
+// Triggers false positives.
21
+// See <https://github.com/rust-lang/rust-clippy/issues/10319>.
22
+#![allow(clippy::extra_unused_type_parameters)]
23
24
pub mod attachment;
25
pub mod device;
0 commit comments