Cargo.toml
 1  [package]
 2  name = "connection-checker"
 3  version = "0.1.0"
 4  edition = "2021"
 5  license = "MIT OR Apache-2.0"
 6  publish = false
 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  arti-client = { path = "../../../crates/arti-client", features = [ "bridge-client", "pt-client", "experimental-api" ] }
12  clap = { version = "4.3.21", features = ["derive", "wrap_help"] }
13  tokio = { version = "1.7", features = ["full"] }
14  tor-error = { path = "../../../crates/tor-error" }
15  tor-proto = { path = "../../../crates/tor-proto", features = ["experimental-api"] }
16  tor-rtcompat = { path = "../../../crates/tor-rtcompat" }
17  tracing = "0.1"
18  tracing-subscriber = "0.3.17"
19  
20  [features]
21  full = ["arti-client/full", "tor-error/full", "tor-rtcompat/full", "tor-proto/full"]