Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,136 changes: 500 additions & 636 deletions app-service/Cargo.lock

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions app-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
axum = "0.7.4"
axum-extra = { version = "0.9.2", features = ["cookie"] }
tower-http = { version = "0.5.0", features = ["fs"] }
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.11", default-features = false, features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
askama = "0.12.1"
axum = "0.8.6"
axum-extra = { version = "0.12.1", features = ["cookie"] }
tower-http = { version = "0.6.6", features = ["fs"] }
tokio = { version = "1.48.0", features = ["full"] }
reqwest = { version = "0.12.24", default-features = false, features = ["json"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
askama = "0.14.0"
6 changes: 4 additions & 2 deletions app-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Start with image that has the Rust toolchain installed
FROM rust:1.77-alpine AS chef
FROM rust:1.90-alpine AS chef
USER root
# Add cargo-chef to cache dependencies
RUN apk add --no-cache musl-dev & cargo install cargo-chef
RUN apk add --no-cache musl-dev
RUN rustup update stable
RUN cargo install cargo-chef --locked
WORKDIR /app

FROM chef AS planner
Expand Down
Loading