diff options
author | Luca Casonato <hello@lcas.dev> | 2021-12-03 15:56:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-03 15:56:04 +0100 |
commit | 27ef275d27d57331ea602c12fdc7f4b6c73f3f1a (patch) | |
tree | b55f0a509d6bc1c56f30abd0f386036f6fdd183f | |
parent | 46794d4e433a6bfd741521b321e5df6d7f2a1335 (diff) |
chore: update to rusty v8 0.36.0 (#12979)
-rw-r--r-- | .github/workflows/ci.yml | 6 | ||||
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | core/Cargo.toml | 2 | ||||
-rw-r--r-- | 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 366960c00..af888ff09 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 92b491b5e..6fc976b67 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 5924d82fd..afe6127c4 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 76260f77a..4129710aa 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" |