Skip to content

Commit 9528f00

Browse files
committed
Update lints for rename of intra_doc_link_resolution_failure
This lint was renamed to broken_intra_doc_links as part of feature stabilization. The lint was renamed in rust-lang/rust#74926
1 parent e626541 commit 9528f00

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/rustdoc.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ jobs:
2727
toolchain: nightly
2828
profile: minimal
2929
override: true
30-
components: rustfmt, rust-src
3130

3231
- name: Build Documentation
3332
run: cargo doc

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
#![warn(clippy::cargo)]
44
#![cfg_attr(test, allow(clippy::non_ascii_literal))]
55
#![cfg_attr(test, allow(clippy::shadow_unrelated))]
6-
#![warn(missing_docs, intra_doc_link_resolution_failure)]
6+
#![allow(unknown_lints)]
7+
#![warn(missing_docs, broken_intra_doc_links)]
78
#![warn(missing_debug_implementations)]
89
#![warn(missing_copy_implementations)]
910
#![warn(rust_2018_idioms)]

0 commit comments

Comments
 (0)