Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update rusty_v8 #12026

Merged
merged 1 commit into from
Sep 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore: update rusty_v8
  • Loading branch information
lucacasonato committed Sep 13, 2021
commit 2c26034cb392f8597c0ca8a11f3398e4e1a4c60a
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ jobs:
~/.cargo/registry/index
~/.cargo/registry/cache
~/.cargo/git/db
key: g-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}
key: h-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}

# In main branch, always creates fresh cache
- name: Cache build output (main)
Expand All @@ -269,7 +269,7 @@ jobs:
!./target/*/*.zip
!./target/*/*.tar.gz
key: |
g-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ github.sha }}
h-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ github.sha }}

# Restore cache from the latest 'main' branch build.
- name: Cache build output (PR)
Expand All @@ -285,7 +285,7 @@ jobs:
!./target/*/*.tar.gz
key: never_saved
restore-keys: |
g-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-
h-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-

# Don't save cache after building PRs or branches other than 'main'.
- name: Skip save cache (PR)
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ libc = "0.2.101"
log = "0.4.14"
parking_lot = "0.11.1"
pin-project = "1.0.7"
rusty_v8 = "0.27.0"
rusty_v8 = "0.28.0"
serde = { version = "1.0.129", features = ["derive"] }
serde_json = { version = "1.0.66", features = ["preserve_order"] }
serde_v8 = { version = "0.10.0" }
serde_v8 = { version = "0.11.0" }
url = { version = "2.2.2", features = ["serde"] }

[[example]]
Expand Down