From 13fcf08dd6f0dc8a32d33835a5c49df25f58abee Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Wed, 30 Jul 2025 18:55:05 -0400 Subject: [PATCH] Remove features Too much work --- Cargo.toml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f628344..18fcf73 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,15 +4,7 @@ version = "0.1.0" edition = "2024" [dependencies] -dotenvy = { version = "0.15.7", optional = true } +dotenvy = "0.15.7" futures-util = "0.3.31" -rspotify = { version = "0.14.0", default-features = false, features = ["cli", "client-reqwest", "reqwest-rustls-tls"] } +rspotify = { version = "0.14.0", default-features = false, features = ["cli", "client-reqwest", "reqwest-rustls-tls", "webbrowser"] } tokio = { version = "1.45.1", features = ["macros", "rt-multi-thread"] } - -[features] -default = [ - "dotenvy", - "rspotify/webbrowser" -] -dotenvy = [ "dep:dotenvy" ] -container = []