forked from zggff/deezer_downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (33 loc) · 1004 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "deezer_downloader"
version = "0.1.0"
edition = "2021"
authors = ["zggff<[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/zggff/deezer_downloader"
readme = "README.md"
keywords = ["deezer", "downloader"]
description = "crate to download music from deezer"
[features]
binary = ["clap", "env_logger", "futures"]
[dependencies]
reqwest = { version = "0.11.7", features = ["json", "cookies"] }
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.72"
md5 = "0.7.0"
hex = "0.4.3"
hex-literal = "0.3.4"
block-modes = "0.8.1"
blowfish = "0.8.0"
id3 = "0.6.6"
tokio = { version = "1.23.0", features = ["full"] }
anyhow = "1.0.68"
log = "0.4.17"
indicatif = "0.17.7"
# binary dependencies
clap = { version = "4.0.30", features = ["derive"], optional = true }
env_logger = { version = "0.10.0", optional = true }
futures = { version = "0.3.25", optional = true }
[[bin]]
name = "deezer_downloader"
required-features = ["binary"]