We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db8af89 commit 0cac975Copy full SHA for 0cac975
src/lib.rs
@@ -1,5 +1,6 @@
1
-#![allow(unknown_lints)] // remove once broken_intra_doc_links is on stable
2
-#![deny(missing_docs, broken_intra_doc_links)]
+#![allow(unknown_lints, renamed_and_removed_lints)]
+#![deny(missing_docs, broken_intra_doc_links)] // This will be weird until 1.52, see https://github.com/rust-lang/rust/pull/80527
3
+#![cfg_attr(nightly, deny(rustdoc::broken_intra_doc_links))]
4
#![cfg_attr(nightly, feature(doc_cfg, doc_spotlight))]
5
#![doc(html_root_url = "https://docs.rs/twitch_api2/0.4.1")]
6
#![cfg_attr(all(nightly, doctest), feature(external_doc))]
0 commit comments