blob: 983b53b93253d2768fa5fd49daf722eb38aba80b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[package]
name = "dns-resolver"
version = "0.1.0"
edition = "2024"
publish = false
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.72"
# Use latest arti-client from GitLab to connect to Tor network
arti-client = { path = "../../../crates/arti-client", version = "0.45", features = ["bridge-client"] }
thiserror = "2"
# Specify which async framework we wish to use
tokio = { version = "1.7", features = ["full"] }
# Useful to print debugging or log messages in async programs
tracing = "0.1"
tracing-subscriber = "0.3.20"
[features]
full = ["arti-client/full"]
|