diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d57a5a8..b3f43ab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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: diff --git a/Cargo.toml b/Cargo.toml index e1bba87..c021afd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" @@ -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"] } diff --git a/clippy.toml b/clippy.toml index 8c0bc00..4579197 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1 +1 @@ -msrv = "1.81" +msrv = "1.82"