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.
warn
deny
1 parent cf59c5a commit 018cb08Copy full SHA for 018cb08
src/lib.rs
@@ -15,9 +15,9 @@
15
//! without knowing the implementation details of the VM memory provider. Thus hypervisor
16
//! components, such as boot loader, virtual device drivers, virtio backend drivers and vhost
17
//! drivers etc, could be shared and reused by multiple hypervisors.
18
-#![deny(clippy::doc_markdown)]
19
-#![deny(missing_docs)]
20
-#![deny(missing_debug_implementations)]
+#![warn(clippy::doc_markdown)]
+#![warn(missing_docs)]
+#![warn(missing_debug_implementations)]
21
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
22
23
// We only support 64bit. Fail build when attempting to build other targets
0 commit comments