feat(lib): implement Send + Sync for WasmStore

This commit is contained in:
Amaan Qureshi 2025-01-20 23:23:47 -05:00
parent 9365586cc3
commit 27bc78698d

View file

@ -26,6 +26,9 @@ pub struct wasm_engine_t {
pub struct WasmStore(*mut ffi::TSWasmStore);
unsafe impl Send for WasmStore {}
unsafe impl Sync for WasmStore {}
#[derive(Debug, PartialEq, Eq)]
pub struct WasmError {
pub kind: WasmErrorKind,