Skip to content

Commit

Permalink
Added also default_features = false to reqwest -.-
Browse files Browse the repository at this point in the history
  • Loading branch information
lmammino committed Jan 26, 2024
1 parent 89ca420 commit 1d1cb2c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 206 deletions.
207 changes: 3 additions & 204 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lastfm"
version = "0.8.0"
version = "0.8.1"
edition = "2021"
authors = ["Luciano Mammino"]
description = "An async client to fetch your Last.fm listening history or the track you are currently playing"
Expand All @@ -19,7 +19,10 @@ chrono = { version = "0.4.23", features = ["serde"] }
dotenv = "0.15.0"
lazy_static = "1.4.0"
rand = "0.8.5"
reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
reqwest = { version = "0.11", default_features = false, features = [
"json",
"rustls-tls",
] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.92"
thiserror = "1.0.40"
Expand Down

0 comments on commit 1d1cb2c

Please sign in to comment.