Readjust where things are exported in the new API

This commit is contained in:
Mark McCaskey
2020-04-10 12:12:36 -07:00
parent bf09dc5e67
commit 4f23ed7f20
4 changed files with 14 additions and 29 deletions

View File

@ -18,9 +18,10 @@ use std::{
sync::Arc,
};
use wasmer::import::{ImportObject, ImportObjectIterator};
use wasmer::wasm::{Ctx, FuncSig, Global, Memory, Module, Table, Type};
use wasmer::vm::Ctx;
use wasmer::wasm::{Export, FuncSig, Global, Memory, Module, Table, Type};
use wasmer_runtime_core::{
export::{Context, Export, FuncPointer},
export::{Context, FuncPointer},
module::ImportName,
};