Skip to content

Commit

Permalink
chore(core): update missing references to rust 1.82 (#2038)
Browse files Browse the repository at this point in the history
**Description**
Updates all missing dependencies to rust@1.82
  • Loading branch information
mpaulucci authored Feb 20, 2025
1 parent 4d9ab5a commit d21f7b2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci_loc_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
ref: ${{ github.head_ref }}

- name: Install Rust
uses: dtolnay/rust-toolchain@1.81.0
uses: dtolnay/rust-toolchain@1.82.0
with:
components: rustfmt, clippy

Expand All @@ -41,7 +41,7 @@ jobs:
ref: main

- name: Install Rust
uses: dtolnay/rust-toolchain@1.81.0
uses: dtolnay/rust-toolchain@1.82.0
with:
components: rustfmt, clippy

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ asdf plugin add golang https://github.com/asdf-community/asdf-golang.git

And uncommenting the golang line in the asdf `.tool-versions` file:
```
rust 1.81.0
rust 1.82.0
golang 1.23.2
```

Expand Down Expand Up @@ -547,7 +547,7 @@ If we forgot to include anyone, please file an issue so we can add you. We alway

# Security

We take security seriously. If you discover a vulnerability in this project, please report it responsibly.
We take security seriously. If you discover a vulnerability in this project, please report it responsibly.

- You can report vulnerabilities directly via the **[GitHub "Report a Vulnerability" feature](../../security/advisories/new)**.
- Alternatively, send an email to **[security@lambdaclass.com](mailto:security@lambdaclass.com)**.
Expand Down
2 changes: 1 addition & 1 deletion crates/networking/rpc/admin/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ pub fn node_info(
enode: enode_url,
enr: enr_url,
id: hex::encode(Keccak256::digest(local_node.node_id.as_bytes())),
name: "ethrex/0.1.0/rust1.81".to_string(),
name: "ethrex/0.1.0/rust1.82".to_string(),
ip: local_node.ip.to_string(),
ports: Ports {
discovery: local_node.udp_port,
Expand Down
2 changes: 1 addition & 1 deletion crates/networking/rpc/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ mod tests {
"enr": enr_url,
"id": hex::encode(Keccak256::digest(local_p2p_node.node_id)),
"ip": "127.0.0.1",
"name": "ethrex/0.1.0/rust1.81",
"name": "ethrex/0.1.0/rust1.82",
"ports": {
"discovery": 30303,
"listener": 30303
Expand Down

0 comments on commit d21f7b2

Please sign in to comment.