From 958b374f09549b06c96187c3031437926808a175 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 22 Sep 2021 12:51:11 -0400 Subject: [PATCH] upgrade serde_v8 and rusty_v8 (#12175) * upgrade serde_v8 and rusty_v8 * rusty_v8 0.30.0 * cycle keys --- .github/workflows/ci.yml | 6 +++--- Cargo.lock | 8 ++++---- core/Cargo.toml | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0ba17a65dfae7..a53f2408229f9 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 ea6e6c2af2bdb..1c2cade3c9489 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 4f8b9954ccd94..b89182e381680 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]]