We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a47c50a commit 562a530Copy full SHA for 562a530
jemalloc-ctl/src/lib.rs
@@ -72,7 +72,10 @@
72
//! ```
73
#![deny(missing_docs, intra_doc_link_resolution_failure)]
74
#![cfg_attr(not(feature = "use_std"), no_std)]
75
-#![cfg_attr(feature = "cargo-clippy", allow(clippy::module_name_repetitions))]
+#![allow(
76
+ clippy::module_name_repetitions,
77
+ clippy::needless_doctest_main // bug: https://github.com/rust-lang/rust-clippy/issues/4858
78
+)]
79
80
extern crate jemalloc_sys;
81
extern crate libc;
0 commit comments