mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-24 22:21:32 +00:00
Fix unused import warning, deny more warnings.
This commit is contained in:
@ -1,3 +1,13 @@
|
|||||||
|
#![deny(
|
||||||
|
dead_code,
|
||||||
|
nonstandard_style,
|
||||||
|
unused_imports,
|
||||||
|
unused_mut,
|
||||||
|
unused_variables,
|
||||||
|
unused_unsafe,
|
||||||
|
unreachable_patterns
|
||||||
|
)]
|
||||||
|
|
||||||
pub use wabt::wat2wasm;
|
pub use wabt::wat2wasm;
|
||||||
use wasmer_llvm_backend::LLVMCompiler;
|
use wasmer_llvm_backend::LLVMCompiler;
|
||||||
use wasmer_runtime_core::backend::Compiler;
|
use wasmer_runtime_core::backend::Compiler;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
use wasmer_llvm_backend::{InkwellMemoryBuffer, InkwellModule, LLVMBackendConfig, LLVMCallbacks};
|
use wasmer_llvm_backend::{InkwellModule, LLVMBackendConfig, LLVMCallbacks};
|
||||||
use wasmer_llvm_backend_tests::{get_compiler, wat2wasm};
|
use wasmer_llvm_backend_tests::{get_compiler, wat2wasm};
|
||||||
use wasmer_runtime::{imports, CompilerConfig};
|
use wasmer_runtime::{imports, CompilerConfig};
|
||||||
use wasmer_runtime_core::{backend::BackendCompilerConfig, compile_with, compile_with_config};
|
use wasmer_runtime_core::{backend::BackendCompilerConfig, compile_with, compile_with_config};
|
||||||
|
Reference in New Issue
Block a user