Skip to content

Commit 2cbfbba

Browse files
committed
chore(deps): update rust msrv to 1.70
1 parent 9e5001f commit 2cbfbba

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/CI-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
- name: Install Rust
107107
uses: dtolnay/rust-toolchain@master
108108
with:
109-
toolchain: 1.68
109+
toolchain: 1.70
110110

111111
- uses: Swatinem/[email protected]
112112
with:

.github/workflows/CI-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- name: Install Rust
6262
uses: dtolnay/rust-toolchain@master
6363
with:
64-
toolchain: 1.65
64+
toolchain: 1.70
6565

6666
- uses: Swatinem/[email protected]
6767
with:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
resolver = "2"
33
members = ["crates/*"]
44
package.edition = "2021"
5-
package.rust-version = "1.68"
5+
package.rust-version = "1.70"
66
package.license = "Apache-2.0"
77

88
[profile.release]

INSTALL_dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if [[ "${TRACE-0}" == "1" ]]; then
99
set -o xtrace
1010
fi
1111

12-
RUST_MSRV=1.68.0
12+
RUST_MSRV=1.70.0
1313
_DB_NAME="hyperswitch_db"
1414
_DB_USER="db_user"
1515
_DB_PASS="db_password"

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
systems = nixpkgs.lib.systems.flakeExposed;
1414
perSystem = { self', pkgs, system, ... }:
1515
let
16-
rustVersion = "1.68.0";
16+
rustVersion = "1.70.0";
1717
rustPkgs = pkgs.rustBuilder.makePackageSet {
1818
inherit rustVersion;
1919
packageFun = import ./Cargo.nix;

loadtest/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM rust:1.68 AS builder
1+
FROM rust:1.70 AS builder
22

33
WORKDIR /app
44
COPY . .
55
RUN cargo install diesel_cli && cargo build --bin router --release
66

7-
FROM rust:1.68 AS runtime
7+
FROM rust:1.70 AS runtime
88
WORKDIR /app
99
COPY --from=builder /app/migrations migrations
1010
COPY --from=builder /app/target/release/router router

monitoring/docker-compose-ckh.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ services:
156156
hard: 262144
157157

158158
hyperswitch-server:
159-
image: rust:1.68
159+
image: rust:1.70
160160
command: cargo run -- -f ./config/docker_compose.toml
161161
working_dir: /app
162162
ports:

0 commit comments

Comments
 (0)