fix lint again

This commit is contained in:
Lachlan Sneff
2019-01-29 15:53:07 -08:00
parent 69e9c5154d
commit 34d897b665

View File

@ -5,6 +5,7 @@ extern crate wasmer_runtime;
use byteorder::{ByteOrder, LittleEndian};
use hashbrown::HashMap;
use std::mem;
use wasmer_runtime::{func, imports, Global, Memory, Table, Value};
use wasmer_runtime_core::{
export::{Context, Export, FuncPointer, GlobalPointer},
import::{ImportObject, Namespace},
@ -15,14 +16,6 @@ use wasmer_runtime_core::{
},
vm::LocalGlobal,
};
use wasmer_runtime::{
Memory,
Table,
Global,
Value,
imports,
func,
};
#[macro_use]
mod macros;