Skip to content

Commit

Permalink
fix: add missing module declaration
Browse files Browse the repository at this point in the history
This was mistakenly included (initially) in bytecodealliance#7071 but removed before
merging; it is now correctly in this PR.
  • Loading branch information
abrown committed Sep 22, 2023
1 parent 924bebd commit b9c4cfe
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions crates/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,20 @@ mod vmcontext;

pub mod debug_builtins;
pub mod libcalls;
pub mod mpk;

pub use wasmtime_jit_debug::gdb_jit_int::GdbJitImageRegistration;

pub use crate::export::*;
pub use crate::externref::*;
pub use crate::imports::Imports;
#[cfg(feature = "pooling-allocator")]
pub use crate::instance::{
Instance, InstanceAllocationRequest, InstanceAllocator, InstanceAllocatorImpl, InstanceHandle,
MemoryAllocationIndex, OnDemandInstanceAllocator, StorePtr, TableAllocationIndex,
AutoEnabled, InstanceLimits, PoolingInstanceAllocator, PoolingInstanceAllocatorConfig,
};
#[cfg(feature = "pooling-allocator")]
pub use crate::instance::{
InstanceLimits, PoolingInstanceAllocator, PoolingInstanceAllocatorConfig,
Instance, InstanceAllocationRequest, InstanceAllocator, InstanceAllocatorImpl, InstanceHandle,
MemoryAllocationIndex, OnDemandInstanceAllocator, StorePtr, TableAllocationIndex,
};
pub use crate::memory::{
DefaultMemoryCreator, Memory, RuntimeLinearMemory, RuntimeMemoryCreator, SharedMemory,
Expand Down

0 comments on commit b9c4cfe

Please sign in to comment.