From ab1ce1cd4a99f312c1517e289fb21303ea122ff1 Mon Sep 17 00:00:00 2001 From: Wynd Date: Sun, 21 Apr 2024 23:06:08 +0300 Subject: [PATCH] Moved reqwest's blocking feature to the lib's sync feature --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3bbcddc..d0a6608 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = ["examples/*"] [dependencies] serde = { version = "1", features = ["derive"] } serde_json = { version = "1" } -reqwest = { version = "0.12", features = ["json", "blocking"] } +reqwest = { version = "0.12", features = ["json"] } [features] -sync = [] \ No newline at end of file +sync = ["reqwest/blocking"] \ No newline at end of file