-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Description
I am building rust-libp2p
as part of our Wasm bindings. The produced WebAssembly module ends up containing this import and call to a now
function:
(import "env" "now" (func $now (type 3)))
...
(func $instant::wasm::now::h339f51d64be03d28 (type 3) (result f64)
call $now)
This import then ends up in the wasm-bindgen
-generated JavaScript file where the env
import is not found and an error is produced.
According to this comment, this is the result of the dependency on parking_lot
, where the fix is to enable the wasm-bindgen
feature on that crate.
If the feature is enabled in rust-libp2p
's Cargo.toml
, then the import is no longer present and the issue is fixed.
I assume the best way to fix this, would be to enable the wasm-bindgen
feature of the parking_lot
crate when rust-libp2p
's wasm-ext
feature is enabled. However, I'm not sure if I'm not actually missing something, as this seems like an issue that should have come up in the past when compiling to wasm32-unknown-unknown
.
Please let me know if you would like a PR that adds this or if there's another way to work around it.