summaryrefslogtreecommitdiff
path: root/crates/tor-hsclient/Cargo.toml
blob: 639b6a0b086e8ec5077ea8bbfd6ad0559e591643 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "tor-hsclient"
version = "0.1.2"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
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/"

[features]
default = []

[dependencies]
async-trait = "0.1.2"
derive_more = "0.99.3"
educe = "0.4.6"
either = "1"
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.3", path = "../tor-circmgr", features = ["hs-client"] }
tor-config = { path = "../tor-config", version = "0.8.0" }
tor-error = { path = "../tor-error", version = "0.4.1" }
tor-hscrypto = { version = "0.1.2", path = "../tor-hscrypto" }
tor-llcrypto = { version = "0.4.3", path = "../tor-llcrypto" }
tor-netdir = { version = "0.8.0", path = "../tor-netdir" }
tor-proto = { version = "0.9.1", path = "../tor-proto", features = ["send-control-msg"] }
tor-rtcompat = { version = "0.8.1", path = "../tor-rtcompat" }
tracing = "0.1.18"

[dev-dependencies]
tokio-crate = { package = "tokio", version = "1.7", features = ["full"] }
tor-chanmgr = { path = "../tor-chanmgr", version = "0.8.3" }
tor-circmgr = { version = "0.7.3", path = "../tor-circmgr", features = ["hs-client", "testing"] }
tor-guardmgr = { path = "../tor-guardmgr", version = "0.8.1", features = ["testing"] }
tor-netdir = { path = "../tor-netdir", version = "0.8.0", features = ["testing"] }
tor-persist = { path = "../tor-persist", version = "0.6.1", features = ["testing"] }
tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", features = ["tokio", "native-tls"] }
tracing-test = "0.2"