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 e626541 commit 9528f00Copy full SHA for 9528f00
.github/workflows/rustdoc.yaml
@@ -27,7 +27,6 @@ jobs:
27
toolchain: nightly
28
profile: minimal
29
override: true
30
- components: rustfmt, rust-src
31
32
- name: Build Documentation
33
run: cargo doc
src/lib.rs
@@ -3,7 +3,8 @@
3
#![warn(clippy::cargo)]
4
#![cfg_attr(test, allow(clippy::non_ascii_literal))]
5
#![cfg_attr(test, allow(clippy::shadow_unrelated))]
6
-#![warn(missing_docs, intra_doc_link_resolution_failure)]
+#![allow(unknown_lints)]
7
+#![warn(missing_docs, broken_intra_doc_links)]
8
#![warn(missing_debug_implementations)]
9
#![warn(missing_copy_implementations)]
10
#![warn(rust_2018_idioms)]
0 commit comments