mirror of
https://github.com/mii443/wasmer.git
synced 2025-09-02 23:49:28 +00:00
Remove wasmer-{artifact,engine} and merge it into wasmer-compiler and wasmer-vm
This commit is contained in:
17
lib/compiler/src/engine/mod.rs
Normal file
17
lib/compiler/src/engine/mod.rs
Normal file
@ -0,0 +1,17 @@
|
||||
//! Generic Engine abstraction for Wasmer Engines.
|
||||
|
||||
mod artifact;
|
||||
mod error;
|
||||
mod export;
|
||||
mod inner;
|
||||
mod resolver;
|
||||
mod trap;
|
||||
mod tunables;
|
||||
|
||||
pub use self::artifact::Artifact;
|
||||
pub use self::error::{InstantiationError, LinkError};
|
||||
pub use self::export::{Export, ExportFunction, ExportFunctionMetadata};
|
||||
pub use self::inner::{Engine, EngineId};
|
||||
pub use self::resolver::resolve_imports;
|
||||
pub use self::trap::*;
|
||||
pub use self::tunables::Tunables;
|
Reference in New Issue
Block a user