arti/crates/tor-hsclient/Cargo.toml

37 lines
1.2 KiB
TOML

[package]
name = "tor-hsclient"
version = "0.1.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Arti's implementation of an onion service client"
keywords = ["tor", "arti", "cryptography"]
categories = ["cryptography"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
publish = false
[features]
default = []
[dependencies]
async-trait = "0.1.2"
futures = "0.3.14"
postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] }
rand_core = "0.6.2"
slotmap = "1.0.6"
thiserror = "1"
tor-circmgr = { version = "0.7.2", path = "../tor-circmgr", features = ["hs-client"] }
tor-config = { path = "../tor-config", version = "0.7.1" }
tor-error = { path = "../tor-error", version = "0.4.1" }
tor-hscrypto = { version = "0.1.1", path = "../tor-hscrypto" }
tor-llcrypto = { version = "0.4.2", path = "../tor-llcrypto" }
tor-netdir = { version = "0.8.0", path = "../tor-netdir" }
tor-proto = { version = "0.9.0", path = "../tor-proto" }
tor-rtcompat = { version = "0.8.1", path = "../tor-rtcompat" }
tracing = "0.1.18"
[dev-dependencies]