From a7478d9b3d6e873f05ba75399417b0f116409b08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?James=20=E2=80=98Twey=E2=80=99=20Kay?= Date: Mon, 8 Apr 2024 15:15:48 +0100 Subject: [PATCH] Expose `store::StoreObjects` --- lib/api/src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) mode change 100644 => 100755 lib/api/src/lib.rs diff --git a/lib/api/src/lib.rs b/lib/api/src/lib.rs old mode 100644 new mode 100755 index 0f2ed2d5b9a..1d697208b61 --- a/lib/api/src/lib.rs +++ b/lib/api/src/lib.rs @@ -501,7 +501,9 @@ pub use mem_access::{MemoryAccessError, WasmRef, WasmSlice, WasmSliceIter}; pub use module::{IoCompileError, Module}; pub use native_type::{FromToNativeWasmType, NativeWasmTypeInto, WasmTypeList}; pub use ptr::{Memory32, Memory64, MemorySize, WasmPtr, WasmPtr64}; -pub use store::{AsStoreMut, AsStoreRef, OnCalledHandler, Store, StoreId, StoreMut, StoreRef}; +pub use store::{ + AsStoreMut, AsStoreRef, OnCalledHandler, Store, StoreId, StoreMut, StoreObjects, StoreRef, +}; #[cfg(feature = "sys")] pub use store::{TrapHandlerFn, Tunables}; #[cfg(any(feature = "sys", feature = "jsc"))]