From b3dca9bd1a8d336377ccaaa56ce78e251e83a1f1 Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Tue, 10 Jun 2025 18:37:27 -0400 Subject: [PATCH] Updated crates --- Cargo.lock | 3 +++ Cargo.toml | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index c0efd87..8be8125 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1090,7 +1090,10 @@ dependencies = [ "dotenvy", "icarus_models", "reqwest", + "serde", + "serde_json", "tokio", + "uuid", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index b357dec..6999867 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,6 +6,9 @@ rust-version = "1.86" [dependencies] tokio = { version = "1.44.1", features = ["full"] } -reqwest = { version = "0.12.19" } +reqwest = { version = "0.12.19", features = ["json"] } +serde = { version = "1.0.218", features = ["derive"] } +serde_json = { version = "1.0.139" } +uuid = { version = "1.16.0", features = ["v4", "serde"] } dotenvy = { version = "0.15.7" } icarus_models = { git = "ssh://git@git.kundeng.us/phoenix/icarus_models.git", tag = "v0.4.3" }