Compare commits

..
Author SHA1 Message Date
phoenix da2343a96e bump: textsender_models
swoosh pr / Rustfmt (pull_request) Successful in 39s
Release Tagging / release (pull_request) Successful in 39s
swoosh pr / Check (pull_request) Successful in 1m25s
swoosh pr / Clippy (pull_request) Successful in 2m18s
2026-06-20 15:13:16 -04:00
phoenix 9f174da464 Rust 1.96 (#9)
swoosh Build / Test Suite (push) Successful in 1m36s
Release Tagging / release (push) Successful in 1m42s
swoosh Build / Rustfmt (push) Successful in 40s
swoosh Build / Check (push) Successful in 1m30s
swoosh Build / Clippy (push) Successful in 1m29s
swoosh Build / build (push) Successful in 2m0s
Reviewed-on: #9
2026-06-14 17:52:28 -04:00
2 changed files with 872 additions and 22 deletions
Generated
+864 -14
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.3.4"
version = "0.4.0"
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.149" }
tokio = { version = "1.52.2", features = ["full"] }
serde_json = { version = "1.0.150" }
tokio = { version = "1.52.3", features = ["full"] }
futures = { version = "0.3.32" }
http = { version = "1.4.0" }
reqwest = { version = "0.13.3", features = ["form", "json", "blocking", "multipart", "stream"] }
http = { version = "1.4.2" }
reqwest = { version = "0.13.4", features = ["form", "json", "blocking", "multipart", "stream"] }
rand = { version = "0.10.1" }
time = { version = "0.3.47", features = ["formatting", "macros", "parsing", "serde"] }
uuid = { version = "1.23.1", features = ["v4", "serde"] }
time = { version = "0.3.49", features = ["formatting", "macros", "parsing", "serde"] }
uuid = { version = "1.23.3", 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.3.4-28-e7834093a6-111", features = ["config", "contact", "message"] }
textsender_models = { git = "ssh://git@git.kundeng.us/phoenix/textsender_models.git", tag = "v0.4.3-29-384dd41690-111", features = ["config", "contact", "message"] }
[dev-dependencies]
tempfile = { version = "3.27.0" }