fix: automatically reconnect after losing a WebSocket connection
Some checks failed
actionlint check / actionlint check (pull_request) Successful in 7s
conventional pull request title check / conventional pull request title check (pull_request) Successful in 4s
conventional commit messages check / conventional commit messages check (pull_request) Successful in 6s
dotenv-linter check / dotenv-linter check (pull_request) Successful in 7s
GitLeaks check / GitLeaks check (pull_request) Successful in 12s
hadolint check / hadolint check (pull_request) Successful in 13s
htmlhint check / htmlhint check (pull_request) Successful in 35s
markdownlint check / markdownlint check (pull_request) Successful in 43s
Prettier check / Prettier check (pull_request) Successful in 39s
Rust check / Rust check (pull_request) Failing after 15s
checkov check / checkov check (pull_request) Successful in 1m19s
ShellCheck check / ShellCheck check (pull_request) Successful in 25s
yamllint check / yamllint check (pull_request) Successful in 25s
Stylelint check / Stylelint check (pull_request) Successful in 28s

This commit is contained in:
2026-01-10 12:03:48 +01:00
parent c23397a941
commit 98b97d2c57
3 changed files with 162 additions and 402 deletions

View File

@@ -8,7 +8,7 @@ edition = "2024"
[dependencies]
chrono = { version = "0.4.42", features = ["serde", "unstable-locales"] }
dioxus = { version = "0.7.2", features = ["fullstack", "router"] }
dioxus = { version = "0.7.2", features = [ "fullstack", "router" ] }
# TODO: Remove this once https://github.com/DioxusLabs/dioxus/issues/4765 is resolved.
dioxus-html = { version = "0.7.2", features = ["serialize"] }
feruca = { version = "0.11.5" }
@@ -33,7 +33,7 @@ time = { version = "0.3.44", optional = true }
tokio = { version = "1.48.0", optional = true }
async-std = { version = "1.13.2", optional = true }
dioxus-i18n = "0.5.0"
dioxus-i18n = { version = "0.5.0" }
voca_rs = "1.15.2"
load-dotenv = "0.1.2"