-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
57 lines (51 loc) · 1.51 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
46
47
48
49
50
51
52
53
54
55
[package]
name = "terminusdm"
version = "1.0.2"
edition = "2021"
license = "GPL-3.0-or-later"
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE"
]
homepage = "https://github.com/sumoduduk/terminusdm"
description = "Terminus Download Manager. Download files, resume interrupted downloads, and keep a history of your downloads - within terminal UI. "
repository = "https://github.com/sumoduduk/terminusdm"
keywords = [
"cli",
"terminal-ui",
"download-manager",
"resumable-download"
]
categories = ["asynchronous", "command-line-utilities", "concurrency", "filesystem"]
authors = ["Iqbal Abdurachman <[email protected]>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
strip = true
opt-level = "s"
lto = true
codegen-units = 1
[lints.rust]
unsafe_code = "forbid"
# unused = "allow" # For exploratory dev.
[dependencies]
dirs = "5.0.1"
futures = "0.3.25"
indicatif = "0.17.3"
eyre = "0.6.12"
reqwest = { version = "0.11.24", features = ["stream", "socks"] }
reqwest-middleware = "0.2.4"
reqwest-retry = "0.3.0"
tokio = { version = "1.36.0", features = ["full"] }
form_urlencoded = "1.2.1"
crossterm = "0.27.0"
ratatui = { version = "0.26.1", features = ["all-widgets"]}
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
tui-input = "0.8.0"
ron = "0.8.1"
indexmap = { version ="2.2.6", features = ["serde"] }
strum = { version = "0.26.2", features = ["derive"] }
throbber-widgets-tui = "0.5.0"
thiserror = "1.0.38"