2020-10-25 01:39:20 +02:00
|
|
|
[package]
|
|
|
|
name = "spotify-dl"
|
2024-05-11 13:08:07 +02:00
|
|
|
version = "0.2.1"
|
2024-05-10 18:33:42 +02:00
|
|
|
authors = ["Guillem Castro <guillemcastro4@gmail.com>"]
|
2024-01-17 13:35:08 +01:00
|
|
|
edition = "2021"
|
|
|
|
readme = "README.md"
|
2024-05-10 18:33:42 +02:00
|
|
|
license = "MIT"
|
2024-05-11 13:11:40 +02:00
|
|
|
homepage = "https://github.com/GuillemCastro/spotify-dl"
|
|
|
|
repository = "https://github.com/GuillemCastro/spotify-dl"
|
2024-05-11 13:13:25 +02:00
|
|
|
description = "A command-line utility to download songs and playlists from Spotify"
|
2020-10-25 01:39:20 +02:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
structopt = { version = "0.3", default-features = false }
|
2024-05-09 20:00:54 +02:00
|
|
|
rpassword = "7.0"
|
|
|
|
indicatif = "0.17"
|
2024-05-13 21:41:10 +02:00
|
|
|
librespot = { version = "0.4.2", default-features = false }
|
2024-05-10 18:33:42 +02:00
|
|
|
tokio = { version = "1", features = ["full", "tracing"] }
|
2024-05-13 21:41:10 +02:00
|
|
|
flacenc = { version = "0.4" }
|
2024-05-09 20:00:54 +02:00
|
|
|
audiotags = "0.5"
|
2023-01-25 17:07:52 +01:00
|
|
|
regex = "1.7.1"
|
2024-01-17 13:07:52 +01:00
|
|
|
machine-uid = "0.5.1"
|
2024-05-10 18:33:42 +02:00
|
|
|
anyhow = "1"
|
|
|
|
tracing = "0.1"
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "registry"] }
|
|
|
|
lazy_static = "1.4"
|
|
|
|
async-trait = "0.1"
|
|
|
|
dirs = "5.0"
|