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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
|
[package]
name = "arti-client"
version = "0.17.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.70"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Library for connecting to the Tor network as an anonymous client"
keywords = ["tor", "arti", "privacy", "anonymity", "networking"]
categories = ["network-programming", "cryptography"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[features]
default = ["tokio", "native-tls", "compression"]
full = [
"anyhow",
"keymgr",
"onion-service-client",
"onion-service-service",
"tokio",
"async-std",
"native-tls",
"compression",
"bridge-client",
"pt-client",
"tor-rtcompat/full",
"tor-proto/full",
"tor-netdoc/full",
"tor-dirmgr/full",
"fs-mistrust/full",
"safelog/full",
"tor-async-utils/full",
"tor-basic-utils/full",
"tor-cell/full",
"tor-chanmgr/full",
"tor-checkable/full",
"tor-circmgr/full",
"tor-config/full",
"tor-error/full",
"tor-guardmgr/full",
"tor-hsclient?/full",
"tor-hscrypto?/full",
"tor-llcrypto/full",
"tor-netdir/full",
"tor-persist/full",
"tor-ptmgr?/full",
"tor-rpcbase?/full",
"tor-keymgr/full",
"tor-linkspec/full",
"tor-geoip?/full",
"tor-hsservice?/full",
] # "full" is a top-level selector that turns on every feature, _EXCEPT FOR_:
# * Features that are experimental or unstable
# * Features that are testing-only
# * Features which are select a particular implementation or build flag and
# which therefore are not strictly additive.
# * Features which may introduce unnecessary licensing restrictions.
async-std = ["tor-rtcompat/async-std"]
bridge-client = ["tor-guardmgr/bridge-client", "tor-dirmgr/bridge-client"]
tokio = ["tor-rtcompat/tokio", "tor-proto/tokio"]
native-tls = ["tor-rtcompat/native-tls"]
pt-client = ["bridge-client", "tor-chanmgr/pt-client", "tor-guardmgr/pt-client", "tor-ptmgr"]
# This is not nonadditive from a software POV, but we mark it as such because it
# includes code licensed under the old OpenSSL license (which was 4-clause BSD),
# which in turn introduces a GPL-incompatibility.
rustls = ["tor-rtcompat/rustls", "__is_nonadditive"]
# depends directly on tor-rtcompat/static so native-tls doesn't get automatically included
static = ["static-sqlite", "tor-rtcompat/static", "__is_nonadditive"]
static-sqlite = ["tor-dirmgr/static", "__is_nonadditive"]
static-native-tls = ["tor-rtcompat/static", "native-tls", "__is_nonadditive"]
accel-sha1-asm = ["tor-llcrypto/with-sha1-asm", "__is_nonadditive"]
accel-openssl = ["tor-llcrypto/with-openssl", "__is_nonadditive"]
onion-service-client = ["tor-hsclient", "tor-hscrypto"]
onion-service-service = ["tor-hsservice", "tor-hscrypto", "tor-persist/state-dir", "keymgr"]
keymgr = ["tor-keymgr/keymgr", "tor-hsclient/keymgr"]
__is_nonadditive = []
compression = ["tor-dirmgr/compression"]
experimental = [
"dirfilter",
"experimental-api",
"error_detail",
"geoip",
"rpc",
"vanguards",
"tor-proto/experimental",
"tor-cell/experimental",
"tor-checkable/experimental",
"tor-netdoc/experimental",
"tor-dirmgr/experimental",
"tor-circmgr/experimental",
"tor-config/experimental",
"tor-guardmgr/experimental",
]
# Enable experimental APIs that are not yet officially supported.
#
# These APIs are not covered by semantic versioning. Using this
# feature voids your "semver warrantee".
experimental-api = ["__is_experimental"]
dirfilter = ["tor-dirmgr/dirfilter", "__is_experimental"]
error_detail = ["__is_experimental"]
geoip = ["tor-circmgr/geoip", "tor-dirmgr/geoip", "tor-geoip", "__is_experimental"]
rpc = ["tor-rpcbase", "__is_experimental"]
__is_experimental = []
vanguards = ["tor-guardmgr/vanguards", "tor-circmgr/vanguards", "__is_experimental"]
[dependencies]
anyhow = { version = "1.0.23", optional = true }
cfg-if = "1.0.0"
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
derive_more = "0.99.3"
directories = "5"
educe = "0.4.6"
fs-mistrust = { path = "../fs-mistrust", version = "0.7.9", features = ["serde"] }
futures = "0.3.14"
hostname-validator = "1.1.1"
humantime-serde = "1.1.1"
libc = "0.2"
pin-project = "1"
postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] }
safelog = { path = "../safelog", version = "0.3.6" }
serde = { version = "1.0.103", features = ["derive"] }
thiserror = "1"
tor-async-utils = { path = "../tor-async-utils", version = "0.17.0" }
tor-basic-utils = { path = "../tor-basic-utils", version = "0.17.0" }
tor-cell = { path = "../tor-cell", version = "0.17.0" }
tor-chanmgr = { path = "../tor-chanmgr", version = "0.17.0" }
tor-checkable = { path = "../tor-checkable", version = "0.17.0" }
tor-circmgr = { path = "../tor-circmgr", version = "0.17.0" }
tor-config = { path = "../tor-config", version = "0.17.0" }
tor-dirmgr = { path = "../tor-dirmgr", version = "0.17.0", default-features = false, features = ["mmap"] }
tor-error = { path = "../tor-error", version = "0.17.0", features = ["tracing"] }
tor-geoip = { path = "../tor-geoip", version = "0.17.0", optional = true }
tor-guardmgr = { path = "../tor-guardmgr", version = "0.17.0" }
tor-hsclient = { path = "../tor-hsclient", version = "0.17.0", optional = true }
tor-hscrypto = { path = "../tor-hscrypto", version = "0.17.0", optional = true }
tor-hsservice = { path = "../tor-hsservice", version = "0.17.0", optional = true }
tor-keymgr = { path = "../tor-keymgr", version = "0.17.0", default-features = false }
tor-linkspec = { path = "../tor-linkspec", version = "0.17.0" }
tor-llcrypto = { path = "../tor-llcrypto", version = "0.17.0" }
tor-netdir = { path = "../tor-netdir", version = "0.17.0" }
tor-netdoc = { path = "../tor-netdoc", version = "0.17.0" }
tor-persist = { path = "../tor-persist", version = "0.17.0" }
tor-proto = { path = "../tor-proto", version = "0.17.0" }
tor-ptmgr = { path = "../tor-ptmgr", version = "0.17.0", optional = true }
tor-rpcbase = { path = "../tor-rpcbase", version = "0.17.0", optional = true }
tor-rtcompat = { path = "../tor-rtcompat", version = "0.17.0" }
tracing = "0.1.36"
void = "1"
[dev-dependencies]
anyhow = "1.0.23"
once_cell = "1.9"
pin-project = "1"
strum = { version = "0.26", features = ["derive"] }
tempfile = "3.3"
tokio-crate = { package = "tokio", version = "1.7", features = [
"rt",
"rt-multi-thread",
"io-util",
"net",
"time",
"macros",
] }
tokio-util = { version = "0.7.0", features = ["compat"] }
toml = "0.8.8"
tor-rtcompat = { path = "../tor-rtcompat", version = "0.17.0", features = ["tokio", "native-tls"] }
tracing-subscriber = "0.3.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
|