diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1018cd5..226174c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,11 +20,11 @@ jobs: strategy: fail-fast: false matrix: - rust: ["stable", "nightly", "1.76"] # MSRV + rust: ["stable", "nightly", "1.79"] # MSRV flags: ["--no-default-features", "", "--all-features"] exclude: # Some features have higher MSRV. - - rust: "1.76" # MSRV + - rust: "1.79" # MSRV flags: "--all-features" steps: - uses: actions/checkout@v3 @@ -43,13 +43,13 @@ jobs: cache-on-failure: true # Only run tests on latest stable and above - name: Install cargo-nextest - if: ${{ matrix.rust != '1.76' }} # MSRV + if: ${{ matrix.rust != '1.79' }} # MSRV uses: taiki-e/install-action@nextest - name: build - if: ${{ matrix.rust == '1.76' }} # MSRV + if: ${{ matrix.rust == '1.79' }} # MSRV run: cargo build --workspace ${{ matrix.flags }} - name: test - if: ${{ matrix.rust != '1.76' }} # MSRV + if: ${{ matrix.rust != '1.79' }} # MSRV run: cargo nextest run --workspace ${{ matrix.flags }} doctest: diff --git a/Cargo.toml b/Cargo.toml index 0dd1390..4e01097 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "foundry-fork-db" description = "Fork database used by Foundry" version = "0.1.0" edition = "2021" -rust-version = "1.76" +rust-version = "1.79" authors = ["Foundry Contributors"] license = "MIT OR Apache-2.0" homepage = "https://github.com/foundry-rs/foundry-fork-db"