chore(deps): update all dependencies
Some checks failed
renovate/artifacts Artifact file update failure

This commit is contained in:
Kasper Juul Hermansen 2025-01-31 01:47:15 +00:00
parent 570a49594e
commit 1b1670f2fc
4 changed files with 273 additions and 235 deletions

494
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -11,4 +11,4 @@ tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3.18" } tracing-subscriber = { version = "0.3.18" }
clap = { version = "4", features = ["derive", "env"] } clap = { version = "4", features = ["derive", "env"] }
dotenv = { version = "0.15" } dotenv = { version = "0.15" }
axum = { version = "0.7" } axum = { version = "0.8" }

View File

@ -13,7 +13,7 @@ dotenv.workspace = true
axum.workspace = true axum.workspace = true
serde = { version = "1.0.197", features = ["derive"] } serde = { version = "1.0.197", features = ["derive"] }
sqlx = { version = "0.7.3", features = [ sqlx = { version = "0.8.0", features = [
"runtime-tokio", "runtime-tokio",
"tls-rustls", "tls-rustls",
"postgres", "postgres",
@ -21,11 +21,11 @@ sqlx = { version = "0.7.3", features = [
"time", "time",
] } ] }
uuid = { version = "1.7.0", features = ["v4"] } uuid = { version = "1.7.0", features = ["v4"] }
tower-http = { version = "0.5.2", features = ["cors", "trace"] } tower-http = { version = "0.6.0", features = ["cors", "trace"] }
kafka = "0.10.0" kafka = "0.10.0"
drift = { git = "https://github.com/kjuulh/drift", branch = "main" } drift = { git = "https://github.com/kjuulh/drift", branch = "main" }
num = { version = "0.4.3", features = ["num-bigint", "rand", "serde"] } num = { version = "0.4.3", features = ["num-bigint", "rand", "serde"] }
chrono = { version = "0.4.38", features = ["serde"] } chrono = { version = "0.4.38", features = ["serde"] }
rand = "0.8.5" rand = "0.9.0"
serde_json = "1.0.122" serde_json = "1.0.122"

View File

@ -82,7 +82,7 @@ services:
memory: 28G memory: 28G
postgres-0: postgres-0:
image: "postgres:15-alpine" image: "postgres:17-alpine"
environment: environment:
- POSTGRES_HOST_AUTH_METHOD=trust - POSTGRES_HOST_AUTH_METHOD=trust
- POSTGRES_USER=postgres - POSTGRES_USER=postgres
@ -146,7 +146,7 @@ services:
restart: always restart: always
message_queue: message_queue:
image: "docker.redpanda.com/redpandadata/redpanda:v24.2.1" image: "docker.redpanda.com/redpandadata/redpanda:v24.3.4"
command: command:
- redpanda - redpanda
- start - start
@ -182,7 +182,7 @@ services:
console: console:
container_name: redpanda-console container_name: redpanda-console
image: docker.redpanda.com/redpandadata/console:v2.7.0 image: docker.redpanda.com/redpandadata/console:v2.8.2
entrypoint: /bin/sh entrypoint: /bin/sh
command: -c 'echo "$$CONSOLE_CONFIG_FILE" > /tmp/config.yml; /app/console' command: -c 'echo "$$CONSOLE_CONFIG_FILE" > /tmp/config.yml; /app/console'
environment: environment: