From e8d5a06bc848e6f5e3f8cd5f0f5529f46486cc3a Mon Sep 17 00:00:00 2001 From: Maddox Werts Date: Sat, 2 Aug 2025 15:53:13 -0400 Subject: [PATCH] Implemented Tokio --- project/Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/project/Cargo.toml b/project/Cargo.toml index d9f55cf..a094ec7 100644 --- a/project/Cargo.toml +++ b/project/Cargo.toml @@ -4,9 +4,12 @@ version = "0.1.0" edition = "2021" [dependencies] +tokio = { version = "1.44.1", features = ["full"] } +reqwest = "0.12.22" +scraper = "0.23.1" +chrono = "0.4.41" slint = "1.12.1" regex = "1.11.1" -chrono = "0.4.41" [build-dependencies] slint-build = "1.12.1"