From 2cd5ddfd1b66b07c6257d3dee06cd835c88c3775 Mon Sep 17 00:00:00 2001 From: phoenix Date: Wed, 24 Jun 2026 22:28:51 -0400 Subject: [PATCH] Added uuid crate --- Cargo.lock | 1 + Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index e1898ac..808982d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -138,6 +138,7 @@ dependencies = [ "textsender_models", "time", "tokio", + "uuid", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 75f702b..7f6f6f7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,6 +11,7 @@ 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.3-29-720f3d8f75-111" } swoosh = { git = "ssh://git@git.kundeng.us/phoenix/swoosh.git", tag = "v0.4.1-10-6bdec12084-871" }