Skip to content

Commit a24ba47

Browse files
authored
Remove #![deny(warnings)] from wasmtime-environ (bytecodealliance#9961)
Looks like this accidentally snuck in in bytecodealliance#9696 but in general we want to avoid `#![deny(warnings)]` because our CI is where warnings are promoted to errors.
1 parent 80f44cb commit a24ba47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/environ/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! the translation the base addresses of regions of memory that will hold the globals, tables and
44
//! linear memories.
55
6-
#![deny(missing_docs, warnings)]
6+
#![deny(missing_docs)]
77
#![warn(clippy::cast_sign_loss)]
88
#![no_std]
99

0 commit comments

Comments
 (0)