Adding rust files (#4)
Rust Build / Check (push) Successful in 31s
Rust Build / Test Suite (push) Successful in 34s
Rust Build / Rustfmt (push) Successful in 27s
Rust Build / Clippy (push) Successful in 36s
Rust Build / build (push) Successful in 24s

Reviewed-on: phoenix/textsender-api#4
This commit was merged in pull request #4.
This commit is contained in:
2026-05-31 18:42:08 -04:00
parent 31e0162cc8
commit 2610162da1
5 changed files with 3453 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
[package]
name = "textsender"
version = "0.5.0"
edition = "2024"
rust-version = "1.95"
[dependencies]
axum = { version = "0.8.9", features = ["multipart"] }
axum-extra = { version = "0.12.6", features = ["cookie"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.149" }
tokio = { version = "1.52.3", features = ["full"] }
tokio-util = { version = "0.7.18", features = ["io"] }
tower = { version = "0.5.3", features = ["full"] }
tower-http = { version = "0.6.10", features = ["cors", "timeout"] }
tracing-subscriber = "0.3.23"
futures = { version = "0.3.32" }
mime_guess = { version = "2.0.5" }
uuid = { version = "1.23.1", features = ["v4", "serde"] }
sqlx = { version = "0.8.6", features = ["postgres", "runtime-tokio-native-tls", "time", "uuid"] }
time = { version = "0.3.47", features = ["formatting", "macros", "parsing", "serde"] }
thiserror = "2.0.18"
base64 = "0.22.1"
jsonwebtoken = { version = "10.3.0", features = ["rust_crypto"] }
josekit = { version = "0.10.3" }
utoipa = { version = "5.5.0", features = ["axum_extras"] }
utoipa-swagger-ui = { version = "9.0.2", features = ["axum"] }
textsender_models = { git = "ssh://git@git.kundeng.us/phoenix/textsender-models.git", tag = "v0.3.0-v0.3.0-migrate-2be0337da0-111" }
[dev-dependencies]
common-multipart-rfc7578 = { version = "0.7.0" }
url = { version = "2.5.8" }
tempfile = { version = "3.27.0" }