From ebc66e322249c2e63f9d4b7a73e47888c4095aec Mon Sep 17 00:00:00 2001 From: Philipp Hofer Date: Thu, 7 Aug 2025 10:29:35 +0200 Subject: [PATCH] use semver --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d9d2587..eec9909 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,13 +6,13 @@ edition = "2024" [dependencies] axum = "0.8" axum-extra = { version = "0.10", features = ["cookie"] } -axum-messages = "0.8.0" -chrono = { version = "0.4.41", features = ["serde"] } +axum-messages = "0.8" +chrono = { version = "0.4", features = ["serde"] } maud = { version = "0.27", features = ["axum"] } -rust-i18n = "3.1.5" +rust-i18n = "3.1" serde = { version = "1", features = ["derive"] } sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "sqlite", "macros", "chrono"] } tokio = { version = "1", features = ["macros", "rt-multi-thread"] } tower-http = { version = "0.6", features = ["fs"] } -tower-sessions = "0.14.0" +tower-sessions = "0.14" uuid = { version = "1.17", features = ["v4", "serde"] }