spotify-cli 0.5.0

A command-line interface for Spotify
Documentation
[[bin]]
name = "spotify-cli"
path = "src/main.rs"

[dependencies.base64]
version = "0.22"

[dependencies.clap]
features = ["derive"]
version = "4"

[dependencies.clap_complete]
version = "4"

[dependencies.dirs]
version = "5"

[dependencies.keyring]
version = "3"

[dependencies.rand]
version = "0.8"

[dependencies.reqwest]
default-features = false
features = ["json", "rustls-tls"]
version = "0.12"

[dependencies.serde]
features = ["derive"]
version = "1"

[dependencies.serde_json]
version = "1"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "2"

[dependencies.tiny_http]
version = "0.12"

[dependencies.tokio]
features = ["rt-multi-thread", "macros", "time", "net", "io-util", "sync", "process", "signal"]
version = "1"

[dependencies.toml]
version = "0.8"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
features = ["env-filter", "json"]
version = "0.3"

[dependencies.url]
version = "2"

[dependencies.urlencoding]
version = "2"

[dev-dependencies.assert_cmd]
version = "2"

[dev-dependencies.predicates]
version = "3"

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.wiremock]
version = "0.6"

[lib]
name = "spotify_cli"
path = "src/lib.rs"

[package]
authors = ["Dheebz"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "multimedia::audio"]
description = "A command-line interface for Spotify"
edition = "2024"
homepage = "https://github.com/Dheebz/spotify-cli"
keywords = ["spotify", "cli", "music", "player"]
license = "MIT OR Apache-2.0"
name = "spotify-cli"
readme = "README.md"
repository = "https://github.com/Dheebz/spotify-cli"
rust-version = "1.90"
version = "0.5.0"

[profile.release]
codegen-units = 1
lto = true
panic = "abort"
strip = true

[target."cfg(unix)".dependencies.libc]
version = "0.2"

[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"

[[test]]
name = "command_tests"
path = "tests/command_tests.rs"

[[test]]
name = "endpoint_tests"
path = "tests/endpoint_tests.rs"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[[test]]
name = "rpc_tests"
path = "tests/rpc_tests.rs"