From b9f758d3ad6b71d9ac7bcae7192985a1f9258724 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Mon, 12 Apr 2021 22:14:40 +0000 Subject: [PATCH] upgrade: rusty_v8 0.22.0 (V8 9.1.269.2) (#10152) --- .github/workflows/ci.yml | 4 ++-- Cargo.lock | 4 ++-- cli/tests/wasm_unreachable.out | 2 +- core/Cargo.toml | 2 +- serde_v8/Cargo.toml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ad068ed5a..6116089036 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -175,9 +175,9 @@ jobs: ~/.cargo/registry ./target key: - ${{ matrix.os }}-${{ matrix.kind }}-${{ hashFiles('Cargo.lock') }} + a-${{ matrix.os }}-${{ matrix.kind }}-${{ hashFiles('Cargo.lock') }} restore-keys: | - ${{ matrix.os }}-${{ matrix.kind }}- + a-${{ matrix.os }}-${{ matrix.kind }}- - name: Apply and update mtime cache uses: ./.github/mtime_cache diff --git a/Cargo.lock b/Cargo.lock index c77f132149..dadcf1f952 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2602,9 +2602,9 @@ dependencies = [ [[package]] name = "rusty_v8" -version = "0.21.0" +version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44bcf83fc222cc6caf4404414eae397c910e2f1ee31f291024434ae5cc312918" +checksum = "d22dda4980406128043b56aab93f5811278c185f384be52a0171f49c5bf74215" dependencies = [ "bitflags", "fslock", diff --git a/cli/tests/wasm_unreachable.out b/cli/tests/wasm_unreachable.out index df1d8702dc..1c8ccc958e 100644 --- a/cli/tests/wasm_unreachable.out +++ b/cli/tests/wasm_unreachable.out @@ -1,3 +1,3 @@ error: Uncaught RuntimeError: unreachable - at unreachable (:[WILDCARD]) + at unreachable (wasm://wasm/[WILDCARD]) at [WILDCARD]/cli/tests/wasm_unreachable.js:[WILDCARD] diff --git a/core/Cargo.toml b/core/Cargo.toml index 572d487130..a322b2002e 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -20,7 +20,7 @@ lazy_static = "1.4.0" libc = "0.2.93" log = "0.4.14" pin-project = "1.0.6" -rusty_v8 = "0.21.0" +rusty_v8 = "0.22.0" serde = { version = "1.0.125", features = ["derive"] } serde_json = { version = "1.0.64", features = ["preserve_order"] } serde_v8 = { version = "0.1.0", path = "../serde_v8" } diff --git a/serde_v8/Cargo.toml b/serde_v8/Cargo.toml index b496f71bba..0ed91e4990 100644 --- a/serde_v8/Cargo.toml +++ b/serde_v8/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/denoland/deno" [dependencies] serde = { version = "1.0.125", features = ["derive"] } -rusty_v8 = "0.21.0" +rusty_v8 = "0.22.0" [dev-dependencies] serde_json = "1.0.64"