Skip to content

Commit

Permalink
chore: bump boa 20 (#247)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Dec 27, 2024
1 parent 3353282 commit 5622f23
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: ["stable", "nightly", "1.81"] # MSRV
rust: ["stable", "nightly", "1.82"] # MSRV
flags: ["", "--all-features"]
steps:
- uses: actions/checkout@v3
Expand All @@ -28,10 +28,10 @@ jobs:
cache-on-failure: true
# Only run tests on latest stable and above
- name: build
if: ${{ matrix.rust == '1.81' }} # MSRV
if: ${{ matrix.rust == '1.82' }} # MSRV
run: cargo build --workspace ${{ matrix.flags }}
- name: test
if: ${{ matrix.rust != '1.81' }} # MSRV
if: ${{ matrix.rust != '1.82' }} # MSRV
run: cargo test --workspace ${{ matrix.flags }}

feature-checks:
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "revm-inspectors"
description = "Revm inspector implementations"
version = "0.13.0"
edition = "2021"
rust-version = "1.81.0"
rust-version = "1.82.0"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/paradigmxyz/revm-inspectors"
repository = "https://github.com/paradigmxyz/revm-inspectors"
Expand Down Expand Up @@ -45,8 +45,8 @@ serde = { version = "1", optional = true, features = ["derive"] }
serde_json = "1.0"

# js-tracer
boa_engine = { version = "0.19", optional = true }
boa_gc = { version = "0.19", optional = true }
boa_engine = { version = "0.20", optional = true }
boa_gc = { version = "0.20", optional = true }

[dev-dependencies]
snapbox = { version = "0.6", features = ["term-svg"] }
Expand Down
2 changes: 1 addition & 1 deletion clippy.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
msrv = "1.81"
msrv = "1.82"

0 comments on commit 5622f23

Please sign in to comment.