Skip to content

Commit 1d1cb2c

Browse files
committed
Added also default_features = false to reqwest -.-
1 parent 89ca420 commit 1d1cb2c

File tree

2 files changed

+8
-206
lines changed

2 files changed

+8
-206
lines changed

Cargo.lock

Lines changed: 3 additions & 204 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lastfm"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
edition = "2021"
55
authors = ["Luciano Mammino"]
66
description = "An async client to fetch your Last.fm listening history or the track you are currently playing"
@@ -19,7 +19,10 @@ chrono = { version = "0.4.23", features = ["serde"] }
1919
dotenv = "0.15.0"
2020
lazy_static = "1.4.0"
2121
rand = "0.8.5"
22-
reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
22+
reqwest = { version = "0.11", default_features = false, features = [
23+
"json",
24+
"rustls-tls",
25+
] }
2326
serde = { version = "1.0.152", features = ["derive"] }
2427
serde_json = "1.0.92"
2528
thiserror = "1.0.40"

0 commit comments

Comments
 (0)