Bump minimum Rust version to 1.70

This commit is contained in:
fabianlindfors 2024-01-21 23:59:34 +01:00
parent eee7cdb53b
commit 318021c87d
2 changed files with 2 additions and 2 deletions

View File

@ -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"] }

View File

@ -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