From 86ef743c0fc266d4e6d86fd33da3f0ee983b4f19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 23 Aug 2022 14:51:04 +0200 Subject: chore: upgrade rusty_v8 to v0.49.0 (#15547) --- core/Cargo.toml | 2 +- core/runtime.rs | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'core') 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 { -- cgit v1.2.3