Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(js): replace deno_core with rquickjs #1713

Merged
merged 15 commits into from
May 4, 2024
594 changes: 236 additions & 358 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 3 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,7 @@ lazy_static = "1.4.0"
which = { version = "6.0.1", optional = true }
async-recursion = "1.1.1"
tempfile = "3.10.1"
deno_core = { version = "0.278.0", optional = true, features = [
"v8_use_custom_libcxx",
], default-features = false }
rquickjs = { "version" = "0.5.1", optional = true, features = ["full"] }
strum_macros = "0.26.2"
# TODO: disable some levels with features?
tracing = "0.1.40"
Expand Down Expand Up @@ -167,7 +165,7 @@ tailcall-fixtures = { path = "./tailcall-fixtures" }

# Feature Flag to enable V8.
# V8 currently is not support on all platforms so, we control it via this feature flag.
js = ["dep:deno_core"]
js = ["dep:rquickjs"]

# Feature Flag to core CLI features.
# This is created to control what we expose for WASM.
Expand Down Expand Up @@ -233,4 +231,4 @@ harness = false

[[test]]
name = "execution_spec"
harness = false
harness = false
Loading
Loading