From 8fd757cd2504c10fad00b6616bdd10c867e4ff21 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 10:43:47 +0000 Subject: [PATCH] chore(deps): update all non-major dependencies --- Cargo.toml | 4 +- Dockerfile | 2 +- Dockerfile.dev | 2 +- crates/entity/Cargo.toml | 10 ++--- crates/health-check/Cargo.toml | 2 +- crates/migration/Cargo.toml | 12 +++--- crates/server/Cargo.toml | 72 +++++++++++++++++----------------- 7 files changed, 52 insertions(+), 52 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e1945b96..efbd8793 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ edition = "2021" [dependencies] server = { path = "crates/server" } -tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread", "fs"] } +tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread", "fs"] } [target.'cfg(not(target_env = "msvc"))'.dependencies] -jemallocator = "0.5.0" +jemallocator = "0.5.4" diff --git a/Dockerfile b/Dockerfile index 53bb2168..edd59fb6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ RUN cargo build --target x86_64-unknown-linux-musl --release ## Build CA Certificates #################################################################################################### -FROM alpine:3.17.2 as ca-certificates +FROM alpine:3.19.0 as ca-certificates RUN apk add -U --no-cache ca-certificates #################################################################################################### diff --git a/Dockerfile.dev b/Dockerfile.dev index 85a07777..97c99732 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,4 +1,4 @@ -FROM rust:1.68 AS builder +FROM rust:1.75 AS builder RUN apt update && apt install -y nodejs npm RUN npm i -g npm bunyan diff --git a/crates/entity/Cargo.toml b/crates/entity/Cargo.toml index 7b7b430c..9152c7c6 100644 --- a/crates/entity/Cargo.toml +++ b/crates/entity/Cargo.toml @@ -10,9 +10,9 @@ name = "entity" path = "src/lib.rs" [dependencies] -serde = { version = "1.0.158", features = ["derive"] } -serde_json = "1.0.94" -chrono = { version = "0.4.24", features = ["serde"] } -sea-orm = { version = "0.11.1", features = ["postgres-array"] } -sea-query = { version = "0.28.3", features = ["postgres-array"] } +serde = { version = "1.0.195", features = ["derive"] } +serde_json = "1.0.111" +chrono = { version = "0.4.31", features = ["serde"] } +sea-orm = { version = "0.12.12", features = ["postgres-array"] } +sea-query = { version = "0.30.7", features = ["postgres-array"] } getset = "0.1.2" diff --git a/crates/health-check/Cargo.toml b/crates/health-check/Cargo.toml index 21e6c912..29529f76 100644 --- a/crates/health-check/Cargo.toml +++ b/crates/health-check/Cargo.toml @@ -6,4 +6,4 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -minreq = { version = "2.7.0", default-features = false } +minreq = { version = "2.11.0", default-features = false } diff --git a/crates/migration/Cargo.toml b/crates/migration/Cargo.toml index a18c7ba7..14e313d1 100644 --- a/crates/migration/Cargo.toml +++ b/crates/migration/Cargo.toml @@ -11,10 +11,10 @@ path = "src/lib.rs" [dependencies] entity = { path = "../entity" } -sea-orm-migration = { version = "0.11.1", features = ["sqlx-postgres", "runtime-tokio-native-tls"] } -chrono = "0.4.24" -tracing = "0.1.37" -tracing-subscriber = "0.3.16" -tokio = { version = "1.26.0", features = ["macros"] } -openssl = { version = "0.10.47", features = ["vendored"] } +sea-orm-migration = { version = "0.12.12", features = ["sqlx-postgres", "runtime-tokio-native-tls"] } +chrono = "0.4.31" +tracing = "0.1.40" +tracing-subscriber = "0.3.18" +tokio = { version = "1.35.1", features = ["macros"] } +openssl = { version = "0.10.63", features = ["vendored"] } openssl-probe = "0.1.5" diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index f57872f1..f99c3f54 100644 --- a/crates/server/Cargo.toml +++ b/crates/server/Cargo.toml @@ -8,49 +8,49 @@ publish = false [dependencies] entity = { path = "../entity" } migration = { path = "../migration" } -actix-web = "4.3.1" -actix-multipart = { version = "0.6.0" } -actix-cors = { version = "0.6.4" } +actix-web = "4.4.1" +actix-multipart = { version = "0.6.1" } +actix-cors = { version = "0.7.0" } mime = { version = "0.3.17" } -tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread", "fs"] } -tokio-util = { version = "0.7.7", features = ["codec"] } -serde = "1.0.158" -tracing = "0.1.37" -tracing-actix-web = { version = "0.7.3", features = ["default", "opentelemetry_0_17"] } -opentelemetry = { version = "0.18", features = ["rt-tokio-current-thread"] } -opentelemetry-jaeger = { version = "0.17", features = ["rt-tokio-current-thread"] } -tracing-opentelemetry = { version = "0.18.0" } -tracing-subscriber = { version = "0.3.16", features = ["registry", "env-filter"] } -tracing-bunyan-formatter = "0.3.6" -tracing-log = "0.1.3" -sea-orm = { version = "0.11.1", features = ["debug-print", "runtime-tokio-native-tls", "sqlx-postgres", "postgres-array"] } -config = { version = "0.13.3" } -serde_json = "1.0.94" -chrono = "0.4.24" -futures = "0.3.27" +tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread", "fs"] } +tokio-util = { version = "0.7.10", features = ["codec"] } +serde = "1.0.195" +tracing = "0.1.40" +tracing-actix-web = { version = "0.7.9", features = ["default", "opentelemetry_0_17"] } +opentelemetry = { version = "0.21", features = ["rt-tokio-current-thread"] } +opentelemetry-jaeger = { version = "0.20", features = ["rt-tokio-current-thread"] } +tracing-opentelemetry = { version = "0.22.0" } +tracing-subscriber = { version = "0.3.18", features = ["registry", "env-filter"] } +tracing-bunyan-formatter = "0.3.9" +tracing-log = "0.2.0" +sea-orm = { version = "0.12.12", features = ["debug-print", "runtime-tokio-native-tls", "sqlx-postgres", "postgres-array"] } +config = { version = "0.13.4" } +serde_json = "1.0.111" +chrono = "0.4.31" +futures = "0.3.30" getset = "0.1.2" -uuid = { version = "1.3.0", features = ["serde"] } +uuid = { version = "1.7.0", features = ["serde"] } derive_more = "0.99.17" -url = "2.3.1" -async-trait = "0.1.67" -once_cell = "1.17.1" -aws-sdk-s3 = { version = "0.24.0", features = ["native-tls", "rt-tokio"], default-features = false } -aws-types = { version = "0.54.1" } -aws-config = { version = "0.54.1", features = ["native-tls", "rt-tokio"], default-features = false } -aws-smithy-http = { version = "0.54.4", features = ["rt-tokio"] } -aws-smithy-async = { version = "0.54.4", features = ["rt-tokio"] } -image = { version = "0.24.5" } -openssl = { version = "0.10.47", features = ["vendored"] } +url = "2.5.0" +async-trait = "0.1.77" +once_cell = "1.19.0" +aws-sdk-s3 = { version = "0.39.1", features = ["native-tls", "rt-tokio"], default-features = false } +aws-types = { version = "0.101.0" } +aws-config = { version = "0.101.0", features = ["native-tls", "rt-tokio"], default-features = false } +aws-smithy-http = { version = "0.60.3", features = ["rt-tokio"] } +aws-smithy-async = { version = "0.101.0", features = ["rt-tokio"] } +image = { version = "0.24.8" } +openssl = { version = "0.10.63", features = ["vendored"] } openssl-probe = "0.1.5" -deunicode = { version = "1.3.3" } +deunicode = { version = "1.4.2" } lazy_static = { version = "1.4.0" } -base64 = "0.21.0" -reqwest = { version = "0.11.15", features = ["json", "cookies", "multipart", "stream"] } -typed-builder = "0.14.0" +base64 = "0.21.7" +reqwest = { version = "0.11.23", features = ["json", "cookies", "multipart", "stream"] } +typed-builder = "0.18.1" humansize = { version = "2.1.3", features = ["impl_style"] } -aws-credential-types = "0.54.1" +aws-credential-types = "0.101.0" [dev-dependencies] -insta = { version = "1.28.0", features = ["json"] } +insta = { version = "1.34.0", features = ["json"] } portpicker = "0.1.1" test-context = "0.1.4"