Skip to content

Commit 05176b0

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 8292d10 commit 05176b0

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
@@ -12,7 +12,8 @@
1212
#![deny(clippy::all)]
1313
#![deny(clippy::pedantic)]
1414
#![deny(clippy::cargo)]
15-
#![deny(missing_docs, intra_doc_link_resolution_failure)]
15+
#![allow(unknown_lints)]
16+
#![warn(missing_docs, broken_intra_doc_links)]
1617
#![deny(missing_debug_implementations)]
1718
#![warn(rust_2018_idioms)]
1819
#![warn(trivial_casts, trivial_numeric_casts)]

0 commit comments

Comments
 (0)