summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock4
-rw-r--r--core/Cargo.toml2
-rw-r--r--core/runtime.rs3
-rw-r--r--serde_v8/Cargo.toml2
4 files changed, 7 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index ac73c49ec..c8203ecd8 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5244,9 +5244,9 @@ dependencies = [
[[package]]
name = "v8"
-version = "0.48.1"
+version = "0.49.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3734ddf37e06e5020a1d5c969301be0cdf023cde0ef4257248ff19eb3a7223e3"
+checksum = "5a1cbad73336d67babcbe5e3b03c907c8d2ff77fc6f997570af219bbd9fdb6ce"
dependencies = [
"bitflags",
"fslock",
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 61c38521d..a2443cecb 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -33,7 +33,7 @@ serde_json = { version = "1.0.79", features = ["preserve_order"] }
serde_v8 = { version = "0.58.0", path = "../serde_v8" }
sourcemap = "=6.0.1"
url = { version = "2.2.2", features = ["serde"] }
-v8 = { version = "0.48.1", default-features = false }
+v8 = { version = "0.49.0", default-features = false }
[[example]]
name = "http_bench_json_ops"
diff --git a/core/runtime.rs b/core/runtime.rs
index 7cb566712..50c108f33 100644
--- a/core/runtime.rs
+++ b/core/runtime.rs
@@ -233,6 +233,9 @@ fn v8_init(
" --harmony-import-assertions",
" --no-validate-asm",
" --turbo_fast_api_calls",
+ // This flag prevents "unresolved external reference" panic during
+ // build, which started happening in V8 10.6
+ " --noexperimental-async-stack-tagging-api",
);
if predictable {
diff --git a/serde_v8/Cargo.toml b/serde_v8/Cargo.toml
index 38e067857..fcfbabbbc 100644
--- a/serde_v8/Cargo.toml
+++ b/serde_v8/Cargo.toml
@@ -18,7 +18,7 @@ derive_more = "0.99.17"
serde = { version = "1.0.136", features = ["derive"] }
serde_bytes = "0.11"
smallvec = { version = "1.8", features = ["union"] }
-v8 = { version = "0.48.1", default-features = false }
+v8 = { version = "0.49.0", default-features = false }
[dev-dependencies]
bencher = "0.1"