chore: Make linter happy

This commit is contained in:
Edoardo Marangoni
2025-03-06 16:29:49 +01:00
parent 12b4ae7f43
commit 0e32dc5e10

View File

@ -19,9 +19,12 @@
//! Ready? //! Ready?
use std::str::FromStr; use std::str::FromStr;
use wasmer::{sys::{EngineBuilder, CpuFeature}, wat2wasm, Module, RuntimeError, Store}; use wasmer::{
use wasmer_types::target::{Target, Triple}; sys::{CpuFeature, EngineBuilder},
wat2wasm, Module, RuntimeError, Store,
};
use wasmer_compiler_cranelift::Cranelift; use wasmer_compiler_cranelift::Cranelift;
use wasmer_types::target::{Target, Triple};
fn main() -> Result<(), Box<dyn std::error::Error>> { fn main() -> Result<(), Box<dyn std::error::Error>> {
// Let's declare the Wasm module with the text representation. // Let's declare the Wasm module with the text representation.