Skip to content

Commit 55d26f7

Browse files
authored
chore: bump to rust 1.80 (#305)
* chore: bump to rust 1.80 Signed-off-by: Gustavo Inacio <[email protected]> * chore: fix clippy Signed-off-by: Gustavo Inacio <[email protected]> --------- Signed-off-by: Gustavo Inacio <[email protected]>
1 parent 99b4dbe commit 55d26f7

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: cargo fmt
1212
runs-on: ubuntu-latest
1313
container:
14-
image: rust:1.76-bookworm
14+
image: rust:1.80-bookworm
1515
steps:
1616
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
1717
- run: |
@@ -34,7 +34,7 @@ jobs:
3434
ports:
3535
- 5432:5432
3636
container:
37-
image: rust:1.76-bookworm
37+
image: rust:1.80-bookworm
3838
env:
3939
DATABASE_URL: postgres://postgres@postgres:5432
4040
steps:
@@ -61,7 +61,7 @@ jobs:
6161
name: cargo clippy
6262
runs-on: ubuntu-latest
6363
container:
64-
image: rust:1.76-bookworm
64+
image: rust:1.80-bookworm
6565
env:
6666
DATABASE_URL: postgres://postgres@postgres:5432
6767
SQLX_OFFLINE: true
@@ -103,7 +103,7 @@ jobs:
103103
ports:
104104
- 5432:5432
105105
container:
106-
image: rust:1.76-bookworm
106+
image: rust:1.80-bookworm
107107
env:
108108
DATABASE_URL: postgres://postgres@postgres:5432
109109
steps:
@@ -153,7 +153,7 @@ jobs:
153153
ports:
154154
- 5432:5432
155155
container:
156-
image: rust:1.76-bookworm
156+
image: rust:1.80-bookworm
157157
env:
158158
DATABASE_URL: postgres://postgres@postgres:5432
159159
steps:

Dockerfile.indexer-service-rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.76-bookworm as build
1+
FROM rust:1.80-bookworm as build
22

33
WORKDIR /root
44
COPY . .

Dockerfile.indexer-tap-agent

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.76-bookworm as build
1+
FROM rust:1.80-bookworm as build
22

33
WORKDIR /root
44
COPY . .

tap-agent/src/agent/sender_allocation.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1450,7 +1450,7 @@ pub mod tests {
14501450
// Add receipts to the database.
14511451
for i in 0..10 {
14521452
let receipt =
1453-
create_received_receipt(&ALLOCATION_ID_0, &SIGNER.0, i, u64::max_value(), i.into());
1453+
create_received_receipt(&ALLOCATION_ID_0, &SIGNER.0, i, u64::MAX, i.into());
14541454
store_receipt(&pgpool, receipt.signed_receipt())
14551455
.await
14561456
.unwrap();

0 commit comments

Comments
 (0)