forked from pombadev/sunny
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (42 loc) · 1.05 KB
/
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
39
40
41
42
43
44
45
[package]
authors = ["pjmp"]
categories = ["command-line-utilities"]
description = """Tool to download free music from Bandcamp.
Automatically organize files to folder, ID3 tags (including album art)."""
documentation = "https://docs.rs/sunny"
edition = "2021"
homepage = "https://docs.rs/crate/sunny"
keywords = ["bandcamp", "bandcamp-downloader", "bandcamp-dl", "sunny"]
license = "MIT OR Apache-2.0"
name = "sunny"
readme = "README.md"
repository = "https://github.com/pjmp/sunny"
version = "1.1.0"
[lib]
path = "src/lib/mod.rs"
[dependencies]
anyhow = "1.0.75"
chrono = {version = "0.4.27", default-features = false}
clap = {version = "4.4.1", default-features = false, features = [
"derive",
"error-context",
"help",
"std",
"suggestions",
"usage",
]}
console = "0.15.7"
curl = "0.4.44"
gjson = "0.8.1"
html-escape = "0.2.13"
id3 = "1.7.0"
indicatif = "0.17.6"
rayon = "1.7.0"
scraper = {version = "0.17.1", default-features = false}
strfmt = "0.2.4"
term-table = "1.3.2"
url = "2.4.1"
[profile.release]
codegen-units = 1
lto = "fat"
strip = true