diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 44e11aae8b..2f02e716ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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) diff --git a/Cargo.lock b/Cargo.lock index 62879dd4d6..8ceec13013 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/core/Cargo.toml b/core/Cargo.toml index dd26cd2a6a..06a6cec418 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -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]]