summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 051ef0b..b976afd 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -4,6 +4,10 @@
//! and how they are verified, in a way that's understood by all project
//! stakeholders.
+// disable clippy warning about using as_ref instead, as we
+// target the version of Rust in Debian 10 (buster), which
+// doesn't have it.
+#![allow(clippy::match_as_ref)]
#![deny(missing_docs)]
mod error;
pub use error::Result;