[package]
edition = "2021"
name = "spotify_playlist_maker"
version = "0.2.4"
authors = ["Lorelei Noble <lorelei@arynwood.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust package to automate Spotify playlist creation"
documentation = "https://docs.rs/spotify_playlist_maker"
readme = "README.md"
keywords = [
"spotify",
"playlist",
"automation",
"music",
]
categories = [
"multimedia",
"web-programming",
]
license = "MIT"
repository = "https://github.com/SkyeVault/spotify-playlist-maker"
[lib]
name = "spotify_playlist_maker"
path = "src/lib.rs"
[[bin]]
name = "spotify_playlist_maker"
path = "src/main.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.dotenv]
version = "0.15"
[dependencies.open]
version = "5.3.3"
[dependencies.rspotify]
version = "0.12.0"
features = [
"client-reqwest",
"env-file",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tiny_http]
version = "0.12.0"
[dependencies.tokio]
version = "1"
features = ["full"]