[package] name = "tor-dirclient" version = "0.0.0" authors = ["The Tor Project, Inc.", "Nick Mathewson "] edition = "2018" license = "MIT OR Apache-2.0" publish = false homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home" description = "Downloads specific Tor network directory objects over the Tor network" keywords = [ "tor", "arti", "download", "async" ] categories = [ "network-programming", "cryptography" ] [features] default = [ "xz", "zstd" ] xz = ["async-compression/xz"] zstd = ["async-compression/zstd"] [dependencies] tor-circmgr = { path="../tor-circmgr", version= "*" } tor-chanmgr = { path="../tor-chanmgr", version= "*", default-features=false } tor-llcrypto = { path="../tor-llcrypto", version= "*" } tor-proto = { path="../tor-proto", version= "*" } tor-netdoc = { path="../tor-netdoc", version= "*" } tor-netdir = { path="../tor-netdir", version= "*" } tor-rtcompat = { path="../tor-rtcompat", version= "*", default-features=false } async-compression = { version = "0.3.7", features=["futures-io", "zlib"] } anyhow = "1.0.38" base64 = "0.13.0" futures = "0.3.13" hex = "0.4.3" http = "0.2.3" httpdate = "1.0.0" httparse = "1.4.0" log = "0.4.14" memchr = "2.4.0" thiserror = "1.0.24" [dev-dependencies] futures-await-test = "0.3.0" tor-rtmock = { path="../tor-rtmock", version= "*" }