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 cd988e5 commit ce65317Copy full SHA for ce65317
crates/matrix-sdk-crypto/src/secret_storage.rs
@@ -17,6 +17,12 @@
17
//!
18
//! [spec]: https://spec.matrix.org/v1.8/client-server-api/#storage
19
20
+// This is here because we have a zeroize(skip) further below, which incorrectly triggers a
21
+// unused_assignments warning due to the macro not using a variable.
22
+//
23
+// This will be fixed once we bump Zeroize.
24
+#![allow(unused_assignments)]
25
+
26
use std::fmt;
27
28
use hmac::Hmac;
0 commit comments