We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67c6c6a commit a8a96faCopy full SHA for a8a96fa
src/lib.rs
@@ -26,15 +26,17 @@
26
//! will have exactly ten elements. An attempt to add an 11th element will lead
27
//! to a panic.
28
29
-#![cfg_attr(docsrs, feature(doc_cfg))]
30
#![cfg_attr(all(not(feature = "std"), not(doc), not(test)), no_std)]
31
#![doc(html_root_url = "https://docs.rs/micromap/0.0.0")]
32
#![deny(warnings)]
33
#![warn(clippy::all, clippy::pedantic, clippy::nursery, clippy::cargo)]
34
#![warn(rust_2018_idioms)]
35
-// #![warn(missing_docs)]
+// About the docs
+#![cfg_attr(docsrs, feature(doc_cfg))]
36
#![cfg_attr(docsrs, feature(rustdoc_missing_doc_code_examples))]
37
#![warn(rustdoc::missing_crate_level_docs)]
38
+// Our Goal, uncomment these!
39
+// #![warn(missing_docs)]
40
// #![doc(test(attr(deny(unused))))]
41
#![doc(test(attr(warn(unused))))]
42
0 commit comments