Skip to content

Commit 2b81dad

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 7421727 commit 2b81dad

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
@@ -2,7 +2,8 @@
22
#![warn(clippy::pedantic)]
33
#![warn(clippy::cargo)]
44
#![allow(clippy::cast_possible_truncation)]
5-
#![warn(missing_docs, intra_doc_link_resolution_failure)]
5+
#![allow(unknown_lints)]
6+
#![warn(missing_docs, broken_intra_doc_links)]
67
#![warn(missing_debug_implementations)]
78
#![warn(missing_copy_implementations)]
89
#![warn(rust_2018_idioms)]

0 commit comments

Comments
 (0)