19 lines
447 B
TOML
19 lines
447 B
TOML
[package]
|
|
name = "spotify-top-songs-playlist"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
dotenvy = { version = "0.15.7", optional = true }
|
|
futures-util = "0.3.31"
|
|
rspotify = { version = "0.14.0", default-features = false, features = ["cli", "client-reqwest", "reqwest-rustls-tls"] }
|
|
tokio = { version = "1.45.1", features = ["full"] }
|
|
|
|
[features]
|
|
default = [
|
|
"dotenvy",
|
|
"rspotify/webbrowser"
|
|
]
|
|
dotenvy = [ "dep:dotenvy" ]
|
|
container = []
|