From 2d6c8a186bc84259949a59512bb25df1a27e76d0 Mon Sep 17 00:00:00 2001 From: Edoardo Borgia Leiva Date: Sun, 15 Dec 2024 18:14:41 +0100 Subject: [PATCH] Updated reqwest dependencies on Cargo.toml --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b77d549..a527951 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,9 @@ version = "0.1.0" edition = "2021" [dependencies] -reqwest = "0.12.9" +colog = "1.3.0" +log = "0.4.22" +reqwest = { version = "0.12", features = ["json"] } +tokio = { version = "1", features = ["full"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0"