summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yml6
-rw-r--r--Cargo.lock8
-rw-r--r--core/Cargo.toml4
3 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 0ba17a65d..a53f24082 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -260,7 +260,7 @@ jobs:
~/.cargo/registry/index
~/.cargo/registry/cache
~/.cargo/git/db
- key: h-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}
+ key: j-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}
# In main branch, always creates fresh cache
- name: Cache build output (main)
@@ -275,7 +275,7 @@ jobs:
!./target/*/*.zip
!./target/*/*.tar.gz
key: |
- h-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ github.sha }}
+ j-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ github.sha }}
# Restore cache from the latest 'main' branch build.
- name: Cache build output (PR)
@@ -291,7 +291,7 @@ jobs:
!./target/*/*.tar.gz
key: never_saved
restore-keys: |
- h-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-
+ j-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-
# Don't save cache after building PRs or branches other than 'main'.
- name: Skip save cache (PR)
diff --git a/Cargo.lock b/Cargo.lock
index ea6e6c2af..1c2cade3c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2965,9 +2965,9 @@ dependencies = [
[[package]]
name = "rusty_v8"
-version = "0.28.0"
+version = "0.30.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d7d44250ec4d38c9640cd3e3be9375466966593608ab644d9b37d36acbebc1a7"
+checksum = "cbceb7583f5db95a57e4cbf43847f5cc95dedc60671d7f6b6ca7578caa058ea9"
dependencies = [
"bitflags",
"fslock",
@@ -3169,9 +3169,9 @@ dependencies = [
[[package]]
name = "serde_v8"
-version = "0.11.0"
+version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "77240c6cc91c6ffcce6900d8b4ce5d0966a0d2f8614dd43d1948b52ebd915071"
+checksum = "0fd01a049079c0355135da2d05463ecc21b8af584f3a30288812643c0935960e"
dependencies = [
"rusty_v8",
"serde",
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 4f8b9954c..b89182e38 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -21,10 +21,10 @@ lazy_static = "1.4.0"
log = "0.4.14"
parking_lot = "0.11.1"
pin-project = "1.0.7"
-rusty_v8 = "0.28.0"
+rusty_v8 = "0.30.0"
serde = { version = "1.0.129", features = ["derive"] }
serde_json = { version = "1.0.66", features = ["preserve_order"] }
-serde_v8 = { version = "0.11.0" }
+serde_v8 = "0.13.0"
url = { version = "2.2.2", features = ["serde"] }
[[example]]