From 0857cbfa92bce6fc08c4f1793d5f9474bb3cc694 Mon Sep 17 00:00:00 2001 From: mbecker20 Date: Tue, 16 Jan 2024 02:20:40 -0800 Subject: [PATCH] update serror and rustc build version --- Cargo.toml | 2 +- bin/core/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 75eb80ef0..6dbac66a5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ db_client = { path = "lib/db_client" } logger = { path = "lib/logger" } # mogh run_command = { version = "0.0.6", features = ["async_tokio"] } -serror = { version = "0.1.6", features = ["axum"] } +serror = { version = "0.1.7", features = ["axum"] } slack = { version = "0.1.0", package = "slack_client_rs" } derive_default_builder = "0.1.8" derive_empty_traits = "0.1.0" diff --git a/bin/core/Dockerfile b/bin/core/Dockerfile index 1566ec989..2c525eba5 100644 --- a/bin/core/Dockerfile +++ b/bin/core/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.71.1 as builder +FROM rust:1.75.0-bullseye as builder WORKDIR /builder COPY . .