-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
25 lines (24 loc) · 836 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
[package]
name = "dlm"
version = "0.4.4"
authors = ["Arnaud Gourlay <[email protected]>"]
description = "Minimal download manager"
repository = "https://github.com/agourlay/dlm"
license = "Apache-2.0"
readme = "README.md"
categories = ["command-line-utilities"]
keywords = ["cli", "http", "download", "download-manager"]
edition = "2021"
[dependencies]
futures-util = "0.3.31"
reqwest = { version = "0.12.12", default-features = false, features = ["http2", "gzip", "rustls-tls"] }
tokio-stream = { version = "0.1.17", features = ["io-util"] }
tokio = { version = "1.43.0", features = ["rt-multi-thread", "fs", "macros", "signal"] }
tokio-util = "0.7.13"
tokio-retry = "0.3.0"
async-channel = "2.3.1"
chrono = "0.4.39"
clap = { version = "4.5.28", features = ["cargo"] }
indicatif = "0.17.11"
thiserror = "2.0.11"
rand = "0.9.0"