Compare commits

..
Author SHA1 Message Date
phoenix 3c29c95824 bump: rust
swoosh pr / Rustfmt (pull_request) Successful in 39s
swoosh pr / Check (pull_request) Successful in 1m36s
swoosh pr / Clippy (pull_request) Successful in 1m7s
Release Tagging / release (pull_request) Successful in 40s
2026-06-14 17:32:35 -04:00
phoenix ef5f1500c1 bump: rust ci 2026-06-14 17:32:28 -04:00
phoenix e3270a1be5 Workflow updates 2026-06-14 17:30:48 -04:00
phoenix 9ae0e390fb Utilizing features
Release Tagging / release (pull_request) Successful in 26s
swoosh Build / Test Suite (pull_request) Successful in 1m18s
swoosh Build / Rustfmt (pull_request) Successful in 27s
swoosh Build / Check (pull_request) Successful in 2m49s
swoosh Build / Clippy (pull_request) Successful in 1m13s
swoosh Build / build (pull_request) Successful in 2m35s
2026-06-14 17:28:08 -04:00
2 changed files with 22 additions and 872 deletions
Generated
+14 -864
View File
File diff suppressed because it is too large Load Diff
+8 -8
View File
@@ -1,24 +1,24 @@
[package]
name = "swoosh"
version = "0.4.0"
version = "0.3.4"
edition = "2024"
rust-version = "1.96"
description = "Library to send text messages"
[dependencies]
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.150" }
tokio = { version = "1.52.3", features = ["full"] }
serde_json = { version = "1.0.149" }
tokio = { version = "1.52.2", features = ["full"] }
futures = { version = "0.3.32" }
http = { version = "1.4.2" }
reqwest = { version = "0.13.4", features = ["form", "json", "blocking", "multipart", "stream"] }
http = { version = "1.4.0" }
reqwest = { version = "0.13.3", features = ["form", "json", "blocking", "multipart", "stream"] }
rand = { version = "0.10.1" }
time = { version = "0.3.49", features = ["formatting", "macros", "parsing", "serde"] }
uuid = { version = "1.23.3", features = ["v4", "serde"] }
time = { version = "0.3.47", features = ["formatting", "macros", "parsing", "serde"] }
uuid = { version = "1.23.1", features = ["v4", "serde"] }
base64-ng = { version = "1.0.8" }
const_format = { version = "0.2.36" }
josekit = { version = "0.10.3" }
textsender_models = { git = "ssh://git@git.kundeng.us/phoenix/textsender_models.git", tag = "v0.4.3-29-384dd41690-111", features = ["config", "contact", "message"] }
textsender_models = { git = "ssh://git@git.kundeng.us/phoenix/textsender_models.git", tag = "v0.3.4-28-e7834093a6-111", features = ["config", "contact", "message"] }
[dev-dependencies]
tempfile = { version = "3.27.0" }