From 7990468b172bcd42d03f124a707ca6232c95b455 Mon Sep 17 00:00:00 2001
From: Kavin <20838718+FireMasterK@users.noreply.github.com>
Date: Wed, 16 Nov 2022 19:17:43 +0000
Subject: [PATCH] default-features = false for reqwest

---
 Cargo.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Cargo.toml b/Cargo.toml
index 53d5a3f..1cc4c76 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -12,7 +12,7 @@ diesel_migrations = "2.0.0"
 lazy_static = "1.4.0"
 num_cpus = "1.14.0"
 regex = "1.7.0"
-reqwest = {version = "0.11.12", features = ["json", "rustls-tls", "gzip", "brotli"]}
+reqwest = {version = "0.11.12", features = ["json", "rustls-tls", "gzip", "brotli"], default-features = false}
 rocket = {git = "https://github.com/SergioBenitez/Rocket"}
 rocket_sync_db_pools = {git = "https://github.com/SergioBenitez/Rocket", features = ["diesel_postgres_pool"]}
 serde = {version = "1.0.147", features = ["derive"]}