Reviewed-on: #2
This commit was merged in pull request #2.
This commit is contained in:
2026-06-27 17:37:22 -04:00
parent 2880e4142f
commit ec690cd23e
38 changed files with 4267 additions and 970 deletions
+18
View File
@@ -0,0 +1,18 @@
[package]
name = "catapult"
version = "0.3.0"
rust-version = "1.96"
edition = "2024"
[dependencies]
tokio = { version = "1.52.3", features = ["full"] }
futures = { version = "0.3.32" }
reqwest = { version = "0.13.4", features = ["json", "stream", "multipart"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.150" }
time = { version = "0.3.49", features = ["formatting", "macros", "parsing", "serde"] }
uuid = { version = "1.23.3", features = ["v4", "serde"] }
textsender_models = { git = "ssh://git@git.kundeng.us/phoenix/textsender_models.git", tag = "v0.4.10" }
swoosh = { git = "ssh://git@git.kundeng.us/phoenix/swoosh.git", tag = "v0.4.2.0" }
[dev-dependencies]