From c0c4aefa27d926cea30fda404ee053565ed72afc Mon Sep 17 00:00:00 2001 From: lemon-sh Date: Wed, 26 Jan 2022 17:04:14 +0100 Subject: [PATCH] Use RusTLS --- Cargo.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b88eeed..a8ef4b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,15 +7,14 @@ edition = "2021" lto = true [dependencies] -tokio = { version = "1.15", features = ["rt", "macros", "signal"] } +tokio = { version = "1.15", features = ["rt-multi-thread", "macros", "signal"] } anyhow = "1.0" tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } -tracing-log = "0.1" -reqwest = "0.11" +reqwest = { version = "0.11", default-features = false, features = ["rustls-tls"] } serde_json = "1.0" fancy-regex = "0.7" -rspotify = "0.11" +rspotify = { version = "0.11", default-features = false, features = ["client-reqwest", "reqwest-rustls-tls"] } htmlescape = "0.3" toml = "0.5" serde = "1.0"