1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00

chore: upgrade rusty_v8 and serde_v8 (#11233)

This commit is contained in:
Bartek Iwańczuk 2021-07-02 22:59:33 +02:00 committed by GitHub
parent a70e2249cf
commit da654fddff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 9 deletions

View file

@ -250,7 +250,7 @@ jobs:
~/.cargo/registry/index
~/.cargo/registry/cache
~/.cargo/git/db
key: c-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}
key: d-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}
# In main branch, always creates fresh cache
- name: Cache build output (main)
@ -265,7 +265,7 @@ jobs:
!./target/*/*.zip
!./target/*/*.tar.gz
key: |
c-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ github.sha }}
d-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ github.sha }}
# Restore cache from the latest 'main' branch build.
- name: Cache build output (PR)
@ -281,7 +281,7 @@ jobs:
!./target/*/*.tar.gz
key: never_saved
restore-keys: |
c-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-
d-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

@ -2775,9 +2775,9 @@ dependencies = [
[[package]]
name = "rusty_v8"
version = "0.24.0"
version = "0.25.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fa025c24e4eee6a6a17f92ebe10fbf6d33a475fce213dc552401c3710ce833f"
checksum = "13867576f32f57576ebdf32ca98d63b8a58e9d0af084e1b366b41e66699c91a3"
dependencies = [
"bitflags",
"fslock",
@ -2936,9 +2936,9 @@ dependencies = [
[[package]]
name = "serde_v8"
version = "0.7.1"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b7d6e1fcfddb6ca56e8dede0e8cc80159edb0d00d68c2d84b3a0b714dfd9d7c"
checksum = "7ee08dee77621b7bf7432a560f382f32a53df98e6a4009bca1f4998d5c90d24a"
dependencies = [
"rusty_v8",
"serde",

View file

@ -20,10 +20,10 @@ lazy_static = "1.4.0"
libc = "0.2.93"
log = "0.4.14"
pin-project = "1.0.6"
rusty_v8 = "0.24.0"
rusty_v8 = "0.25.0"
serde = { version = "1.0.125", features = ["derive"] }
serde_json = { version = "1.0.64", features = ["preserve_order"] }
serde_v8 = { version = "0.7.1" }
serde_v8 = { version = "0.8.0" }
url = { version = "2.2.1", features = ["serde"] }
[[example]]