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