Skip to content

Commit b65c7de

Browse files
authored
Merge branch 'main' into refactor/signature-logic-port
2 parents dab4fd8 + b990e3c commit b65c7de

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/actions/run-fixture-tests/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ runs:
104104
- name: Setup Rust
105105
uses: dtolnay/rust-toolchain@master
106106
with:
107-
toolchain: "1.92.0"
107+
toolchain: "1.97.1"
108108

109109
- name: Setup cache
110110
uses: Swatinem/rust-cache@v2

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup Rust
2727
uses: dtolnay/rust-toolchain@master
2828
with:
29-
toolchain: "1.92.0"
29+
toolchain: "1.97.1"
3030
components: rustfmt, clippy
3131

3232
- name: Setup cache

.github/workflows/daily_loc_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Setup Rust
4040
uses: dtolnay/rust-toolchain@master
4141
with:
42-
toolchain: "1.92.0"
42+
toolchain: "1.97.1"
4343

4444
- name: Setup cache
4545
uses: Swatinem/rust-cache@v2

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Not to be confused with Ethereum consensus clients AKA Beacon Chain clients AKA
66
## Quick Reference
77

88
**Main branch:** `main`
9-
**Rust version:** 1.92.0 (edition 2024)
9+
**Rust version:** 1.97.1 (edition 2024)
1010
**Test fixtures release:** Download latest production fixtures from leanSpec releases
1111

1212
## Codebase Structure (12 workspace crates)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ keywords = ["ethereum", "blockchain", "consensus", "protocol"]
2323
license = "LICENSE"
2424
readme = "README.md"
2525
repository = "https://github.com/lambdaclass/ethlambda"
26-
rust-version = "1.92.0"
26+
rust-version = "1.97.1"
2727
version = "0.1.0"
2828

2929
[workspace.dependencies]

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker.io/docker/dockerfile:1.7-labs
22

3-
FROM rust:1.92-bookworm AS chef
3+
FROM rust:1.97-bookworm AS chef
44
WORKDIR /app
55

66
# Install cargo-chef and system dependencies

docs/rpc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ The fork-choice tree from the finalized root, with LMD-GHOST weights computed ov
166166

167167
```json
168168
{
169-
"version": "ethlambda/v0.1.0-main-892ad575/x86_64-unknown-linux-gnu/rustc-v1.85.0",
169+
"version": "ethlambda/v0.1.0-main-892ad575/x86_64-unknown-linux-gnu/rustc-v1.97.1",
170170
"peer_id": "16Uiu2HAm7v1x…"
171171
}
172172
```

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "1.92.0"
2+
channel = "1.97.1"
33
components = ["rustfmt", "clippy"]

0 commit comments

Comments
 (0)