26 lines
684 B
TOML
26 lines
684 B
TOML
[package]
|
|
name = "spotifyio-cli"
|
|
description = "CLI for testing spotifyio"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
|
|
[dependencies]
|
|
clap = { version = "4", features = ["derive"] }
|
|
path_macro = "1.0"
|
|
tokio = { version = "1.20.4", features = ["macros", "rt-multi-thread"] }
|
|
anyhow = "1"
|
|
data-encoding = "2.5"
|
|
tracing = "0.1.0"
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
|
futures-util = "0.3"
|
|
widevine = "0.1"
|
|
console = "0.15"
|
|
serde_json = "1"
|
|
protobuf-json-mapping = "3"
|
|
|
|
spotifyio = {workspace = true, features = ["oauth"]}
|