From 318021c87dd70d9a5985ee6aa3adfdfc28014cc7 Mon Sep 17 00:00:00 2001 From: fabianlindfors Date: Sun, 21 Jan 2024 23:59:34 +0100 Subject: [PATCH] Bump minimum Rust version to 1.70 --- Cargo.toml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1c8d2f0..d25b7fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" keywords = ["postgres", "migrations"] edition = "2021" authors = ["Fabian Lindfors"] -rust-version = "1.60" +rust-version = "1.70" [dependencies] postgres = { version = "0.19.2", features = ["with-serde_json-1"] } diff --git a/Dockerfile b/Dockerfile index e7b9c8b..fd0ac68 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.60.0 AS builder +FROM rust:1.70.0 AS builder WORKDIR /usr/src/reshape COPY . . RUN cargo build --release