From a8b07a792d155457ea2b07a8744339e71ef35a90 Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Mon, 23 Jun 2025 20:34:14 -0400 Subject: [PATCH] Add futures-util --- Cargo.lock | 1 + Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 5782cdc..3863fc9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1270,6 +1270,7 @@ name = "spotify-top-songs-playlist" version = "0.1.0" dependencies = [ "dotenvy", + "futures-util", "rspotify", "tokio", ] diff --git a/Cargo.toml b/Cargo.toml index f2d6467..8f311f2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,5 +5,6 @@ edition = "2024" [dependencies] dotenvy = "0.15.7" +futures-util = "0.3.31" rspotify = { version = "0.14.0", features = ["cli"] } tokio = { version = "1.45.1", features = ["full"] }