Skip to content

Commit 522ef2e

Browse files
committed
Remove deny for intra doc link failures from library code, it's no longer necessary
1 parent 7b7b5a7 commit 522ef2e

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

library/alloc/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@
6969
#![warn(deprecated_in_future)]
7070
#![warn(missing_docs)]
7171
#![warn(missing_debug_implementations)]
72-
#![deny(intra_doc_resolution_failures)] // rustdoc is run without -D warnings
7372
#![allow(explicit_outlives_requirements)]
7473
#![allow(incomplete_features)]
7574
#![deny(unsafe_op_in_unsafe_fn)]

library/core/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@
6161
#![warn(deprecated_in_future)]
6262
#![warn(missing_docs)]
6363
#![warn(missing_debug_implementations)]
64-
#![deny(intra_doc_resolution_failures)] // rustdoc is run without -D warnings
6564
#![allow(explicit_outlives_requirements)]
6665
#![allow(incomplete_features)]
6766
#![feature(allow_internal_unstable)]
@@ -149,7 +148,6 @@
149148
#![feature(slice_ptr_get)]
150149
#![feature(no_niche)] // rust-lang/rust#68303
151150
#![feature(unsafe_block_in_unsafe_fn)]
152-
#![deny(intra_doc_resolution_failures)]
153151
#![deny(unsafe_op_in_unsafe_fn)]
154152

155153
#[prelude_import]

library/std/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,6 @@
212212
#![warn(deprecated_in_future)]
213213
#![warn(missing_docs)]
214214
#![warn(missing_debug_implementations)]
215-
#![deny(intra_doc_resolution_failures)] // rustdoc is run without -D warnings
216215
#![allow(explicit_outlives_requirements)]
217216
#![allow(unused_lifetimes)]
218217
// Tell the compiler to link to either panic_abort or panic_unwind

0 commit comments

Comments
 (0)