1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 13:00:36 -05:00

upgrade serde_v8 and rusty_v8 (#12175)

* upgrade serde_v8 and rusty_v8

* rusty_v8 0.30.0

* cycle keys
This commit is contained in:
Ryan Dahl 2021-09-22 12:51:11 -04:00 committed by GitHub
parent 5c5f4ea1d6
commit 958b374f09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 9 deletions

View file

@ -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)

8
Cargo.lock generated
View file

@ -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",

View file

@ -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]]