From 12b95a66e81121b783bc6cad0d9fb41580a5c87c Mon Sep 17 00:00:00 2001 From: Arseniy Zaostrovnykh Date: Tue, 7 Jan 2025 04:50:15 +0100 Subject: [PATCH] Use older reqwest that exists in guix --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f7cf3b7..3f19346 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1782,7 +1782,7 @@ dependencies = [ "mockito", "pretty_env_logger", "regex", - "reqwest 0.12.9", + "reqwest 0.11.27", "serde", "serde_json", "teloxide", diff --git a/Cargo.toml b/Cargo.toml index 78c4f40..f0d2cee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ teloxide = { version = "0.13", features = ["macros"] } log = "0.4" pretty_env_logger = "0.5" tokio = { version = "1.8", features = ["rt-multi-thread", "macros"] } -reqwest = { version = "0.12", features = ["json"] } +reqwest = { version = "0.11", features = ["json"] } serde = { version = "1.0.133", features = ["derive"] } confy = "0.6.1" serde_json = "1.0.133"