From 64dc5bcbcc703d72fc57f0675492b13ac7aeaba9 Mon Sep 17 00:00:00 2001 From: Daniel Mueller Date: Mon, 30 Nov 2020 19:50:27 -0800 Subject: Rename intra_doc_link_resolution_failure lint The intra_doc_link_resolution_failure lint has been renamed to broken_intra_doc_links in recent versions of Rust. With this change we update it accordingly in our list of lints to use for the crate. Because our CI tests against the minimum supported Rust version, which does not yet understand the new lint, we configure it to allow unknown lints. --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index c8b73dc..d193934 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,11 +5,11 @@ #![warn( bad_style, + broken_intra_doc_links, dead_code, future_incompatible, illegal_floating_point_literal_pattern, improper_ctypes, - intra_doc_link_resolution_failure, late_bound_lifetime_arguments, missing_debug_implementations, missing_docs, -- cgit v1.2.1