mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-08 13:48:26 +00:00
Cleanup:
Removed conditionnal toml on wasm for VM as it's not builded in that configuration Added unwind to wasm build Moved Trap back to vm (from types) as it's used only on Runtime Move MemoryError back to vm (from types) as it's used on Runtime only scenario Some cleanup and lint fixes Removed wasm build case from vfs/host_fs as it's not used
This commit is contained in:
@@ -43,7 +43,7 @@ pub use crate::instance::{
|
||||
ImportFunctionEnv, ImportInitializerFuncPtr, InstanceAllocator, InstanceHandle,
|
||||
WeakOrStrongInstanceRef,
|
||||
};
|
||||
pub use crate::memory::{LinearMemory, Memory};
|
||||
pub use crate::memory::{LinearMemory, Memory, MemoryError};
|
||||
pub use crate::mmap::Mmap;
|
||||
pub use crate::probestack::PROBESTACK;
|
||||
pub use crate::sig_registry::SignatureRegistry;
|
||||
@@ -56,13 +56,13 @@ pub use crate::vmcontext::{
|
||||
};
|
||||
pub use wasmer_artifact::{FunctionBodyPtr, VMFunctionBody};
|
||||
pub use wasmer_types::LibCall;
|
||||
pub use wasmer_types::MemoryStyle;
|
||||
pub use wasmer_types::TableStyle;
|
||||
#[deprecated(
|
||||
since = "2.1.0",
|
||||
note = "ModuleInfo, ExportsIterator, ImportsIterator should be imported from wasmer_types."
|
||||
)]
|
||||
pub use wasmer_types::{ExportsIterator, ImportsIterator, ModuleInfo};
|
||||
pub use wasmer_types::{MemoryError, MemoryStyle};
|
||||
pub use wasmer_types::{
|
||||
TargetSharedSignatureIndex, VMBuiltinFunctionIndex, VMExternRef, VMOffsets,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user