chore: bump dependencies
All checks were successful
actionlint check / actionlint check (pull_request) Successful in 7s
conventional pull request title check / conventional pull request title check (pull_request) Successful in 3s
GitLeaks check / GitLeaks check (pull_request) Successful in 14s
hadolint check / hadolint check (pull_request) Successful in 15s
conventional commit messages check / conventional commit messages check (pull_request) Successful in 7s
dotenv-linter check / dotenv-linter check (pull_request) Successful in 8s
htmlhint check / htmlhint check (pull_request) Successful in 20s
markdownlint check / markdownlint check (pull_request) Successful in 32s
Prettier check / Prettier check (pull_request) Successful in 33s
checkov check / checkov check (pull_request) Successful in 1m20s
ShellCheck check / ShellCheck check (pull_request) Successful in 30s
Stylelint check / Stylelint check (pull_request) Successful in 27s
yamllint check / yamllint check (pull_request) Successful in 26s
Rust check / Rust check (pull_request) Successful in 12m52s

This commit is contained in:
2025-08-07 16:33:05 +02:00
parent e9a208a9d1
commit 744e23aa66
17 changed files with 187 additions and 91 deletions

View File

@ -2,29 +2,29 @@
name = "todo-baggins"
version = "0.1.0"
authors = ["Matouš Volf <git@matousvolf.cz>"]
edition = "2021"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "0.4.39", features = ["serde", "unstable-locales"] }
chrono = { version = "0.4.41", features = ["serde", "unstable-locales"] }
dioxus = { version = "0.6.3", features = ["fullstack", "router"] }
feruca = { version = "0.10.1" }
serde = { version = "1.0.217" }
serde_json = { version = "1.0.138" }
serde_with = { version = "3.12.0", features = ["chrono_0_4"] }
feruca = { version = "0.11.4" }
serde = { version = "1.0.219" }
serde_json = { version = "1.0.142" }
serde_with = { version = "3.14.0", features = ["chrono_0_4"] }
tracing = "0.1.41"
unic-langid-impl = { version = "0.9.5", features = ["serde"] }
validator = { version = "0.19.0", features = ["derive"] }
unic-langid-impl = { version = "0.9.6", features = ["serde"] }
validator = { version = "0.20.0", features = ["derive"] }
diesel = { version = "2.2.7", features = ["chrono", "postgres", "postgres_backend", "serde_json"], optional = true }
diesel = { version = "2.2.12", features = ["chrono", "postgres", "postgres_backend", "serde_json"], optional = true }
diesel_migrations = { version = "2.2.0", features = ["postgres"], optional = true }
dotenvy = { version = "0.15.7", optional = true }
time = { version = "0.3.37", optional = true }
time = { version = "0.3.41", optional = true }
async-std = { version = "1.13.0", optional = true }
dioxus-i18n = { version = "0.4.2", optional = true }
dioxus-query = { version = "0.6.0", optional = true }
async-std = { version = "1.13.1", optional = true }
dioxus-i18n = { version = "0.4.3", optional = true }
dioxus-query = { version = "0.6.1", optional = true }
voca_rs = { version = "1.15.2", optional = true }
[features]