-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (48 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
52 lines (48 loc) · 1.48 KB
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
46
47
48
49
50
51
52
[package]
name = "dra"
version = "0.10.1"
edition = "2024"
authors = ["Cosimo Matteini <dev.matteini@gmail.com>"]
description = "A command line tool to download release assets from GitHub"
homepage = "https://github.com/devmatteini/dra"
repository = "https://github.com/devmatteini/dra"
documentation = "https://github.com/devmatteini/dra"
readme = "README.md"
license = "MIT"
categories = ["command-line-utilities"]
keywords = ["github", "cli"]
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
[dependencies]
ureq = { version = "3.1.4", default-features = false, features = ["rustls", "json"] }
serde = { version = "1.0.228", features = ["derive"] }
clap = { version = "4.5.53", features = ["derive"] }
clap_complete = "4.5.64"
dialoguer = "0.12.0"
indicatif = "0.18.3"
uuid = { version = "1.19.0", features = ["v4"] }
ctrlc = "3.5.1"
walkdir = "2.5.0"
zip = { version = "6.0.0", default-features = false, features = ["deflate"] }
flate2 = "1.1.5"
tar = "0.4.44"
xz2 = { version = "0.1.7", features = ["static"] }
bzip2 = { version = "0.6.1", features = ["static"] }
urlencoding = "2.1.3"
itertools = "0.14.0"
url = "2.5.7"
wildmatch = "2.6.1"
[dev-dependencies]
test-case = "3.3.1"
assert_cmd = "2.1.1"
predicates = "3.1.3"
[package.metadata.deb]
section = "utility"
extended-description = """\
Download Release Assets (dra) is a command line tool
to download release assets from GitHub.
Provides interactive and non-interactive ways to download assets
to meet your needs in different scenarios.
"""