2020-10-25 01:39:20 +02:00
|
|
|
[package]
|
|
|
|
name = "spotify-dl"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Guillem Castro <guillemcastro4@gmail.com>"]
|
|
|
|
edition = "2018"
|
2021-02-14 23:24:59 +01:00
|
|
|
links = "FLAC"
|
2020-10-25 01:39:20 +02:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
futures = "0.1"
|
|
|
|
futures-state-stream = "0.1"
|
|
|
|
structopt = { version = "0.3", default-features = false }
|
|
|
|
rpassword = "5.0"
|
|
|
|
indicatif = "0.15.0"
|
2022-05-12 00:18:58 +02:00
|
|
|
librespot = "0.3.1"
|
|
|
|
tokio = { version = "1.18.2", features = ["rt"] }
|
|
|
|
flac-bound = { version = "0.2.0" }
|
|
|
|
audiotags = "0.2.7182"
|
2020-10-25 01:39:20 +02:00
|
|
|
|
|
|
|
[package.metadata.deb]
|
|
|
|
depends="libflac-dev"
|
2021-02-14 23:24:59 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|
2022-05-12 00:18:58 +02:00
|
|
|
pkg-config = "0.3.16"
|