Rename wasm-common crate to wasmer-types

This commit is contained in:
Mark McCaskey
2020-08-13 17:59:26 -07:00
parent 518e0f3222
commit 5049c543dc
108 changed files with 206 additions and 207 deletions

View File

@ -24,8 +24,8 @@ use smallvec::SmallVec;
use crate::config::{CompiledFunctionKind, LLVM};
use crate::object_file::{load_object_file, CompiledFunction};
use wasm_common::entity::PrimaryMap;
use wasm_common::{
use wasmer_types::entity::PrimaryMap;
use wasmer_types::{
FunctionIndex, FunctionType, GlobalIndex, LocalFunctionIndex, MemoryIndex, SignatureIndex,
TableIndex, Type,
};