Remove more uses of wasmer_runtime_core from the C API

This commit is contained in:
Mark McCaskey
2020-04-07 17:28:23 -07:00
parent 83f0a043e7
commit db76aea198
5 changed files with 74 additions and 69 deletions

View File

@@ -9,10 +9,10 @@ use crate::{
};
use libc::c_int;
use std::{collections::HashMap, slice};
use wasmer::import::ImportObject;
use wasmer::import::{ImportObject, Namespace};
use wasmer::wasm::{Global, Table};
use wasmer::{compile, default_compiler, Instance, Memory, Module};
use wasmer_runtime_core::{cache::Artifact, export::Export, import::Namespace, load_cache_with};
use wasmer_runtime_core::{cache::Artifact, export::Export, load_cache_with};
#[repr(C)]
pub struct wasmer_module_t;