diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 109b045d..e8503b70 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -16,7 +16,7 @@ futures = "0.3.31" geo = { version = "0.33.0", features = ["use-serde"] } geojson = "1.0.0" geozero = { version = "0.15.1", features = ["with-postgis-sqlx"] } -gtfs-structures = "0.47.0" +gtfs-structures = "0.48.0" headers = "0.4.1" http = "1.2.0" indicatif = "0.18.0" @@ -34,7 +34,7 @@ reqwest = { version = "0.13.2", default-features = false, features = [ rgb = "0.8.52" serde = { version = "1.0.228", features = ["derive"] } serde_json = { version = "1.0.145", features = ["raw_value"] } -sqlx = { version = "0.8.6", features = [ +sqlx = { version = "0.9.0", features = [ "chrono", "json", "postgres", @@ -44,7 +44,7 @@ sqlx = { version = "0.8.6", features = [ titlecase = "3.6.0" tokio = { version = "1.48.0", features = ["full"] } tower = { version = "0.5.2", features = ["buffer", "limit"] } -tower-http = { version = "0.6.6", features = [ +tower-http = { version = "0.7.0", features = [ "compression-br", "compression-gzip", "normalize-path", @@ -59,8 +59,8 @@ utoipa-scalar = { version = "0.3.0", features = ["axum"] } uuid = { version = "1.18.1", features = ["serde", "v7"] } [dev-dependencies] -axum-test = "=20.0.0" -test-log = { version = "=0.2.20", default-features = false, features = ["trace"] } +axum-test = "=20.1.0" +test-log = { version = "=0.2.21", default-features = false, features = ["trace"] } tokio-test = "=0.4.5" [build-dependencies] diff --git a/backend/Dockerfile b/backend/Dockerfile index 964683e5..3bf5ff6b 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:slim@sha256:a6ed0cbc27f063c367aee8373f35fdf4dcf8be7596c4d19d6643e3252e514c2e AS build +FROM rust:slim@sha256:5c6f46a6e4472ab1ca7ba7d494e6677f2f219ebc02f32025d3986f057635ec9c AS build RUN set -eux; \ apt-get update; \