From b8f02c3b32f27a46dcca88723ac7516d6422bf65 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Sat, 20 Mar 2021 18:31:09 +1300 Subject: [PATCH] Temporarily allow dead code This will make the lints more useful while we are implementing the Orchard protocol. --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 54a34ea0..de14b2ba 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,6 +8,8 @@ //! address, which is also shielded). #![cfg_attr(docsrs, feature(doc_cfg))] +// Temporary until we have more of the crate implemented. +#![allow(dead_code)] // Catch documentation errors caused by code changes. #![deny(broken_intra_doc_links)] #![deny(missing_debug_implementations)]