You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm encountering an issue when integrating the deno_url extension into deno_core within a test project. Despite trying various approaches, I consistently receive the following error during JsRuntime initialization:
Failed to initialize a JsRuntime: Following modules were not evaluated; make sure they are imported from other code:
- ext:deno_console/01_console.js
- ext:deno_url/00_url.js
- ext:deno_webidl/00_webidl.js
- ext:deno_url/01_urlpattern.js
Cargo.toml:
[package]
name = "deno_url_test"version = "0.1.0"edition = "2021"
[dependencies]
v8 = { version = "130.0.1", default-features = false }
deno_core = { version = "0.326.0", default-features = false }
deno_url = "0.183.0"deno_webidl = "0.183.0"deno_console = "0.183.0"tokio = { version = "1.35.1", features = ["full"] }
anyhow = "1.0.75"
I'm encountering an issue when integrating the deno_url extension into deno_core within a test project. Despite trying various approaches, I consistently receive the following error during JsRuntime initialization:
Cargo.toml:
rust code:
The text was updated successfully, but these errors were encountered: