Skip to content

Commit

Permalink
chore: update rust version && bundler spec tests commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Vid201 committed Sep 16, 2024
1 parent f695b54 commit 16cc59b
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@v4

- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@1.78.0
uses: dtolnay/rust-toolchain@1.81.0
with:
components: clippy

Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
- uses: actions/checkout@v4
with:
repository: eth-infinitism/bundler-spec-tests
ref: '08cbbfcb9e37b84c0ef9e546975f88fa638cac61'
ref: '4d6f66a95099bd79d1da1210212d8f517fbb9481'
submodules: true

- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
fetch-depth: 0

- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@1.78.0
uses: dtolnay/rust-toolchain@1.81.0

- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ authors = ["Vid Kersic <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/silius-rs/silius"
rust-version = "1.78.0"
rust-version = "1.81.0"
keywords = [
"silius",
"primitives",
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM lukemathwalker/cargo-chef:latest-rust-1.78.0 AS chef
FROM lukemathwalker/cargo-chef:latest-rust-1.81.0 AS chef
WORKDIR /app

LABEL org.opencontainers.image.source=https://github.com/silius-rs/silius
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ For more information: <https://hackmd.io/@Vid201/aa-bundler-rust>

**Prerequisites:**

Rust version: 1.78.0
Rust version: 1.81.0

1. `libclang-dev`, `pkg-config` and `libssl-dev` on Debian/Ubuntu.
2. Ethereum execution client JSON-RPC API with enabled [`debug_traceCall`](https://geth.ethereum.org/docs/interacting-with-geth/rpc/ns-debug#debug_tracecall). For production, you can use [Geth](https://github.com/ethereum/go-ethereum) or [Erigon](https://github.com/ledgerwatch/erigon). For testing, we are using Geth dev mode (tested with [v1.12.0](https://github.com/ethereum/go-ethereum/releases/tag/v1.12.0)); so you need to install [Geth](https://geth.ethereum.org/docs/getting-started/installing-geth) for running tests.
Expand Down Expand Up @@ -136,7 +136,7 @@ make lint
make test
```

Official [bundler spec tests](https://github.com/eth-infinitism/bundler-spec-tests) developed by the [eth-infinitism](https://github.com/eth-infinitism/) team are also included in the repo's CI pipeline (commit: [08cbbfcb9e37b84c0ef9e546975f88fa638cac61](https://github.com/eth-infinitism/bundler-spec-tests/tree/08cbbfcb9e37b84c0ef9e546975f88fa638cac61)). You can find more information on how to run tests [here](https://github.com/eth-infinitism/bundler-spec-tests). Make sure your contribution doesn't break the tests!
Official [bundler spec tests](https://github.com/eth-infinitism/bundler-spec-tests) developed by the [eth-infinitism](https://github.com/eth-infinitism/) team are also included in the repo's CI pipeline (commit: [4d6f66a95099bd79d1da1210212d8f517fbb9481](https://github.com/eth-infinitism/bundler-spec-tests/tree/4d6f66a95099bd79d1da1210212d8f517fbb9481)). You can find more information on how to run tests [here](https://github.com/eth-infinitism/bundler-spec-tests). Make sure your contribution doesn't break the tests!

## Contact

Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "1.78.0"
channel = "1.81.0"

0 comments on commit 16cc59b

Please sign in to comment.