-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (32 loc) · 885 Bytes
/
Cargo.toml
File metadata and controls
34 lines (32 loc) · 885 Bytes
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
[package]
name = "dlrs"
description = "Multi-protocol CLI download accelerator"
license = "MIT"
keywords = ["cli", "async", "download-tool"]
version = "0.1.2"
edition = "2021"
readme = "README.md"
[dependencies]
anyhow = "1"
async-channel = "1.9.0"
async-recursion = "1.0.4"
async-stream = "0.3.5"
bytes = "1.4.0"
circular-buffer = "0.1.1"
clap = { version = "4.3.19", features = ["derive"] }
futures = "0.3.28"
if_chain = "1.0.2"
indicatif = "0.17.5"
indicatif-log-bridge = "0.2.1"
log = "0.4.19"
reqwest = { version = "0.11.18", features = ["blocking", "stream"] }
simplelog = { version = "0.12.1", features = ["paris"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1.0.44"
tokio = { version = "1.29.1", features = ["full"] }
tokio-util = { version = "0.7.18", features = ["rt"] }
url = "2.4.0"
[dev-dependencies]
tempfile = "3"
wiremock = "0.5"