Compare commits

..

1 Commits

Author SHA1 Message Date
265516c1a6 chore: bump the Dioxus and Diesel CLI
All checks were successful
conventional pull request title check / conventional pull request title check (pull_request) Successful in 10s
dotenv-linter check / dotenv-linter check (pull_request) Successful in 26s
GitLeaks check / GitLeaks check (pull_request) Successful in 23s
hadolint check / hadolint check (pull_request) Successful in 52s
htmlhint check / htmlhint check (pull_request) Successful in 1m3s
markdownlint check / markdownlint check (pull_request) Successful in 1m1s
Prettier check / Prettier check (pull_request) Successful in 52s
yamllint check / yamllint check (pull_request) Successful in 27s
Stylelint check / Stylelint check (pull_request) Successful in 33s
ShellCheck check / ShellCheck check (pull_request) Successful in 9m9s
Rust check / Rust check (pull_request) Successful in 29m35s
actionlint check / actionlint check (pull_request) Successful in 18s
conventional commit messages check / conventional commit messages check (pull_request) Successful in 13s
checkov check / checkov check (pull_request) Successful in 1m37s
2026-01-24 00:44:51 +01:00
4 changed files with 5 additions and 2 deletions

View File

@@ -8,6 +8,7 @@ edition = "2024"
[dependencies]
chrono = { version = "0.4.43", features = ["serde", "unstable-locales"] }
# Remember to update the CLI as well.
dioxus = { version = "0.7.3", features = ["fullstack", "router"] }
# TODO: Remove this once https://github.com/DioxusLabs/dioxus/issues/4765 is resolved.
dioxus-html = { version = "0.7.3", features = ["serialize"] }
@@ -19,6 +20,7 @@ tracing = "0.1.44"
unic-langid-impl = { version = "0.9.6", features = ["serde"] }
validator = { version = "0.20.0", features = ["derive"] }
# Remember to update the CLI as well.
diesel = { version = "2.3.6", features = [
"chrono",
"postgres",

View File

@@ -6,6 +6,7 @@ services:
networks:
- default
- web-server-network
ports: ["8000:80"]
restart: always
depends_on: ["db"]

View File

@@ -5,7 +5,7 @@ RUN useradd -m -u 1000 -s /bin/bash app_user \
USER app_user
RUN cargo install --git https://github.com/diesel-rs/diesel --rev 2e85ba060d3d70ea605ea58a79b8a435749a7adc --locked diesel_cli \
RUN cargo install --git https://github.com/diesel-rs/diesel --rev 207604888d28a490061698f07a25090438be42fe --locked diesel_cli \
&& cargo install --git https://github.com/DioxusLabs/dioxus --rev 22b06badde44ba1af0fcf339c91b66483175b660 --locked dioxus-cli
COPY --chown=app_user . /srv/app

View File

@@ -1,6 +1,6 @@
FROM rust:1.92.0-bookworm@sha256:9676d0547a259997add8f5924eb6b959c589ed39055338e23b99aba7958d6d31 AS builder_base
RUN cargo install --git https://github.com/diesel-rs/diesel --rev 2e85ba060d3d70ea605ea58a79b8a435749a7adc --locked diesel_cli \
RUN cargo install --git https://github.com/diesel-rs/diesel --rev 207604888d28a490061698f07a25090438be42fe --locked diesel_cli \
&& cargo install --git https://github.com/DioxusLabs/dioxus --rev 22b06badde44ba1af0fcf339c91b66483175b660 --locked dioxus-cli --features disable-telemetry
COPY . /srv/app