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