feat(api/wasm-common) Move WasmExternType from wasm-common to wasmer.

Because there is a trait implementation conflicts for the
implementations `WasmTypeList` for `$x*` where `$x: WasmExternType`.
This commit is contained in:
Ivan Enderlin
2020-06-22 11:10:18 +02:00
parent 63ec941dac
commit 07aff22c30
7 changed files with 60 additions and 62 deletions

View File

@@ -3,7 +3,7 @@ mod global;
mod memory;
mod table;
pub use self::function::{Function, HostFunction, WasmTypeList};
pub use self::function::{Function, HostFunction, WasmExternType, WasmTypeList};
pub use self::global::Global;
pub use self::memory::Memory;
pub use self::table::Table;