blob: 3bcb27c223a5c359e2c4130f8e5f70478217b323 (
plain)
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
|
[package]
name = "download-manager"
version = "0.1.0"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "Download the Tor Browser using multiple tor connections."
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
publish = false
[dependencies]
anyhow = { version = "1.0.95" }
arti-client = { path = "../../crates/arti-client", version = "0.38" }
clap = { version = "4.5.26", features = ["derive"] }
futures = { version = "0.3.31" }
hex = "0.4"
http-body-util = { version = "0.1.0" }
hyper = { version = "1.5.2", features = ["client", "http1"] }
hyper-util = { version = "0.1.1", features = ["tokio"] }
sha2 = { version = "0.10.8" }
tokio = { version = "1.43.0", features = [
"macros",
"rt-multi-thread",
"net",
"fs",
] }
tokio-native-tls = "0.3.1"
tor-rtcompat = { path = "../../crates/tor-rtcompat", version = "0.38" }
tracing = { version = "0.1.41" }
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
[features]
full = ["arti-client/full", "tor-rtcompat/full"]
|