From 20a1eff1b6397a60b2ed39cf8f30f4fe483e1849 Mon Sep 17 00:00:00 2001 From: phoenix Date: Sat, 6 Jun 2026 14:38:56 -0400 Subject: [PATCH] Uh huh --- Cargo.lock | 2 ++ Cargo.toml | 2 ++ src/main.rs | 3 ++- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index b6bf7ac..562e9ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1422,8 +1422,10 @@ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" name = "sender" version = "0.0.8" dependencies = [ + "futures", "swoosh", "textsender_models", + "tokio", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 5a8cd56..678b887 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,6 +8,8 @@ rust-version = "1.95" # uuid = { version = "1.23.1", features = ["v4", "serde"] } # serde = { version = "1.0.228", features = ["derive"] } # serde_json = { version = "1.0.149" } +tokio = { version = "1.52.2", features = ["full"] } +futures = { version = "0.3.32" } textsender_models = { git = "ssh://git@git.kundeng.us/phoenix/textsender-models.git", tag = "v0.2.5-v0.3.0-migrate-38dbcb09f7-111" } swoosh = { git = "ssh://git@git.kundeng.us/phoenix/swoosh.git", tag = "v0.3.1-main-ab01daafea-871" } diff --git a/src/main.rs b/src/main.rs index 656bc43..6d7b17b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,4 @@ -fn main() { +#[tokio::main] +async fn main() { println!("sender"); }