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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
[package]
name = "tor-hsclient"
version = "0.24.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
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 = []
keymgr = ["tor-keymgr/keymgr", "__is_experimental"]
# Onion service proof of work schemes
hs-pow-full = ["tor-hscrypto/hs-pow-full", "tor-netdoc/hs-pow-full", "tor-cell/hs-pow-full", "__is_experimental"]
full = [
"retry-error/full",
"safelog/full",
"tor-checkable/full",
"tor-circmgr/full",
"tor-config/full",
"tor-dirclient/full",
"tor-error/full",
"tor-hscrypto/full",
"tor-linkspec/full",
"tor-llcrypto/full",
"tor-netdir/full",
"tor-netdoc/full",
"tor-proto/full",
"tor-rtcompat/full",
"tor-basic-utils/full",
"tor-bytes/full",
"tor-cell/full",
"tor-keymgr/full",
"tor-async-utils/full",
"tor-persist/full",
"oneshot-fused-workaround/full",
"slotmap-careful/full",
"tor-memquota/full",
]
__is_experimental = []
experimental = ["keymgr", "hs-pow-full"]
[dependencies]
async-trait = "0.1.54"
derive-deftly = "0.14"
derive_more = { version = "1.0.0", features = ["full"] }
educe = "0.4.6"
either = "1"
futures = "0.3.14"
itertools = "0.13.0"
oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.2.0" }
postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] }
rand = "0.8"
retry-error = { path = "../retry-error", version = "0.6.0" }
safelog = { path = "../safelog", version = "0.4.1" }
slotmap-careful = { path = "../slotmap-careful", version = "0.2.1" }
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "2"
tor-async-utils = { version = "0.24.0", path = "../tor-async-utils" }
tor-basic-utils = { path = "../tor-basic-utils", version = "0.24.0" }
tor-bytes = { path = "../tor-bytes", version = "0.24.0" }
tor-cell = { path = "../tor-cell", version = "0.24.0", features = ["hs"] }
tor-checkable = { path = "../tor-checkable", version = "0.24.0" }
tor-circmgr = { version = "0.24.0", path = "../tor-circmgr", features = ["hs-client"] }
tor-config = { path = "../tor-config", version = "0.24.0" }
tor-dirclient = { path = "../tor-dirclient", version = "0.24.0", default-features = false, features = ["hs-client"] }
tor-error = { path = "../tor-error", version = "0.24.0", features = ["tracing"] }
tor-hscrypto = { version = "0.24.0", path = "../tor-hscrypto" }
tor-keymgr = { version = "0.24.0", path = "../tor-keymgr", default-features = false }
tor-linkspec = { version = "0.24.0", path = "../tor-linkspec", features = ["decode", "verbatim"] }
tor-llcrypto = { version = "0.24.0", path = "../tor-llcrypto" }
tor-memquota = { version = "0.24.0", path = "../tor-memquota", default-features = false }
tor-netdir = { version = "0.24.0", path = "../tor-netdir", features = ["hs-client"] }
tor-netdoc = { path = "../tor-netdoc", version = "0.24.0", features = ["hs-client"] }
tor-persist = { path = "../tor-persist", version = "0.24.0" }
tor-proto = { version = "0.24.0", path = "../tor-proto", features = ["hs-client", "send-control-msg"] }
tor-rtcompat = { version = "0.24.0", path = "../tor-rtcompat" }
tracing = "0.1.36"
[dev-dependencies]
humantime = "2"
tokio-crate = { package = "tokio", version = "1.7", features = ["full"] }
tor-async-utils = { path = "../tor-async-utils", version = "0.24.0" }
tor-basic-utils = { path = "../tor-basic-utils", version = "0.24.0" }
tor-chanmgr = { path = "../tor-chanmgr", version = "0.24.0" }
tor-circmgr = { version = "0.24.0", path = "../tor-circmgr", features = ["hs-client", "testing"] }
tor-guardmgr = { path = "../tor-guardmgr", version = "0.24.0", features = ["testing"] }
tor-netdir = { path = "../tor-netdir", version = "0.24.0", features = ["testing"] }
tor-netdoc = { path = "../tor-netdoc", version = "0.24.0", features = ["testing"] }
tor-persist = { path = "../tor-persist", version = "0.24.0", features = ["testing"] }
tor-rtcompat = { path = "../tor-rtcompat", version = "0.24.0", features = ["tokio", "native-tls"] }
tor-rtmock = { path = "../tor-rtmock", version = "0.24.0" }
tracing-test = "0.2.4"
|