summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2021-04-13 08:47:24 +0000
committerBert Belder <bertbelder@gmail.com>2021-04-13 08:47:24 +0000
commit36f147364a6990dc7c57542243021a54f2f0a606 (patch)
tree6ee26f01bbf63883113d87af970f9520d7b50740
parentb9f758d3ad6b71d9ac7bcae7192985a1f9258724 (diff)
upgrade: rusty_v8 0.22.1 (V8 9.1.269.5) (#10159)
-rw-r--r--.github/workflows/ci.yml4
-rw-r--r--Cargo.lock4
-rw-r--r--core/Cargo.toml2
-rw-r--r--serde_v8/Cargo.toml2
4 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 611608903..422a1df2a 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -175,9 +175,9 @@ jobs:
~/.cargo/registry
./target
key:
- a-${{ matrix.os }}-${{ matrix.kind }}-${{ hashFiles('Cargo.lock') }}
+ b-${{ matrix.os }}-${{ matrix.kind }}-${{ hashFiles('Cargo.lock') }}
restore-keys: |
- a-${{ matrix.os }}-${{ matrix.kind }}-
+ b-${{ matrix.os }}-${{ matrix.kind }}-
- name: Apply and update mtime cache
uses: ./.github/mtime_cache
diff --git a/Cargo.lock b/Cargo.lock
index dadcf1f95..ad4e607ab 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2602,9 +2602,9 @@ dependencies = [
[[package]]
name = "rusty_v8"
-version = "0.22.0"
+version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d22dda4980406128043b56aab93f5811278c185f384be52a0171f49c5bf74215"
+checksum = "9e39f106a3e39e8d18bc7dcbd4d59ece79cd27f888c6d82e0c93aa56d4708fdd"
dependencies = [
"bitflags",
"fslock",
diff --git a/core/Cargo.toml b/core/Cargo.toml
index a322b2002..74323b4dd 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.22.0"
+rusty_v8 = "0.22.1"
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 0ed91e499..e6ca007be 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.22.0"
+rusty_v8 = "0.22.1"
[dev-dependencies]
serde_json = "1.0.64"