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 299ee90 commit d36e486Copy full SHA for d36e486
runtime/src/lib.rs
@@ -4,6 +4,11 @@
4
reason = "some pyo3 macros produce code that does this"
5
)]
6
#![allow(static_mut_refs, reason = "wit-bindgen produces code that does this")]
7
+#![allow(unknown_lints)]
8
+#![allow(
9
+ unnecessary_transmutes,
10
+ reason = "nightly warning but not supported on stable"
11
+)]
12
13
use {
14
anyhow::{Error, Result},
0 commit comments