Skip to content

Commit 62e6743

Browse files
authored
chore: bump rust version to 1.81 (#515)
1 parent 430c5d4 commit 62e6743

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
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.80-bookworm
14+
image: rust:1.81-bookworm
1515
steps:
1616
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1717
- run: |
@@ -34,7 +34,7 @@ jobs:
3434
ports:
3535
- 5432:5432
3636
container:
37-
image: rust:1.80-bookworm
37+
image: rust:1.81-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.80-bookworm
64+
image: rust:1.81-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.80-bookworm
106+
image: rust:1.81-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.80-bookworm
156+
image: rust:1.81-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.80-bookworm as build
1+
FROM rust:1.81-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.80-bookworm as build
1+
FROM rust:1.81-bookworm as build
22

33
WORKDIR /root
44
COPY . .

crates/monitor/src/client/subgraph_client.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ mod test {
334334
mock_server_local
335335
.register(
336336
Mock::given(method("POST"))
337-
.and(path(&format!("/subgraphs/id/{}", deployment)))
337+
.and(path(format!("/subgraphs/id/{}", deployment)))
338338
.respond_with(ResponseTemplate::new(200).set_body_json(json!({
339339
"data": {
340340
"user": {
@@ -349,7 +349,7 @@ mod test {
349349
mock_server_remote
350350
.register(
351351
Mock::given(method("POST"))
352-
.and(path(&format!("/subgraphs/id/{}", deployment)))
352+
.and(path(format!("/subgraphs/id/{}", deployment)))
353353
.respond_with(ResponseTemplate::new(200).set_body_json(json!({
354354
"data": {
355355
"user": {
@@ -415,7 +415,7 @@ mod test {
415415
mock_server_local
416416
.register(
417417
Mock::given(method("POST"))
418-
.and(path(&format!("/subgraphs/id/{}", deployment)))
418+
.and(path(format!("/subgraphs/id/{}", deployment)))
419419
.respond_with(ResponseTemplate::new(200).set_body_json(json!({
420420
"data": {
421421
"user": {
@@ -430,7 +430,7 @@ mod test {
430430
mock_server_remote
431431
.register(
432432
Mock::given(method("POST"))
433-
.and(path(&format!("/subgraphs/id/{}", deployment)))
433+
.and(path(format!("/subgraphs/id/{}", deployment)))
434434
.respond_with(ResponseTemplate::new(200).set_body_json(json!({
435435
"data": {
436436
"user": {
@@ -496,7 +496,7 @@ mod test {
496496
mock_server_local
497497
.register(
498498
Mock::given(method("POST"))
499-
.and(path(&format!("/subgraphs/id/{}", deployment)))
499+
.and(path(format!("/subgraphs/id/{}", deployment)))
500500
.respond_with(ResponseTemplate::new(200).set_body_json(json!({
501501
"data": {
502502
"user": {
@@ -511,7 +511,7 @@ mod test {
511511
mock_server_remote
512512
.register(
513513
Mock::given(method("POST"))
514-
.and(path(&format!("/subgraphs/id/{}", deployment)))
514+
.and(path(format!("/subgraphs/id/{}", deployment)))
515515
.respond_with(ResponseTemplate::new(200).set_body_json(json!({
516516
"data": {
517517
"user": {

0 commit comments

Comments
 (0)