-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
34 lines (32 loc) · 996 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
26
27
28
29
30
31
32
33
34
[package]
name = "trauma"
version = "2.2.6"
edition = "2021"
license = "MIT"
description = "Simplify and prettify HTTP downloads"
homepage = "https://github.com/rgreinho/trauma"
repository = "https://github.com/rgreinho/trauma"
readme = "README.md"
categories = ["concurrency"]
keywords = ["http", "download", "async", "tokio", "indicatif"]
[dependencies]
form_urlencoded = "1.1.0"
futures = "0.3.25"
indicatif = "0.17.3"
reqwest = { version = "0.12.4", features = ["stream", "socks"] }
reqwest-middleware = "0.4.0"
reqwest-retry = "0.7.0"
reqwest-tracing = { version = "0.5", features = ["opentelemetry_0_22"] }
task-local-extensions = "0.1.3"
thiserror = "2.0.3"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tracing = "0.1"
tracing-opentelemetry = "0.28"
tracing-subscriber = "0.3"
[dev-dependencies]
color-eyre = "0.6.1"
comfy-table = "7.0.0"
console = "0.15"
opentelemetry = "0.27.0"
rand = "0.8.5"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }