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

@@ -12,9 +12,9 @@ use cranelift_codegen::ir::types::*;
use cranelift_codegen::ir::{AbiParam, ArgumentPurpose, Function, InstBuilder, Signature};
use cranelift_codegen::isa::TargetFrontendConfig;
use std::convert::TryFrom;
use wasm_common::entity::EntityRef;
use wasm_common::entity::PrimaryMap;
use wasm_common::{FunctionIndex, GlobalIndex, MemoryIndex, SignatureIndex, TableIndex};
use wasmer_types::entity::EntityRef;
use wasmer_types::entity::PrimaryMap;
use wasmer_types::{FunctionIndex, GlobalIndex, MemoryIndex, SignatureIndex, TableIndex};
use wasmer_compiler::{WasmError, WasmResult};
use wasmer_vm::VMBuiltinFunctionIndex;
use wasmer_vm::VMOffsets;