From 0ab6b5e619ddc76d10a036da0a010f6d419e95e3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 23:12:44 +0000 Subject: [PATCH] fix(deps): update rust crate bytes to v1.8.0 --- Cargo.lock | 4 ++-- Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 137185c..5edf49d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -438,9 +438,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.6.1" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a12916984aab3fa6e39d655a33e09c0071eb36d6ab3aea5c2d78551f1df6d952" +checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da" [[package]] name = "bytestring" diff --git a/Dockerfile b/Dockerfile index 7b63c47..a730ce8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ #################################################################################################### ## Builder #################################################################################################### -FROM --platform=$BUILDPLATFORM rust:1.82 AS builder +FROM --platform=$BUILDPLATFORM rust:1.79 AS builder ARG TARGETPLATFORM WORKDIR /dtrd @@ -70,7 +70,7 @@ RUN if [ "${TARGETPLATFORM}" = "linux/amd64" ]; then \ #################################################################################################### ## Final image #################################################################################################### -FROM rust:1.82 +FROM rust:1.79 # Import from builder. COPY --from=builder /etc/passwd /etc/passwd