Init rust (#3)
Release Tagging / release (push) Successful in 32s
swoosh Build / Check (push) Successful in 36s
swoosh Build / Test Suite (push) Successful in 26s
swoosh Build / Rustfmt (push) Successful in 31s
swoosh Build / Clippy (push) Successful in 27s
swoosh Build / build (push) Successful in 25s

Reviewed-on: #3
This commit was merged in pull request #3.
This commit is contained in:
2026-06-03 12:36:57 -04:00
parent fdba54ac72
commit 8acd620f8f
10 changed files with 1145 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
[package]
name = "swoosh"
version = "0.2.1"
edition = "2024"
rust-version = "1.95"
description = "Library to send text messages"
[dependencies]
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.149" }
rand = { version = "0.10.1" }
time = { version = "0.3.47", features = ["formatting", "macros", "parsing", "serde"] }
uuid = { version = "1.23.1", features = ["v4", "serde"] }
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.0-20-15820d5505-111" }
[dev-dependencies]
tempfile = { version = "3.27.0" }