Skip to content

Commit

Permalink
Remove duplicate imports
Browse files Browse the repository at this point in the history
  • Loading branch information
itsrainy committed Jul 19, 2023
1 parent c9e688f commit 9ee6f87
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions crates/wasmtime/src/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
//! contents of `StoreOpaque`. This is an invariant that we, as the authors of
//! `wasmtime`, must uphold for the public interface to be safe.
use crate::instance::{InstanceData, PrePatchedFuncRef};
use crate::instance::InstanceData;
use crate::linker::Definition;
use crate::module::BareModuleInfo;
use crate::trampoline::VMHostGlobalContext;
Expand All @@ -96,10 +96,9 @@ use std::sync::atomic::AtomicU64;
use std::sync::Arc;
use std::task::{Context, Poll};
use wasmtime_runtime::{
ExportGlobal, InstanceAllocationRequest, InstanceAllocator, InstanceHandle, ModuleInfo,
OnDemandInstanceAllocator, SignalHandler, StoreBox, StorePtr, VMContext, VMExternRef,
VMExternRefActivationsTable, VMExternRefActivationsTable, VMFuncRef, VMRuntimeLimits,
WasmFault,
ExportGlobal, ExportMemory, InstanceAllocationRequest, InstanceAllocator, InstanceHandle,
ModuleInfo, OnDemandInstanceAllocator, SignalHandler, StoreBox, StorePtr, VMContext,
VMExternRef, VMExternRefActivationsTable, VMFuncRef, VMRuntimeLimits, WasmFault,
};

mod context;
Expand Down

0 comments on commit 9ee6f87

Please sign in to comment.