From 27ef275d27d57331ea602c12fdc7f4b6c73f3f1a Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Fri, 3 Dec 2021 15:56:04 +0100 Subject: [PATCH] chore: update to rusty v8 0.36.0 (#12979) --- .github/workflows/ci.yml | 6 +++--- Cargo.lock | 4 ++-- core/Cargo.toml | 2 +- serde_v8/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 366960c005..af888ff09e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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) diff --git a/Cargo.lock b/Cargo.lock index 92b491b5e1..6fc976b67d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/core/Cargo.toml b/core/Cargo.toml index 5924d82fd2..afe6127c40 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -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" diff --git a/serde_v8/Cargo.toml b/serde_v8/Cargo.toml index 76260f77a1..4129710aa0 100644 --- a/serde_v8/Cargo.toml +++ b/serde_v8/Cargo.toml @@ -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"