wireguard-requests 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wireguard_requests-0.0.1/Cargo.lock +1584 -0
- wireguard_requests-0.0.1/Cargo.toml +3 -0
- wireguard_requests-0.0.1/LICENSE +189 -0
- wireguard_requests-0.0.1/PKG-INFO +210 -0
- wireguard_requests-0.0.1/README.md +172 -0
- wireguard_requests-0.0.1/pyproject.toml +78 -0
- wireguard_requests-0.0.1/python/wireguard_requests/__init__.py +67 -0
- wireguard_requests-0.0.1/python/wireguard_requests/_native.pyi +57 -0
- wireguard_requests-0.0.1/python/wireguard_requests/async_socket.py +121 -0
- wireguard_requests-0.0.1/python/wireguard_requests/config.py +194 -0
- wireguard_requests-0.0.1/python/wireguard_requests/context.py +90 -0
- wireguard_requests-0.0.1/python/wireguard_requests/exceptions.py +37 -0
- wireguard_requests-0.0.1/python/wireguard_requests/session.py +95 -0
- wireguard_requests-0.0.1/python/wireguard_requests/socket.py +239 -0
- wireguard_requests-0.0.1/rust/Cargo.toml +56 -0
- wireguard_requests-0.0.1/rust/benches/throughput.rs +8 -0
- wireguard_requests-0.0.1/rust/src/config.rs +383 -0
- wireguard_requests-0.0.1/rust/src/error.rs +81 -0
- wireguard_requests-0.0.1/rust/src/lib.rs +34 -0
- wireguard_requests-0.0.1/rust/src/packet.rs +1 -0
- wireguard_requests-0.0.1/rust/src/stream.rs +219 -0
- wireguard_requests-0.0.1/rust/src/tun_interface.rs +117 -0
- wireguard_requests-0.0.1/rust/src/tunnel.rs +541 -0
|
@@ -0,0 +1,1584 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aead"
|
|
7
|
+
version = "0.5.2"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"crypto-common",
|
|
12
|
+
"generic-array",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[[package]]
|
|
16
|
+
name = "aho-corasick"
|
|
17
|
+
version = "1.1.4"
|
|
18
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
19
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
20
|
+
dependencies = [
|
|
21
|
+
"memchr",
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
[[package]]
|
|
25
|
+
name = "anes"
|
|
26
|
+
version = "0.1.6"
|
|
27
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
28
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
29
|
+
|
|
30
|
+
[[package]]
|
|
31
|
+
name = "anstream"
|
|
32
|
+
version = "0.6.21"
|
|
33
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
34
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
35
|
+
dependencies = [
|
|
36
|
+
"anstyle",
|
|
37
|
+
"anstyle-parse",
|
|
38
|
+
"anstyle-query",
|
|
39
|
+
"anstyle-wincon",
|
|
40
|
+
"colorchoice",
|
|
41
|
+
"is_terminal_polyfill",
|
|
42
|
+
"utf8parse",
|
|
43
|
+
]
|
|
44
|
+
|
|
45
|
+
[[package]]
|
|
46
|
+
name = "anstyle"
|
|
47
|
+
version = "1.0.13"
|
|
48
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
49
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
50
|
+
|
|
51
|
+
[[package]]
|
|
52
|
+
name = "anstyle-parse"
|
|
53
|
+
version = "0.2.7"
|
|
54
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
55
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
56
|
+
dependencies = [
|
|
57
|
+
"utf8parse",
|
|
58
|
+
]
|
|
59
|
+
|
|
60
|
+
[[package]]
|
|
61
|
+
name = "anstyle-query"
|
|
62
|
+
version = "1.1.5"
|
|
63
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
65
|
+
dependencies = [
|
|
66
|
+
"windows-sys 0.61.2",
|
|
67
|
+
]
|
|
68
|
+
|
|
69
|
+
[[package]]
|
|
70
|
+
name = "anstyle-wincon"
|
|
71
|
+
version = "3.0.11"
|
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
73
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
74
|
+
dependencies = [
|
|
75
|
+
"anstyle",
|
|
76
|
+
"once_cell_polyfill",
|
|
77
|
+
"windows-sys 0.61.2",
|
|
78
|
+
]
|
|
79
|
+
|
|
80
|
+
[[package]]
|
|
81
|
+
name = "autocfg"
|
|
82
|
+
version = "1.5.0"
|
|
83
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
84
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
85
|
+
|
|
86
|
+
[[package]]
|
|
87
|
+
name = "base64"
|
|
88
|
+
version = "0.13.1"
|
|
89
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
+
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
91
|
+
|
|
92
|
+
[[package]]
|
|
93
|
+
name = "base64"
|
|
94
|
+
version = "0.22.1"
|
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
97
|
+
|
|
98
|
+
[[package]]
|
|
99
|
+
name = "bitflags"
|
|
100
|
+
version = "1.3.2"
|
|
101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
103
|
+
|
|
104
|
+
[[package]]
|
|
105
|
+
name = "bitflags"
|
|
106
|
+
version = "2.11.0"
|
|
107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
109
|
+
|
|
110
|
+
[[package]]
|
|
111
|
+
name = "blake2"
|
|
112
|
+
version = "0.10.6"
|
|
113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
114
|
+
checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
|
|
115
|
+
dependencies = [
|
|
116
|
+
"digest",
|
|
117
|
+
]
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "block-buffer"
|
|
121
|
+
version = "0.10.4"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
124
|
+
dependencies = [
|
|
125
|
+
"generic-array",
|
|
126
|
+
]
|
|
127
|
+
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "boringtun"
|
|
130
|
+
version = "0.6.0"
|
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
+
checksum = "751787b019c674b9ac353f4eaa285e6711c21badb421cd8c199bf2c83b727f29"
|
|
133
|
+
dependencies = [
|
|
134
|
+
"aead",
|
|
135
|
+
"base64 0.13.1",
|
|
136
|
+
"blake2",
|
|
137
|
+
"chacha20poly1305",
|
|
138
|
+
"hex",
|
|
139
|
+
"hmac",
|
|
140
|
+
"ip_network",
|
|
141
|
+
"ip_network_table",
|
|
142
|
+
"libc",
|
|
143
|
+
"nix",
|
|
144
|
+
"parking_lot",
|
|
145
|
+
"rand_core",
|
|
146
|
+
"ring",
|
|
147
|
+
"tracing",
|
|
148
|
+
"untrusted 0.9.0",
|
|
149
|
+
"x25519-dalek",
|
|
150
|
+
]
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "bumpalo"
|
|
154
|
+
version = "3.20.2"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "byteorder"
|
|
160
|
+
version = "1.5.0"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "bytes"
|
|
166
|
+
version = "1.11.1"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
169
|
+
|
|
170
|
+
[[package]]
|
|
171
|
+
name = "cast"
|
|
172
|
+
version = "0.3.0"
|
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
175
|
+
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "cc"
|
|
178
|
+
version = "1.2.56"
|
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
+
checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
|
|
181
|
+
dependencies = [
|
|
182
|
+
"find-msvc-tools",
|
|
183
|
+
"shlex",
|
|
184
|
+
]
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "cfg-if"
|
|
188
|
+
version = "1.0.4"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "chacha20"
|
|
194
|
+
version = "0.9.1"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
|
|
197
|
+
dependencies = [
|
|
198
|
+
"cfg-if",
|
|
199
|
+
"cipher",
|
|
200
|
+
"cpufeatures",
|
|
201
|
+
]
|
|
202
|
+
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "chacha20poly1305"
|
|
205
|
+
version = "0.10.1"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
|
|
208
|
+
dependencies = [
|
|
209
|
+
"aead",
|
|
210
|
+
"chacha20",
|
|
211
|
+
"cipher",
|
|
212
|
+
"poly1305",
|
|
213
|
+
"zeroize",
|
|
214
|
+
]
|
|
215
|
+
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "ciborium"
|
|
218
|
+
version = "0.2.2"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
221
|
+
dependencies = [
|
|
222
|
+
"ciborium-io",
|
|
223
|
+
"ciborium-ll",
|
|
224
|
+
"serde",
|
|
225
|
+
]
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "ciborium-io"
|
|
229
|
+
version = "0.2.2"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "ciborium-ll"
|
|
235
|
+
version = "0.2.2"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
238
|
+
dependencies = [
|
|
239
|
+
"ciborium-io",
|
|
240
|
+
"half",
|
|
241
|
+
]
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "cipher"
|
|
245
|
+
version = "0.4.4"
|
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
248
|
+
dependencies = [
|
|
249
|
+
"crypto-common",
|
|
250
|
+
"inout",
|
|
251
|
+
"zeroize",
|
|
252
|
+
]
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "clap"
|
|
256
|
+
version = "4.5.60"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"clap_builder",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "clap_builder"
|
|
265
|
+
version = "4.5.60"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876"
|
|
268
|
+
dependencies = [
|
|
269
|
+
"anstyle",
|
|
270
|
+
"clap_lex",
|
|
271
|
+
]
|
|
272
|
+
|
|
273
|
+
[[package]]
|
|
274
|
+
name = "clap_lex"
|
|
275
|
+
version = "1.0.0"
|
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
+
checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
|
|
278
|
+
|
|
279
|
+
[[package]]
|
|
280
|
+
name = "colorchoice"
|
|
281
|
+
version = "1.0.4"
|
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
284
|
+
|
|
285
|
+
[[package]]
|
|
286
|
+
name = "cpufeatures"
|
|
287
|
+
version = "0.2.17"
|
|
288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
289
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
290
|
+
dependencies = [
|
|
291
|
+
"libc",
|
|
292
|
+
]
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "criterion"
|
|
296
|
+
version = "0.5.1"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
299
|
+
dependencies = [
|
|
300
|
+
"anes",
|
|
301
|
+
"cast",
|
|
302
|
+
"ciborium",
|
|
303
|
+
"clap",
|
|
304
|
+
"criterion-plot",
|
|
305
|
+
"is-terminal",
|
|
306
|
+
"itertools",
|
|
307
|
+
"num-traits",
|
|
308
|
+
"once_cell",
|
|
309
|
+
"oorandom",
|
|
310
|
+
"plotters",
|
|
311
|
+
"rayon",
|
|
312
|
+
"regex",
|
|
313
|
+
"serde",
|
|
314
|
+
"serde_derive",
|
|
315
|
+
"serde_json",
|
|
316
|
+
"tinytemplate",
|
|
317
|
+
"walkdir",
|
|
318
|
+
]
|
|
319
|
+
|
|
320
|
+
[[package]]
|
|
321
|
+
name = "criterion-plot"
|
|
322
|
+
version = "0.5.0"
|
|
323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
325
|
+
dependencies = [
|
|
326
|
+
"cast",
|
|
327
|
+
"itertools",
|
|
328
|
+
]
|
|
329
|
+
|
|
330
|
+
[[package]]
|
|
331
|
+
name = "crossbeam-channel"
|
|
332
|
+
version = "0.5.15"
|
|
333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
335
|
+
dependencies = [
|
|
336
|
+
"crossbeam-utils",
|
|
337
|
+
]
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "crossbeam-deque"
|
|
341
|
+
version = "0.8.6"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
344
|
+
dependencies = [
|
|
345
|
+
"crossbeam-epoch",
|
|
346
|
+
"crossbeam-utils",
|
|
347
|
+
]
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "crossbeam-epoch"
|
|
351
|
+
version = "0.9.18"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
354
|
+
dependencies = [
|
|
355
|
+
"crossbeam-utils",
|
|
356
|
+
]
|
|
357
|
+
|
|
358
|
+
[[package]]
|
|
359
|
+
name = "crossbeam-utils"
|
|
360
|
+
version = "0.8.21"
|
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
363
|
+
|
|
364
|
+
[[package]]
|
|
365
|
+
name = "crunchy"
|
|
366
|
+
version = "0.2.4"
|
|
367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
369
|
+
|
|
370
|
+
[[package]]
|
|
371
|
+
name = "crypto-common"
|
|
372
|
+
version = "0.1.7"
|
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
375
|
+
dependencies = [
|
|
376
|
+
"generic-array",
|
|
377
|
+
"rand_core",
|
|
378
|
+
"typenum",
|
|
379
|
+
]
|
|
380
|
+
|
|
381
|
+
[[package]]
|
|
382
|
+
name = "curve25519-dalek"
|
|
383
|
+
version = "4.0.0-rc.3"
|
|
384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
385
|
+
checksum = "436ace70fc06e06f7f689d2624dc4e2f0ea666efb5aa704215f7249ae6e047a7"
|
|
386
|
+
dependencies = [
|
|
387
|
+
"cfg-if",
|
|
388
|
+
"cpufeatures",
|
|
389
|
+
"curve25519-dalek-derive",
|
|
390
|
+
"fiat-crypto",
|
|
391
|
+
"platforms",
|
|
392
|
+
"rustc_version",
|
|
393
|
+
"subtle",
|
|
394
|
+
"zeroize",
|
|
395
|
+
]
|
|
396
|
+
|
|
397
|
+
[[package]]
|
|
398
|
+
name = "curve25519-dalek-derive"
|
|
399
|
+
version = "0.1.1"
|
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
+
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
|
402
|
+
dependencies = [
|
|
403
|
+
"proc-macro2",
|
|
404
|
+
"quote",
|
|
405
|
+
"syn",
|
|
406
|
+
]
|
|
407
|
+
|
|
408
|
+
[[package]]
|
|
409
|
+
name = "defmt"
|
|
410
|
+
version = "0.3.100"
|
|
411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
+
checksum = "f0963443817029b2024136fc4dd07a5107eb8f977eaf18fcd1fdeb11306b64ad"
|
|
413
|
+
dependencies = [
|
|
414
|
+
"defmt 1.0.1",
|
|
415
|
+
]
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "defmt"
|
|
419
|
+
version = "1.0.1"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "548d977b6da32fa1d1fda2876453da1e7df63ad0304c8b3dae4dbe7b96f39b78"
|
|
422
|
+
dependencies = [
|
|
423
|
+
"bitflags 1.3.2",
|
|
424
|
+
"defmt-macros",
|
|
425
|
+
]
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "defmt-macros"
|
|
429
|
+
version = "1.0.1"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "3d4fc12a85bcf441cfe44344c4b72d58493178ce635338a3f3b78943aceb258e"
|
|
432
|
+
dependencies = [
|
|
433
|
+
"defmt-parser",
|
|
434
|
+
"proc-macro-error2",
|
|
435
|
+
"proc-macro2",
|
|
436
|
+
"quote",
|
|
437
|
+
"syn",
|
|
438
|
+
]
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "defmt-parser"
|
|
442
|
+
version = "1.0.0"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
|
|
445
|
+
dependencies = [
|
|
446
|
+
"thiserror",
|
|
447
|
+
]
|
|
448
|
+
|
|
449
|
+
[[package]]
|
|
450
|
+
name = "digest"
|
|
451
|
+
version = "0.10.7"
|
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
454
|
+
dependencies = [
|
|
455
|
+
"block-buffer",
|
|
456
|
+
"crypto-common",
|
|
457
|
+
"subtle",
|
|
458
|
+
]
|
|
459
|
+
|
|
460
|
+
[[package]]
|
|
461
|
+
name = "either"
|
|
462
|
+
version = "1.15.0"
|
|
463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
464
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
465
|
+
|
|
466
|
+
[[package]]
|
|
467
|
+
name = "env_filter"
|
|
468
|
+
version = "1.0.0"
|
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
+
checksum = "7a1c3cc8e57274ec99de65301228b537f1e4eedc1b8e0f9411c6caac8ae7308f"
|
|
471
|
+
dependencies = [
|
|
472
|
+
"log",
|
|
473
|
+
"regex",
|
|
474
|
+
]
|
|
475
|
+
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "env_logger"
|
|
478
|
+
version = "0.11.9"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "b2daee4ea451f429a58296525ddf28b45a3b64f1acf6587e2067437bb11e218d"
|
|
481
|
+
dependencies = [
|
|
482
|
+
"anstream",
|
|
483
|
+
"anstyle",
|
|
484
|
+
"env_filter",
|
|
485
|
+
"jiff",
|
|
486
|
+
"log",
|
|
487
|
+
]
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "fiat-crypto"
|
|
491
|
+
version = "0.1.20"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "e825f6987101665dea6ec934c09ec6d721de7bc1bf92248e1d5810c8cd636b77"
|
|
494
|
+
|
|
495
|
+
[[package]]
|
|
496
|
+
name = "find-msvc-tools"
|
|
497
|
+
version = "0.1.9"
|
|
498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
499
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
500
|
+
|
|
501
|
+
[[package]]
|
|
502
|
+
name = "generic-array"
|
|
503
|
+
version = "0.14.7"
|
|
504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
506
|
+
dependencies = [
|
|
507
|
+
"typenum",
|
|
508
|
+
"version_check",
|
|
509
|
+
]
|
|
510
|
+
|
|
511
|
+
[[package]]
|
|
512
|
+
name = "getrandom"
|
|
513
|
+
version = "0.2.17"
|
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
516
|
+
dependencies = [
|
|
517
|
+
"cfg-if",
|
|
518
|
+
"libc",
|
|
519
|
+
"wasi",
|
|
520
|
+
]
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "half"
|
|
524
|
+
version = "2.7.1"
|
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
527
|
+
dependencies = [
|
|
528
|
+
"cfg-if",
|
|
529
|
+
"crunchy",
|
|
530
|
+
"zerocopy",
|
|
531
|
+
]
|
|
532
|
+
|
|
533
|
+
[[package]]
|
|
534
|
+
name = "hash32"
|
|
535
|
+
version = "0.3.1"
|
|
536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
|
+
checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
|
|
538
|
+
dependencies = [
|
|
539
|
+
"byteorder",
|
|
540
|
+
]
|
|
541
|
+
|
|
542
|
+
[[package]]
|
|
543
|
+
name = "heapless"
|
|
544
|
+
version = "0.8.0"
|
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
+
checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
|
|
547
|
+
dependencies = [
|
|
548
|
+
"hash32",
|
|
549
|
+
"stable_deref_trait",
|
|
550
|
+
]
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "heck"
|
|
554
|
+
version = "0.5.0"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
557
|
+
|
|
558
|
+
[[package]]
|
|
559
|
+
name = "hermit-abi"
|
|
560
|
+
version = "0.5.2"
|
|
561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
562
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
563
|
+
|
|
564
|
+
[[package]]
|
|
565
|
+
name = "hex"
|
|
566
|
+
version = "0.4.3"
|
|
567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
568
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
569
|
+
|
|
570
|
+
[[package]]
|
|
571
|
+
name = "hmac"
|
|
572
|
+
version = "0.12.1"
|
|
573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
575
|
+
dependencies = [
|
|
576
|
+
"digest",
|
|
577
|
+
]
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "indoc"
|
|
581
|
+
version = "2.0.7"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
584
|
+
dependencies = [
|
|
585
|
+
"rustversion",
|
|
586
|
+
]
|
|
587
|
+
|
|
588
|
+
[[package]]
|
|
589
|
+
name = "inout"
|
|
590
|
+
version = "0.1.4"
|
|
591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
593
|
+
dependencies = [
|
|
594
|
+
"generic-array",
|
|
595
|
+
]
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "ip_network"
|
|
599
|
+
version = "0.4.1"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "aa2f047c0a98b2f299aa5d6d7088443570faae494e9ae1305e48be000c9e0eb1"
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "ip_network_table"
|
|
605
|
+
version = "0.2.0"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "4099b7cfc5c5e2fe8c5edf3f6f7adf7a714c9cc697534f63a5a5da30397cb2c0"
|
|
608
|
+
dependencies = [
|
|
609
|
+
"ip_network",
|
|
610
|
+
"ip_network_table-deps-treebitmap",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "ip_network_table-deps-treebitmap"
|
|
615
|
+
version = "0.5.0"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "8e537132deb99c0eb4b752f0346b6a836200eaaa3516dd7e5514b63930a09e5d"
|
|
618
|
+
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "ipnetwork"
|
|
621
|
+
version = "0.20.0"
|
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
+
checksum = "bf466541e9d546596ee94f9f69590f89473455f88372423e0008fc1a7daf100e"
|
|
624
|
+
dependencies = [
|
|
625
|
+
"serde",
|
|
626
|
+
]
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "is-terminal"
|
|
630
|
+
version = "0.4.17"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
633
|
+
dependencies = [
|
|
634
|
+
"hermit-abi",
|
|
635
|
+
"libc",
|
|
636
|
+
"windows-sys 0.61.2",
|
|
637
|
+
]
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "is_terminal_polyfill"
|
|
641
|
+
version = "1.70.2"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
644
|
+
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "itertools"
|
|
647
|
+
version = "0.10.5"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
650
|
+
dependencies = [
|
|
651
|
+
"either",
|
|
652
|
+
]
|
|
653
|
+
|
|
654
|
+
[[package]]
|
|
655
|
+
name = "itoa"
|
|
656
|
+
version = "1.0.17"
|
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "jiff"
|
|
662
|
+
version = "0.2.22"
|
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
+
checksum = "819b44bc7c87d9117eb522f14d46e918add69ff12713c475946b0a29363ed1c2"
|
|
665
|
+
dependencies = [
|
|
666
|
+
"jiff-static",
|
|
667
|
+
"log",
|
|
668
|
+
"portable-atomic",
|
|
669
|
+
"portable-atomic-util",
|
|
670
|
+
"serde_core",
|
|
671
|
+
]
|
|
672
|
+
|
|
673
|
+
[[package]]
|
|
674
|
+
name = "jiff-static"
|
|
675
|
+
version = "0.2.22"
|
|
676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
+
checksum = "470252db18ecc35fd766c0891b1e3ec6cbbcd62507e85276c01bf75d8e94d4a1"
|
|
678
|
+
dependencies = [
|
|
679
|
+
"proc-macro2",
|
|
680
|
+
"quote",
|
|
681
|
+
"syn",
|
|
682
|
+
]
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "js-sys"
|
|
686
|
+
version = "0.3.91"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
|
|
689
|
+
dependencies = [
|
|
690
|
+
"once_cell",
|
|
691
|
+
"wasm-bindgen",
|
|
692
|
+
]
|
|
693
|
+
|
|
694
|
+
[[package]]
|
|
695
|
+
name = "libc"
|
|
696
|
+
version = "0.2.182"
|
|
697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
+
checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
|
|
699
|
+
|
|
700
|
+
[[package]]
|
|
701
|
+
name = "lock_api"
|
|
702
|
+
version = "0.4.14"
|
|
703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
705
|
+
dependencies = [
|
|
706
|
+
"scopeguard",
|
|
707
|
+
]
|
|
708
|
+
|
|
709
|
+
[[package]]
|
|
710
|
+
name = "log"
|
|
711
|
+
version = "0.4.29"
|
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "managed"
|
|
717
|
+
version = "0.8.0"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "0ca88d725a0a943b096803bd34e73a4437208b6077654cc4ecb2947a5f91618d"
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "memchr"
|
|
723
|
+
version = "2.8.0"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
726
|
+
|
|
727
|
+
[[package]]
|
|
728
|
+
name = "memoffset"
|
|
729
|
+
version = "0.9.1"
|
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
732
|
+
dependencies = [
|
|
733
|
+
"autocfg",
|
|
734
|
+
]
|
|
735
|
+
|
|
736
|
+
[[package]]
|
|
737
|
+
name = "nix"
|
|
738
|
+
version = "0.25.1"
|
|
739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
+
checksum = "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4"
|
|
741
|
+
dependencies = [
|
|
742
|
+
"autocfg",
|
|
743
|
+
"bitflags 1.3.2",
|
|
744
|
+
"cfg-if",
|
|
745
|
+
"libc",
|
|
746
|
+
]
|
|
747
|
+
|
|
748
|
+
[[package]]
|
|
749
|
+
name = "num-traits"
|
|
750
|
+
version = "0.2.19"
|
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
753
|
+
dependencies = [
|
|
754
|
+
"autocfg",
|
|
755
|
+
]
|
|
756
|
+
|
|
757
|
+
[[package]]
|
|
758
|
+
name = "once_cell"
|
|
759
|
+
version = "1.21.3"
|
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
762
|
+
|
|
763
|
+
[[package]]
|
|
764
|
+
name = "once_cell_polyfill"
|
|
765
|
+
version = "1.70.2"
|
|
766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
768
|
+
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "oorandom"
|
|
771
|
+
version = "11.1.5"
|
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
774
|
+
|
|
775
|
+
[[package]]
|
|
776
|
+
name = "opaque-debug"
|
|
777
|
+
version = "0.3.1"
|
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
+
checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "parking_lot"
|
|
783
|
+
version = "0.12.5"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
786
|
+
dependencies = [
|
|
787
|
+
"lock_api",
|
|
788
|
+
"parking_lot_core",
|
|
789
|
+
]
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "parking_lot_core"
|
|
793
|
+
version = "0.9.12"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
796
|
+
dependencies = [
|
|
797
|
+
"cfg-if",
|
|
798
|
+
"libc",
|
|
799
|
+
"redox_syscall",
|
|
800
|
+
"smallvec",
|
|
801
|
+
"windows-link",
|
|
802
|
+
]
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "pin-project-lite"
|
|
806
|
+
version = "0.2.17"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "platforms"
|
|
812
|
+
version = "3.8.0"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "a546fc83c436ffbef8e7e639df8498bbc5122e0bd19cf8db208720c2cc85290e"
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "plotters"
|
|
818
|
+
version = "0.3.7"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
821
|
+
dependencies = [
|
|
822
|
+
"num-traits",
|
|
823
|
+
"plotters-backend",
|
|
824
|
+
"plotters-svg",
|
|
825
|
+
"wasm-bindgen",
|
|
826
|
+
"web-sys",
|
|
827
|
+
]
|
|
828
|
+
|
|
829
|
+
[[package]]
|
|
830
|
+
name = "plotters-backend"
|
|
831
|
+
version = "0.3.7"
|
|
832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
834
|
+
|
|
835
|
+
[[package]]
|
|
836
|
+
name = "plotters-svg"
|
|
837
|
+
version = "0.3.7"
|
|
838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
840
|
+
dependencies = [
|
|
841
|
+
"plotters-backend",
|
|
842
|
+
]
|
|
843
|
+
|
|
844
|
+
[[package]]
|
|
845
|
+
name = "poly1305"
|
|
846
|
+
version = "0.8.0"
|
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
+
checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
|
|
849
|
+
dependencies = [
|
|
850
|
+
"cpufeatures",
|
|
851
|
+
"opaque-debug",
|
|
852
|
+
"universal-hash",
|
|
853
|
+
]
|
|
854
|
+
|
|
855
|
+
[[package]]
|
|
856
|
+
name = "portable-atomic"
|
|
857
|
+
version = "1.13.1"
|
|
858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
859
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
860
|
+
|
|
861
|
+
[[package]]
|
|
862
|
+
name = "portable-atomic-util"
|
|
863
|
+
version = "0.2.5"
|
|
864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
+
checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5"
|
|
866
|
+
dependencies = [
|
|
867
|
+
"portable-atomic",
|
|
868
|
+
]
|
|
869
|
+
|
|
870
|
+
[[package]]
|
|
871
|
+
name = "proc-macro-error-attr2"
|
|
872
|
+
version = "2.0.0"
|
|
873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
874
|
+
checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
|
|
875
|
+
dependencies = [
|
|
876
|
+
"proc-macro2",
|
|
877
|
+
"quote",
|
|
878
|
+
]
|
|
879
|
+
|
|
880
|
+
[[package]]
|
|
881
|
+
name = "proc-macro-error2"
|
|
882
|
+
version = "2.0.1"
|
|
883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
884
|
+
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
|
|
885
|
+
dependencies = [
|
|
886
|
+
"proc-macro-error-attr2",
|
|
887
|
+
"proc-macro2",
|
|
888
|
+
"quote",
|
|
889
|
+
"syn",
|
|
890
|
+
]
|
|
891
|
+
|
|
892
|
+
[[package]]
|
|
893
|
+
name = "proc-macro2"
|
|
894
|
+
version = "1.0.106"
|
|
895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
897
|
+
dependencies = [
|
|
898
|
+
"unicode-ident",
|
|
899
|
+
]
|
|
900
|
+
|
|
901
|
+
[[package]]
|
|
902
|
+
name = "pyo3"
|
|
903
|
+
version = "0.22.6"
|
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
+
checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
|
|
906
|
+
dependencies = [
|
|
907
|
+
"cfg-if",
|
|
908
|
+
"indoc",
|
|
909
|
+
"libc",
|
|
910
|
+
"memoffset",
|
|
911
|
+
"once_cell",
|
|
912
|
+
"portable-atomic",
|
|
913
|
+
"pyo3-build-config",
|
|
914
|
+
"pyo3-ffi",
|
|
915
|
+
"pyo3-macros",
|
|
916
|
+
"unindent",
|
|
917
|
+
]
|
|
918
|
+
|
|
919
|
+
[[package]]
|
|
920
|
+
name = "pyo3-build-config"
|
|
921
|
+
version = "0.22.6"
|
|
922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
|
+
checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
|
|
924
|
+
dependencies = [
|
|
925
|
+
"once_cell",
|
|
926
|
+
"target-lexicon",
|
|
927
|
+
]
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "pyo3-ffi"
|
|
931
|
+
version = "0.22.6"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
|
|
934
|
+
dependencies = [
|
|
935
|
+
"libc",
|
|
936
|
+
"pyo3-build-config",
|
|
937
|
+
]
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "pyo3-macros"
|
|
941
|
+
version = "0.22.6"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
|
|
944
|
+
dependencies = [
|
|
945
|
+
"proc-macro2",
|
|
946
|
+
"pyo3-macros-backend",
|
|
947
|
+
"quote",
|
|
948
|
+
"syn",
|
|
949
|
+
]
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "pyo3-macros-backend"
|
|
953
|
+
version = "0.22.6"
|
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
+
checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
|
|
956
|
+
dependencies = [
|
|
957
|
+
"heck",
|
|
958
|
+
"proc-macro2",
|
|
959
|
+
"pyo3-build-config",
|
|
960
|
+
"quote",
|
|
961
|
+
"syn",
|
|
962
|
+
]
|
|
963
|
+
|
|
964
|
+
[[package]]
|
|
965
|
+
name = "quote"
|
|
966
|
+
version = "1.0.44"
|
|
967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
968
|
+
checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
|
|
969
|
+
dependencies = [
|
|
970
|
+
"proc-macro2",
|
|
971
|
+
]
|
|
972
|
+
|
|
973
|
+
[[package]]
|
|
974
|
+
name = "rand_core"
|
|
975
|
+
version = "0.6.4"
|
|
976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
978
|
+
dependencies = [
|
|
979
|
+
"getrandom",
|
|
980
|
+
]
|
|
981
|
+
|
|
982
|
+
[[package]]
|
|
983
|
+
name = "rayon"
|
|
984
|
+
version = "1.11.0"
|
|
985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
986
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
987
|
+
dependencies = [
|
|
988
|
+
"either",
|
|
989
|
+
"rayon-core",
|
|
990
|
+
]
|
|
991
|
+
|
|
992
|
+
[[package]]
|
|
993
|
+
name = "rayon-core"
|
|
994
|
+
version = "1.13.0"
|
|
995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
996
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
997
|
+
dependencies = [
|
|
998
|
+
"crossbeam-deque",
|
|
999
|
+
"crossbeam-utils",
|
|
1000
|
+
]
|
|
1001
|
+
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "redox_syscall"
|
|
1004
|
+
version = "0.5.18"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1007
|
+
dependencies = [
|
|
1008
|
+
"bitflags 2.11.0",
|
|
1009
|
+
]
|
|
1010
|
+
|
|
1011
|
+
[[package]]
|
|
1012
|
+
name = "regex"
|
|
1013
|
+
version = "1.12.3"
|
|
1014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1015
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
1016
|
+
dependencies = [
|
|
1017
|
+
"aho-corasick",
|
|
1018
|
+
"memchr",
|
|
1019
|
+
"regex-automata",
|
|
1020
|
+
"regex-syntax",
|
|
1021
|
+
]
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "regex-automata"
|
|
1025
|
+
version = "0.4.14"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
1028
|
+
dependencies = [
|
|
1029
|
+
"aho-corasick",
|
|
1030
|
+
"memchr",
|
|
1031
|
+
"regex-syntax",
|
|
1032
|
+
]
|
|
1033
|
+
|
|
1034
|
+
[[package]]
|
|
1035
|
+
name = "regex-syntax"
|
|
1036
|
+
version = "0.8.10"
|
|
1037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1038
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
1039
|
+
|
|
1040
|
+
[[package]]
|
|
1041
|
+
name = "ring"
|
|
1042
|
+
version = "0.16.20"
|
|
1043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
+
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
|
|
1045
|
+
dependencies = [
|
|
1046
|
+
"cc",
|
|
1047
|
+
"libc",
|
|
1048
|
+
"once_cell",
|
|
1049
|
+
"spin",
|
|
1050
|
+
"untrusted 0.7.1",
|
|
1051
|
+
"web-sys",
|
|
1052
|
+
"winapi",
|
|
1053
|
+
]
|
|
1054
|
+
|
|
1055
|
+
[[package]]
|
|
1056
|
+
name = "rustc_version"
|
|
1057
|
+
version = "0.4.1"
|
|
1058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1060
|
+
dependencies = [
|
|
1061
|
+
"semver",
|
|
1062
|
+
]
|
|
1063
|
+
|
|
1064
|
+
[[package]]
|
|
1065
|
+
name = "rustversion"
|
|
1066
|
+
version = "1.0.22"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1069
|
+
|
|
1070
|
+
[[package]]
|
|
1071
|
+
name = "same-file"
|
|
1072
|
+
version = "1.0.6"
|
|
1073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1075
|
+
dependencies = [
|
|
1076
|
+
"winapi-util",
|
|
1077
|
+
]
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "scopeguard"
|
|
1081
|
+
version = "1.2.0"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1084
|
+
|
|
1085
|
+
[[package]]
|
|
1086
|
+
name = "semver"
|
|
1087
|
+
version = "1.0.27"
|
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "serde"
|
|
1093
|
+
version = "1.0.228"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1096
|
+
dependencies = [
|
|
1097
|
+
"serde_core",
|
|
1098
|
+
"serde_derive",
|
|
1099
|
+
]
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "serde_core"
|
|
1103
|
+
version = "1.0.228"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1106
|
+
dependencies = [
|
|
1107
|
+
"serde_derive",
|
|
1108
|
+
]
|
|
1109
|
+
|
|
1110
|
+
[[package]]
|
|
1111
|
+
name = "serde_derive"
|
|
1112
|
+
version = "1.0.228"
|
|
1113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1114
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1115
|
+
dependencies = [
|
|
1116
|
+
"proc-macro2",
|
|
1117
|
+
"quote",
|
|
1118
|
+
"syn",
|
|
1119
|
+
]
|
|
1120
|
+
|
|
1121
|
+
[[package]]
|
|
1122
|
+
name = "serde_json"
|
|
1123
|
+
version = "1.0.149"
|
|
1124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1125
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
1126
|
+
dependencies = [
|
|
1127
|
+
"itoa",
|
|
1128
|
+
"memchr",
|
|
1129
|
+
"serde",
|
|
1130
|
+
"serde_core",
|
|
1131
|
+
"zmij",
|
|
1132
|
+
]
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "shlex"
|
|
1136
|
+
version = "1.3.0"
|
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1139
|
+
|
|
1140
|
+
[[package]]
|
|
1141
|
+
name = "smallvec"
|
|
1142
|
+
version = "1.15.1"
|
|
1143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1145
|
+
|
|
1146
|
+
[[package]]
|
|
1147
|
+
name = "smoltcp"
|
|
1148
|
+
version = "0.11.0"
|
|
1149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1150
|
+
checksum = "5a1a996951e50b5971a2c8c0fa05a381480d70a933064245c4a223ddc87ccc97"
|
|
1151
|
+
dependencies = [
|
|
1152
|
+
"bitflags 1.3.2",
|
|
1153
|
+
"byteorder",
|
|
1154
|
+
"cfg-if",
|
|
1155
|
+
"defmt 0.3.100",
|
|
1156
|
+
"heapless",
|
|
1157
|
+
"log",
|
|
1158
|
+
"managed",
|
|
1159
|
+
]
|
|
1160
|
+
|
|
1161
|
+
[[package]]
|
|
1162
|
+
name = "socket2"
|
|
1163
|
+
version = "0.5.10"
|
|
1164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
+
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
|
1166
|
+
dependencies = [
|
|
1167
|
+
"libc",
|
|
1168
|
+
"windows-sys 0.52.0",
|
|
1169
|
+
]
|
|
1170
|
+
|
|
1171
|
+
[[package]]
|
|
1172
|
+
name = "spin"
|
|
1173
|
+
version = "0.5.2"
|
|
1174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1175
|
+
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
|
|
1176
|
+
|
|
1177
|
+
[[package]]
|
|
1178
|
+
name = "stable_deref_trait"
|
|
1179
|
+
version = "1.2.1"
|
|
1180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1181
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1182
|
+
|
|
1183
|
+
[[package]]
|
|
1184
|
+
name = "subtle"
|
|
1185
|
+
version = "2.6.1"
|
|
1186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1187
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1188
|
+
|
|
1189
|
+
[[package]]
|
|
1190
|
+
name = "syn"
|
|
1191
|
+
version = "2.0.117"
|
|
1192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1194
|
+
dependencies = [
|
|
1195
|
+
"proc-macro2",
|
|
1196
|
+
"quote",
|
|
1197
|
+
"unicode-ident",
|
|
1198
|
+
]
|
|
1199
|
+
|
|
1200
|
+
[[package]]
|
|
1201
|
+
name = "target-lexicon"
|
|
1202
|
+
version = "0.12.16"
|
|
1203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1204
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
1205
|
+
|
|
1206
|
+
[[package]]
|
|
1207
|
+
name = "thiserror"
|
|
1208
|
+
version = "2.0.18"
|
|
1209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1210
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1211
|
+
dependencies = [
|
|
1212
|
+
"thiserror-impl",
|
|
1213
|
+
]
|
|
1214
|
+
|
|
1215
|
+
[[package]]
|
|
1216
|
+
name = "thiserror-impl"
|
|
1217
|
+
version = "2.0.18"
|
|
1218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1219
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1220
|
+
dependencies = [
|
|
1221
|
+
"proc-macro2",
|
|
1222
|
+
"quote",
|
|
1223
|
+
"syn",
|
|
1224
|
+
]
|
|
1225
|
+
|
|
1226
|
+
[[package]]
|
|
1227
|
+
name = "tinytemplate"
|
|
1228
|
+
version = "1.2.1"
|
|
1229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
1231
|
+
dependencies = [
|
|
1232
|
+
"serde",
|
|
1233
|
+
"serde_json",
|
|
1234
|
+
]
|
|
1235
|
+
|
|
1236
|
+
[[package]]
|
|
1237
|
+
name = "tracing"
|
|
1238
|
+
version = "0.1.44"
|
|
1239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1240
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1241
|
+
dependencies = [
|
|
1242
|
+
"pin-project-lite",
|
|
1243
|
+
"tracing-attributes",
|
|
1244
|
+
"tracing-core",
|
|
1245
|
+
]
|
|
1246
|
+
|
|
1247
|
+
[[package]]
|
|
1248
|
+
name = "tracing-attributes"
|
|
1249
|
+
version = "0.1.31"
|
|
1250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
1252
|
+
dependencies = [
|
|
1253
|
+
"proc-macro2",
|
|
1254
|
+
"quote",
|
|
1255
|
+
"syn",
|
|
1256
|
+
]
|
|
1257
|
+
|
|
1258
|
+
[[package]]
|
|
1259
|
+
name = "tracing-core"
|
|
1260
|
+
version = "0.1.36"
|
|
1261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1262
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
1263
|
+
dependencies = [
|
|
1264
|
+
"once_cell",
|
|
1265
|
+
]
|
|
1266
|
+
|
|
1267
|
+
[[package]]
|
|
1268
|
+
name = "typenum"
|
|
1269
|
+
version = "1.19.0"
|
|
1270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1271
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
1272
|
+
|
|
1273
|
+
[[package]]
|
|
1274
|
+
name = "unicode-ident"
|
|
1275
|
+
version = "1.0.24"
|
|
1276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1277
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1278
|
+
|
|
1279
|
+
[[package]]
|
|
1280
|
+
name = "unindent"
|
|
1281
|
+
version = "0.2.4"
|
|
1282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1283
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1284
|
+
|
|
1285
|
+
[[package]]
|
|
1286
|
+
name = "universal-hash"
|
|
1287
|
+
version = "0.5.1"
|
|
1288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1289
|
+
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
|
|
1290
|
+
dependencies = [
|
|
1291
|
+
"crypto-common",
|
|
1292
|
+
"subtle",
|
|
1293
|
+
]
|
|
1294
|
+
|
|
1295
|
+
[[package]]
|
|
1296
|
+
name = "untrusted"
|
|
1297
|
+
version = "0.7.1"
|
|
1298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1299
|
+
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
|
|
1300
|
+
|
|
1301
|
+
[[package]]
|
|
1302
|
+
name = "untrusted"
|
|
1303
|
+
version = "0.9.0"
|
|
1304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1305
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
1306
|
+
|
|
1307
|
+
[[package]]
|
|
1308
|
+
name = "utf8parse"
|
|
1309
|
+
version = "0.2.2"
|
|
1310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1311
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1312
|
+
|
|
1313
|
+
[[package]]
|
|
1314
|
+
name = "version_check"
|
|
1315
|
+
version = "0.9.5"
|
|
1316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1317
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1318
|
+
|
|
1319
|
+
[[package]]
|
|
1320
|
+
name = "walkdir"
|
|
1321
|
+
version = "2.5.0"
|
|
1322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1323
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1324
|
+
dependencies = [
|
|
1325
|
+
"same-file",
|
|
1326
|
+
"winapi-util",
|
|
1327
|
+
]
|
|
1328
|
+
|
|
1329
|
+
[[package]]
|
|
1330
|
+
name = "wasi"
|
|
1331
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1333
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1334
|
+
|
|
1335
|
+
[[package]]
|
|
1336
|
+
name = "wasm-bindgen"
|
|
1337
|
+
version = "0.2.114"
|
|
1338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1339
|
+
checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
|
|
1340
|
+
dependencies = [
|
|
1341
|
+
"cfg-if",
|
|
1342
|
+
"once_cell",
|
|
1343
|
+
"rustversion",
|
|
1344
|
+
"wasm-bindgen-macro",
|
|
1345
|
+
"wasm-bindgen-shared",
|
|
1346
|
+
]
|
|
1347
|
+
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "wasm-bindgen-macro"
|
|
1350
|
+
version = "0.2.114"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
|
|
1353
|
+
dependencies = [
|
|
1354
|
+
"quote",
|
|
1355
|
+
"wasm-bindgen-macro-support",
|
|
1356
|
+
]
|
|
1357
|
+
|
|
1358
|
+
[[package]]
|
|
1359
|
+
name = "wasm-bindgen-macro-support"
|
|
1360
|
+
version = "0.2.114"
|
|
1361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1362
|
+
checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
|
|
1363
|
+
dependencies = [
|
|
1364
|
+
"bumpalo",
|
|
1365
|
+
"proc-macro2",
|
|
1366
|
+
"quote",
|
|
1367
|
+
"syn",
|
|
1368
|
+
"wasm-bindgen-shared",
|
|
1369
|
+
]
|
|
1370
|
+
|
|
1371
|
+
[[package]]
|
|
1372
|
+
name = "wasm-bindgen-shared"
|
|
1373
|
+
version = "0.2.114"
|
|
1374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1375
|
+
checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
|
|
1376
|
+
dependencies = [
|
|
1377
|
+
"unicode-ident",
|
|
1378
|
+
]
|
|
1379
|
+
|
|
1380
|
+
[[package]]
|
|
1381
|
+
name = "web-sys"
|
|
1382
|
+
version = "0.3.91"
|
|
1383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1384
|
+
checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
|
|
1385
|
+
dependencies = [
|
|
1386
|
+
"js-sys",
|
|
1387
|
+
"wasm-bindgen",
|
|
1388
|
+
]
|
|
1389
|
+
|
|
1390
|
+
[[package]]
|
|
1391
|
+
name = "winapi"
|
|
1392
|
+
version = "0.3.9"
|
|
1393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1394
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
1395
|
+
dependencies = [
|
|
1396
|
+
"winapi-i686-pc-windows-gnu",
|
|
1397
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
1398
|
+
]
|
|
1399
|
+
|
|
1400
|
+
[[package]]
|
|
1401
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
1402
|
+
version = "0.4.0"
|
|
1403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1404
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1405
|
+
|
|
1406
|
+
[[package]]
|
|
1407
|
+
name = "winapi-util"
|
|
1408
|
+
version = "0.1.11"
|
|
1409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1410
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1411
|
+
dependencies = [
|
|
1412
|
+
"windows-sys 0.61.2",
|
|
1413
|
+
]
|
|
1414
|
+
|
|
1415
|
+
[[package]]
|
|
1416
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
1417
|
+
version = "0.4.0"
|
|
1418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1419
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1420
|
+
|
|
1421
|
+
[[package]]
|
|
1422
|
+
name = "windows-link"
|
|
1423
|
+
version = "0.2.1"
|
|
1424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1425
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1426
|
+
|
|
1427
|
+
[[package]]
|
|
1428
|
+
name = "windows-sys"
|
|
1429
|
+
version = "0.52.0"
|
|
1430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1431
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
1432
|
+
dependencies = [
|
|
1433
|
+
"windows-targets",
|
|
1434
|
+
]
|
|
1435
|
+
|
|
1436
|
+
[[package]]
|
|
1437
|
+
name = "windows-sys"
|
|
1438
|
+
version = "0.61.2"
|
|
1439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1440
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1441
|
+
dependencies = [
|
|
1442
|
+
"windows-link",
|
|
1443
|
+
]
|
|
1444
|
+
|
|
1445
|
+
[[package]]
|
|
1446
|
+
name = "windows-targets"
|
|
1447
|
+
version = "0.52.6"
|
|
1448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1449
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1450
|
+
dependencies = [
|
|
1451
|
+
"windows_aarch64_gnullvm",
|
|
1452
|
+
"windows_aarch64_msvc",
|
|
1453
|
+
"windows_i686_gnu",
|
|
1454
|
+
"windows_i686_gnullvm",
|
|
1455
|
+
"windows_i686_msvc",
|
|
1456
|
+
"windows_x86_64_gnu",
|
|
1457
|
+
"windows_x86_64_gnullvm",
|
|
1458
|
+
"windows_x86_64_msvc",
|
|
1459
|
+
]
|
|
1460
|
+
|
|
1461
|
+
[[package]]
|
|
1462
|
+
name = "windows_aarch64_gnullvm"
|
|
1463
|
+
version = "0.52.6"
|
|
1464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1465
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1466
|
+
|
|
1467
|
+
[[package]]
|
|
1468
|
+
name = "windows_aarch64_msvc"
|
|
1469
|
+
version = "0.52.6"
|
|
1470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1471
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1472
|
+
|
|
1473
|
+
[[package]]
|
|
1474
|
+
name = "windows_i686_gnu"
|
|
1475
|
+
version = "0.52.6"
|
|
1476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1477
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1478
|
+
|
|
1479
|
+
[[package]]
|
|
1480
|
+
name = "windows_i686_gnullvm"
|
|
1481
|
+
version = "0.52.6"
|
|
1482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1483
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1484
|
+
|
|
1485
|
+
[[package]]
|
|
1486
|
+
name = "windows_i686_msvc"
|
|
1487
|
+
version = "0.52.6"
|
|
1488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1489
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1490
|
+
|
|
1491
|
+
[[package]]
|
|
1492
|
+
name = "windows_x86_64_gnu"
|
|
1493
|
+
version = "0.52.6"
|
|
1494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1496
|
+
|
|
1497
|
+
[[package]]
|
|
1498
|
+
name = "windows_x86_64_gnullvm"
|
|
1499
|
+
version = "0.52.6"
|
|
1500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1501
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1502
|
+
|
|
1503
|
+
[[package]]
|
|
1504
|
+
name = "windows_x86_64_msvc"
|
|
1505
|
+
version = "0.52.6"
|
|
1506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1507
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1508
|
+
|
|
1509
|
+
[[package]]
|
|
1510
|
+
name = "wireguard-requests"
|
|
1511
|
+
version = "0.0.1"
|
|
1512
|
+
dependencies = [
|
|
1513
|
+
"base64 0.22.1",
|
|
1514
|
+
"boringtun",
|
|
1515
|
+
"bytes",
|
|
1516
|
+
"criterion",
|
|
1517
|
+
"crossbeam-channel",
|
|
1518
|
+
"env_logger",
|
|
1519
|
+
"ipnetwork",
|
|
1520
|
+
"log",
|
|
1521
|
+
"parking_lot",
|
|
1522
|
+
"pyo3",
|
|
1523
|
+
"smoltcp",
|
|
1524
|
+
"socket2",
|
|
1525
|
+
"thiserror",
|
|
1526
|
+
]
|
|
1527
|
+
|
|
1528
|
+
[[package]]
|
|
1529
|
+
name = "x25519-dalek"
|
|
1530
|
+
version = "2.0.0-rc.3"
|
|
1531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1532
|
+
checksum = "ec7fae07da688e17059d5886712c933bb0520f15eff2e09cfa18e30968f4e63a"
|
|
1533
|
+
dependencies = [
|
|
1534
|
+
"curve25519-dalek",
|
|
1535
|
+
"rand_core",
|
|
1536
|
+
"serde",
|
|
1537
|
+
"zeroize",
|
|
1538
|
+
]
|
|
1539
|
+
|
|
1540
|
+
[[package]]
|
|
1541
|
+
name = "zerocopy"
|
|
1542
|
+
version = "0.8.40"
|
|
1543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1544
|
+
checksum = "a789c6e490b576db9f7e6b6d661bcc9799f7c0ac8352f56ea20193b2681532e5"
|
|
1545
|
+
dependencies = [
|
|
1546
|
+
"zerocopy-derive",
|
|
1547
|
+
]
|
|
1548
|
+
|
|
1549
|
+
[[package]]
|
|
1550
|
+
name = "zerocopy-derive"
|
|
1551
|
+
version = "0.8.40"
|
|
1552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1553
|
+
checksum = "f65c489a7071a749c849713807783f70672b28094011623e200cb86dcb835953"
|
|
1554
|
+
dependencies = [
|
|
1555
|
+
"proc-macro2",
|
|
1556
|
+
"quote",
|
|
1557
|
+
"syn",
|
|
1558
|
+
]
|
|
1559
|
+
|
|
1560
|
+
[[package]]
|
|
1561
|
+
name = "zeroize"
|
|
1562
|
+
version = "1.8.2"
|
|
1563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1564
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
1565
|
+
dependencies = [
|
|
1566
|
+
"zeroize_derive",
|
|
1567
|
+
]
|
|
1568
|
+
|
|
1569
|
+
[[package]]
|
|
1570
|
+
name = "zeroize_derive"
|
|
1571
|
+
version = "1.4.3"
|
|
1572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1573
|
+
checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
|
|
1574
|
+
dependencies = [
|
|
1575
|
+
"proc-macro2",
|
|
1576
|
+
"quote",
|
|
1577
|
+
"syn",
|
|
1578
|
+
]
|
|
1579
|
+
|
|
1580
|
+
[[package]]
|
|
1581
|
+
name = "zmij"
|
|
1582
|
+
version = "1.0.21"
|
|
1583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1584
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|