-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
43 lines (39 loc) · 1.06 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
[package]
name = "humble-cli"
authors = ["Mohammad Banisaeid <[email protected]>"]
version = "0.16.3"
license = "MIT"
description = "The missing CLI for downloading your Humble Bundle purchases"
documentation = "https://github.com/smbl64/humble-cli"
repository = "https://github.com/smbl64/humble-cli"
readme = "README.md"
categories = ["command-line-utilities"]
edition = "2021"
exclude = [
"docs",
".github",
]
[lib]
path = "src/lib.rs"
[[bin]]
path = "src/main.rs"
name = "humble-cli"
[dependencies]
anyhow = "1.0"
byte-unit = { version = "5.1"}
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "3.1", features = ["cargo", "derive"] }
clap_complete = "3.2"
dirs = "5.0.1"
futures-util = "0.3"
indicatif = "0.17"
reqwest = { version = "0.12", features = ["json", "blocking", "rustls-tls", "stream"], default-features = false }
scraper = "0.21.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = "3.11"
tabled = "0.14"
thiserror = "2.0"
tokio = { version = "1.41", features = ["full"] }
[dev-dependencies]
assert_cmd = "2"