mirror of
https://github.com/GuillemCastro/spotify-dl.git
synced 2025-07-03 12:35:32 +02:00
chore: Update dependencies and fix auth
This commit is contained in:
parent
afafa36263
commit
d4f4b92426
8 changed files with 1998 additions and 746 deletions
28
Cargo.toml
28
Cargo.toml
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "spotify-dl"
|
||||
version = "0.5.4"
|
||||
version = "0.6.0"
|
||||
authors = ["Guillem Castro <guillemcastro4@gmail.com>"]
|
||||
edition = "2021"
|
||||
readme = "README.md"
|
||||
|
@ -11,23 +11,25 @@ description = "A command-line utility to download songs and playlists from Spoti
|
|||
|
||||
[dependencies]
|
||||
structopt = { version = "0.3", default-features = false }
|
||||
rpassword = "7.0"
|
||||
indicatif = "0.17"
|
||||
librespot = { version = "0.4.2", default-features = false }
|
||||
indicatif = "0.17.11"
|
||||
librespot = { version = "0.6.0", default-features = false }
|
||||
librespot-oauth = "0.6.0"
|
||||
tokio = { version = "1", features = ["full", "tracing"] }
|
||||
flacenc = { version = "0.4" }
|
||||
audiotags = "0.5"
|
||||
regex = "1.7.1"
|
||||
machine-uid = "0.5.1"
|
||||
regex = "1.11.1"
|
||||
machine-uid = "0.5.3"
|
||||
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"
|
||||
mp3lame-encoder = { version = "0.1.5", optional = true }
|
||||
futures = "0.3"
|
||||
tracing = "0.1.41"
|
||||
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "registry"] }
|
||||
lazy_static = "1.5"
|
||||
async-trait = "0.1.88"
|
||||
dirs = "6.0"
|
||||
mp3lame-encoder = { version = "0.2.1", optional = true }
|
||||
futures = "0.3.31"
|
||||
rayon = "1.10"
|
||||
bytes = "1.10.1"
|
||||
id3 = "1.16.3"
|
||||
|
||||
[features]
|
||||
default = ["mp3"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue