Compare commits

..
Author SHA1 Message Date
phoenix 02061bf7a3 Update rust (#34)
Release Tagging / release (push) Successful in 41s
Rust Build / Rustfmt (push) Successful in 37s
Rust Build / Check (push) Successful in 1m21s
Rust Build / Test Suite (push) Successful in 1m41s
Rust Build / build (push) Successful in 2m4s
Rust Build / Clippy (push) Successful in 2m8s
Reviewed-on: phoenix/textsender_models#34
2026-07-10 11:30:31 -04:00
2 changed files with 4 additions and 4 deletions
Generated
+1 -1
View File
@@ -1453,7 +1453,7 @@ dependencies = [
[[package]]
name = "textsender_models"
version = "0.5.1"
version = "0.5.2"
dependencies = [
"const_format",
"dotenvy",
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "textsender_models"
version = "0.5.1"
version = "0.5.2"
edition = "2024"
rust-version = "1.97"
description = "Models used for the textsender project"
@@ -8,9 +8,9 @@ description = "Models used for the textsender project"
[dependencies]
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.150" }
time = { version = "0.3.49", features = ["formatting", "macros", "parsing", "serde"] }
time = { version = "0.3.53", features = ["formatting", "macros", "parsing", "serde"] }
sqlx = { version = "0.9.0", features = ["runtime-tokio", "tls-native-tls", "postgres", "time", "uuid"] }
uuid = { version = "1.23.3", features = ["v4", "serde"] }
uuid = { version = "1.23.4", features = ["v4", "serde"] }
dotenvy = { version = "0.15.7" }
const_format = { version = "0.2.36" }
josekit = { version = "0.10.3" }