1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-24 15:19:26 -05:00

chore: update to rusty v8 0.36.0 (#12979)

This commit is contained in:
Luca Casonato 2021-12-03 15:56:04 +01:00 committed by GitHub
parent 46794d4e43
commit 27ef275d27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 7 deletions

View file

@ -262,7 +262,7 @@ jobs:
~/.cargo/registry/index
~/.cargo/registry/cache
~/.cargo/git/db
key: 1-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}
key: 2-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}
# In main branch, always creates fresh cache
- name: Cache build output (main)
@ -278,7 +278,7 @@ jobs:
!./target/*/*.zip
!./target/*/*.tar.gz
key: |
1-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ github.sha }}
2-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ github.sha }}
# Restore cache from the latest 'main' branch build.
- name: Cache build output (PR)
@ -294,7 +294,7 @@ jobs:
!./target/*/*.tar.gz
key: never_saved
restore-keys: |
1-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-
2-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-
# Don't save cache after building PRs or branches other than 'main'.
- name: Skip save cache (PR)

4
Cargo.lock generated
View file

@ -4545,9 +4545,9 @@ dependencies = [
[[package]]
name = "v8"
version = "0.35.0"
version = "0.36.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d5bd940010a9e303908faa6e4e96ae6379436686d12452d17a6771e4dbc5b83"
checksum = "506523e86ccc15982be412bdde87a142771c139e94a8ecedda1da051a079b81d"
dependencies = [
"bitflags",
"fslock",

View file

@ -26,7 +26,7 @@ serde = { version = "1.0.129", features = ["derive"] }
serde_json = { version = "1.0.66", features = ["preserve_order"] }
serde_v8 = { version = "0.20.0", path = "../serde_v8" }
url = { version = "2.2.2", features = ["serde"] }
v8 = "0.35.0"
v8 = "0.36.0"
[[example]]
name = "http_bench_json_ops"

View file

@ -12,7 +12,7 @@ description = "Rust to V8 serialization and deserialization"
[dependencies]
serde = { version = "1.0.130", features = ["derive"] }
serde_bytes = "0.11"
v8 = "0.35.0"
v8 = "0.36.0"
[dev-dependencies]
bencher = "0.1"