Closed ziyak97 closed 1 year ago
Correct – you cannot use libloading
with wasm
as wasm
does not inherently provide any mechanisms to load any other code (except if we maybe count components). You will have to write a host function that does this for you and expose such loading functionality to your wasm code that way.
Hey I am trying to build my code using wasm-unknown-unknown. wasm-pack build -t web
I get the following error when doing so
Would this mean the libloading::Library is not compatible with web browsers?