From 64635bef670e4feb6ca423d0da286db52e687965 Mon Sep 17 00:00:00 2001 From: OMGeeky Date: Sun, 21 Apr 2024 17:53:04 +0200 Subject: [PATCH] use rustls-tls feature in reqwest --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cc1f8e1..5341ec7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "twba-twitch-data" -version = "0.3.1" +version = "0.3.2" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -9,7 +9,7 @@ edition = "2021" twba-backup-config = { version = "0.1", git = "https://github.com/OMGeeky/backup_config.git" } exponential_backoff = { git = "https://github.com/OMGeeky/exponential_backoff" } -reqwest = { version = "0.11", features = ["default", "stream"] } +reqwest = { version = "0.11", features = ["default", "stream", "rustls-tls"] } #twitch_api = { version = "0.7.0-rc.3", features = ["helix", "client", "twitch_oauth2", "reqwest"] } tokio = { version = "1.23", features = ["full", "macros"] } twitch_api = { version = "0.7.0-rc.6", features = ["all", "reqwest"] }