spotify-dl/Cargo.toml

35 lines
983 B
TOML
Raw Normal View History

2020-10-25 01:39:20 +02:00
[package]
name = "spotify-dl"
2024-05-17 20:02:59 +02:00
version = "0.5.4"
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"
2024-05-17 18:06:31 +02:00
mp3lame-encoder = { version = "0.1.5", optional = true }
futures = "0.3"
rayon = "1.10"
[features]
default = ["mp3"]
2024-05-17 18:57:57 +02:00
mp3 = ["dep:mp3lame-encoder"]