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 6de288f commit 7eccfdbCopy full SHA for 7eccfdb
src/lib.rs
@@ -85,6 +85,8 @@
85
#![deny(dead_code)]
86
#![deny(unused_imports)]
87
#![deny(missing_docs)]
88
+// Clippy lints that we have disabled
89
+#![allow(clippy::iter_kv_map)] // https://github.com/rust-lang/rust-clippy/issues/11752
90
91
#[cfg(target_pointer_width = "16")]
92
compile_error!(
src/plan.rs
@@ -658,7 +658,7 @@ pub trait IntoAssets {
658
}
659
660
impl IntoAssets for KeyMap {
661
- fn into_assets(self) -> Assets { Assets::from_iter(self.into_keys()) }
+ fn into_assets(self) -> Assets { Assets::from_iter(self.into_iter().map(|(k, _)| k)) }
662
663
664
impl IntoAssets for DescriptorPublicKey {
0 commit comments