mirror of
https://github.com/mii443/wasmer.git
synced 2025-08-22 16:35:33 +00:00
chore: Make linter happy
This commit is contained in:
@ -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.
|
||||||
|
Reference in New Issue
Block a user