[package]
edition = "2024"
name = "rustifydl"
version = "0.2.40"
authors = ["ThePangel"]
build = false
exclude = [
"target/",
".git/",
".gitignore",
"*.log",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, no-fuss Spotify downloader built in Rust."
homepage = "https://github.com/ThePangel/RustifyDL"
documentation = "https://docs.rs/rustifydl"
readme = "README.md"
keywords = [
"spotify",
"youtube",
"music",
"downloader",
"mp3",
]
categories = [
"multimedia::audio",
"command-line-utilities",
"api-bindings",
]
license = "GPL-3.0"
repository = "https://github.com/ThePangel/RustifyDL"
[lib]
name = "rustifydl"
path = "src/lib.rs"
[[bin]]
name = "rustifydl"
path = "src/bin/cli.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.dirs]
version = "6.0.0"
[dependencies.env_logger]
version = "0.11.8"
[dependencies.hex]
version = "0.4.3"
[dependencies.indicatif]
version = "0.18.3"
[dependencies.indicatif-log-bridge]
version = "0.2.3"
[dependencies.lofty]
version = "0.22.4"
[dependencies.log]
version = "0.4.29"
[dependencies.regex]
version = "1.12.2"
[dependencies.reqwest]
version = "0.12.28"
features = ["rustls-tls"]
[dependencies.rquickjs]
version = "0.9.0"
features = ["bindgen"]
[dependencies.rustypipe]
version = "0.11.4"
[dependencies.serde]
version = "1.0.228"
[dependencies.sha2]
version = "0.10.9"
[dependencies.spotify-rs]
version = "0.4.1"
[dependencies.tokio]
version = "1.49.0"
features = ["full"]
[dependencies.toml]
version = "0.9.11"
[build-dependencies.bindgen]
version = "0.70"