From 1af5bae9475a3c39f09039359f9d8569c4961ced Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 3 May 2024 15:21:14 +0200 Subject: [PATCH] fix(deps): update all non-major dependencies (#1139) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- server/Cargo.lock | 4 ++-- server/Dockerfile | 2 +- server/main-api/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/server/Cargo.lock b/server/Cargo.lock index 08276eb9d..8e7a7b04f 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -547,9 +547,9 @@ dependencies = [ [[package]] name = "cached" -version = "0.50.0" +version = "0.51.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10a7d38ed2761b8a13ce42bc44b09d5a052b88da2f9fead624c779f31ac0729a" +checksum = "e88c7f534d0a694f728076aa57622fb1b132f28bf662127187adc7d7cd5437d0" dependencies = [ "ahash", "async-trait", diff --git a/server/Dockerfile b/server/Dockerfile index 4ba60e021..1bafa30a8 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.77-alpine AS compiler +FROM rust:1.78-alpine AS compiler # to ache the build this line inludes all the dependencys all servers need # this is not an issue since we copy the generated binary to a more minimal envornment diff --git a/server/main-api/Cargo.toml b/server/main-api/Cargo.toml index d4402f4f0..1a87547dc 100644 --- a/server/main-api/Cargo.toml +++ b/server/main-api/Cargo.toml @@ -31,7 +31,7 @@ actix-web = { version = "4.5.1", default-features = false, features = ["macros", actix-cors = "0.7.0" rustls = { version = "0.23.5", default-features = false, features = ["ring"] } # the aws' fips complient libary has weird bingen issues which require deeper looking into -cached = { version = "0.50.0", features = ["default", "async", "tokio", "disk_store"] } +cached = { version = "0.51.0", features = ["default", "async", "tokio", "disk_store"] } futures = "0.3.30" unicode-truncate = "1.0.0"