reallink-cli 0.1.17 → 0.1.18
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.
- package/package.json +3 -2
- package/prebuilt/linux-x64/reallink-cli +0 -0
- package/rust/Cargo.lock +2860 -256
- package/rust/Cargo.toml +5 -2
- package/rust/src/main.rs +793 -6
- package/rust/src/unreal.rs +50 -0
package/rust/Cargo.lock
CHANGED
|
@@ -8,6 +8,41 @@ version = "2.0.1"
|
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
9
|
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
10
|
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aead"
|
|
13
|
+
version = "0.5.2"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"crypto-common 0.1.7",
|
|
18
|
+
"generic-array",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[[package]]
|
|
22
|
+
name = "aes"
|
|
23
|
+
version = "0.8.4"
|
|
24
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
25
|
+
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
|
26
|
+
dependencies = [
|
|
27
|
+
"cfg-if",
|
|
28
|
+
"cipher",
|
|
29
|
+
"cpufeatures 0.2.17",
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "aes-gcm"
|
|
34
|
+
version = "0.10.3"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"aead",
|
|
39
|
+
"aes",
|
|
40
|
+
"cipher",
|
|
41
|
+
"ctr",
|
|
42
|
+
"ghash",
|
|
43
|
+
"subtle",
|
|
44
|
+
]
|
|
45
|
+
|
|
11
46
|
[[package]]
|
|
12
47
|
name = "aho-corasick"
|
|
13
48
|
version = "1.1.4"
|
|
@@ -17,6 +52,21 @@ dependencies = [
|
|
|
17
52
|
"memchr",
|
|
18
53
|
]
|
|
19
54
|
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "allocator-api2"
|
|
57
|
+
version = "0.2.21"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "android_system_properties"
|
|
63
|
+
version = "0.1.5"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
66
|
+
dependencies = [
|
|
67
|
+
"libc",
|
|
68
|
+
]
|
|
69
|
+
|
|
20
70
|
[[package]]
|
|
21
71
|
name = "anstream"
|
|
22
72
|
version = "0.6.21"
|
|
@@ -82,24 +132,174 @@ dependencies = [
|
|
|
82
132
|
"derive_arbitrary",
|
|
83
133
|
]
|
|
84
134
|
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "arrayref"
|
|
137
|
+
version = "0.3.9"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "arrayvec"
|
|
143
|
+
version = "0.7.6"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
146
|
+
|
|
147
|
+
[[package]]
|
|
148
|
+
name = "async-trait"
|
|
149
|
+
version = "0.1.89"
|
|
150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
152
|
+
dependencies = [
|
|
153
|
+
"proc-macro2",
|
|
154
|
+
"quote",
|
|
155
|
+
"syn",
|
|
156
|
+
]
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "async_io_stream"
|
|
160
|
+
version = "0.3.3"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "b6d7b9decdf35d8908a7e3ef02f64c5e9b1695e230154c0e8de3969142d9b94c"
|
|
163
|
+
dependencies = [
|
|
164
|
+
"futures",
|
|
165
|
+
"pharos",
|
|
166
|
+
"rustc_version",
|
|
167
|
+
]
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "atomic-polyfill"
|
|
171
|
+
version = "1.0.3"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4"
|
|
174
|
+
dependencies = [
|
|
175
|
+
"critical-section",
|
|
176
|
+
]
|
|
177
|
+
|
|
85
178
|
[[package]]
|
|
86
179
|
name = "atomic-waker"
|
|
87
180
|
version = "1.1.2"
|
|
88
181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
182
|
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
90
183
|
|
|
184
|
+
[[package]]
|
|
185
|
+
name = "attohttpc"
|
|
186
|
+
version = "0.30.1"
|
|
187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
+
checksum = "16e2cdb6d5ed835199484bb92bb8b3edd526effe995c61732580439c1a67e2e9"
|
|
189
|
+
dependencies = [
|
|
190
|
+
"base64",
|
|
191
|
+
"http",
|
|
192
|
+
"log",
|
|
193
|
+
"url",
|
|
194
|
+
]
|
|
195
|
+
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "autocfg"
|
|
198
|
+
version = "1.5.0"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
201
|
+
|
|
202
|
+
[[package]]
|
|
203
|
+
name = "axum"
|
|
204
|
+
version = "0.7.9"
|
|
205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
+
checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
|
|
207
|
+
dependencies = [
|
|
208
|
+
"async-trait",
|
|
209
|
+
"axum-core",
|
|
210
|
+
"bytes",
|
|
211
|
+
"futures-util",
|
|
212
|
+
"http",
|
|
213
|
+
"http-body",
|
|
214
|
+
"http-body-util",
|
|
215
|
+
"hyper",
|
|
216
|
+
"hyper-util",
|
|
217
|
+
"itoa",
|
|
218
|
+
"matchit",
|
|
219
|
+
"memchr",
|
|
220
|
+
"mime",
|
|
221
|
+
"percent-encoding",
|
|
222
|
+
"pin-project-lite",
|
|
223
|
+
"rustversion",
|
|
224
|
+
"serde",
|
|
225
|
+
"serde_json",
|
|
226
|
+
"serde_path_to_error",
|
|
227
|
+
"sync_wrapper",
|
|
228
|
+
"tokio",
|
|
229
|
+
"tower",
|
|
230
|
+
"tower-layer",
|
|
231
|
+
"tower-service",
|
|
232
|
+
]
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "axum-core"
|
|
236
|
+
version = "0.4.5"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
|
|
239
|
+
dependencies = [
|
|
240
|
+
"async-trait",
|
|
241
|
+
"bytes",
|
|
242
|
+
"futures-util",
|
|
243
|
+
"http",
|
|
244
|
+
"http-body",
|
|
245
|
+
"http-body-util",
|
|
246
|
+
"mime",
|
|
247
|
+
"pin-project-lite",
|
|
248
|
+
"rustversion",
|
|
249
|
+
"sync_wrapper",
|
|
250
|
+
"tower-layer",
|
|
251
|
+
"tower-service",
|
|
252
|
+
]
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "backon"
|
|
256
|
+
version = "1.6.0"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "cffb0e931875b666fc4fcb20fee52e9bbd1ef836fd9e9e04ec21555f9f85f7ef"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"fastrand",
|
|
261
|
+
"gloo-timers",
|
|
262
|
+
"tokio",
|
|
263
|
+
]
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "base32"
|
|
267
|
+
version = "0.5.1"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "022dfe9eb35f19ebbcb51e0b40a5ab759f46ad60cadf7297e0bd085afb50e076"
|
|
270
|
+
|
|
91
271
|
[[package]]
|
|
92
272
|
name = "base64"
|
|
93
273
|
version = "0.22.1"
|
|
94
274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
275
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
96
276
|
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "base64ct"
|
|
279
|
+
version = "1.8.3"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
282
|
+
|
|
97
283
|
[[package]]
|
|
98
284
|
name = "bitflags"
|
|
99
285
|
version = "2.11.0"
|
|
100
286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
287
|
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
102
288
|
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "blake3"
|
|
291
|
+
version = "1.8.4"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "4d2d5991425dfd0785aed03aedcf0b321d61975c9b5b3689c774a2610ae0b51e"
|
|
294
|
+
dependencies = [
|
|
295
|
+
"arrayref",
|
|
296
|
+
"arrayvec",
|
|
297
|
+
"cc",
|
|
298
|
+
"cfg-if",
|
|
299
|
+
"constant_time_eq",
|
|
300
|
+
"cpufeatures 0.3.0",
|
|
301
|
+
]
|
|
302
|
+
|
|
103
303
|
[[package]]
|
|
104
304
|
name = "block-buffer"
|
|
105
305
|
version = "0.10.4"
|
|
@@ -109,6 +309,24 @@ dependencies = [
|
|
|
109
309
|
"generic-array",
|
|
110
310
|
]
|
|
111
311
|
|
|
312
|
+
[[package]]
|
|
313
|
+
name = "block-buffer"
|
|
314
|
+
version = "0.11.0"
|
|
315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
+
checksum = "96eb4cdd6cf1b31d671e9efe75c5d1ec614776856cefbe109ca373554a6d514f"
|
|
317
|
+
dependencies = [
|
|
318
|
+
"hybrid-array",
|
|
319
|
+
]
|
|
320
|
+
|
|
321
|
+
[[package]]
|
|
322
|
+
name = "block2"
|
|
323
|
+
version = "0.6.2"
|
|
324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
+
checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
|
|
326
|
+
dependencies = [
|
|
327
|
+
"objc2",
|
|
328
|
+
]
|
|
329
|
+
|
|
112
330
|
[[package]]
|
|
113
331
|
name = "bumpalo"
|
|
114
332
|
version = "3.20.2"
|
|
@@ -155,6 +373,28 @@ version = "0.2.1"
|
|
|
155
373
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
374
|
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
157
375
|
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "chrono"
|
|
378
|
+
version = "0.4.44"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
381
|
+
dependencies = [
|
|
382
|
+
"iana-time-zone",
|
|
383
|
+
"num-traits",
|
|
384
|
+
"serde",
|
|
385
|
+
"windows-link",
|
|
386
|
+
]
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "cipher"
|
|
390
|
+
version = "0.4.4"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
393
|
+
dependencies = [
|
|
394
|
+
"crypto-common 0.1.7",
|
|
395
|
+
"inout",
|
|
396
|
+
]
|
|
397
|
+
|
|
158
398
|
[[package]]
|
|
159
399
|
name = "clap"
|
|
160
400
|
version = "4.5.60"
|
|
@@ -195,6 +435,15 @@ version = "1.0.0"
|
|
|
195
435
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
436
|
checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
|
|
197
437
|
|
|
438
|
+
[[package]]
|
|
439
|
+
name = "cobs"
|
|
440
|
+
version = "0.3.0"
|
|
441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
442
|
+
checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
|
|
443
|
+
dependencies = [
|
|
444
|
+
"thiserror 2.0.18",
|
|
445
|
+
]
|
|
446
|
+
|
|
198
447
|
[[package]]
|
|
199
448
|
name = "colorchoice"
|
|
200
449
|
version = "1.0.4"
|
|
@@ -211,6 +460,37 @@ dependencies = [
|
|
|
211
460
|
"memchr",
|
|
212
461
|
]
|
|
213
462
|
|
|
463
|
+
[[package]]
|
|
464
|
+
name = "const-oid"
|
|
465
|
+
version = "0.10.2"
|
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
+
checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
|
|
468
|
+
|
|
469
|
+
[[package]]
|
|
470
|
+
name = "constant_time_eq"
|
|
471
|
+
version = "0.4.2"
|
|
472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
473
|
+
checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
|
|
474
|
+
|
|
475
|
+
[[package]]
|
|
476
|
+
name = "convert_case"
|
|
477
|
+
version = "0.10.0"
|
|
478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
+
checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
|
|
480
|
+
dependencies = [
|
|
481
|
+
"unicode-segmentation",
|
|
482
|
+
]
|
|
483
|
+
|
|
484
|
+
[[package]]
|
|
485
|
+
name = "cordyceps"
|
|
486
|
+
version = "0.3.4"
|
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
+
checksum = "688d7fbb8092b8de775ef2536f36c8c31f2bc4006ece2e8d8ad2d17d00ce0a2a"
|
|
489
|
+
dependencies = [
|
|
490
|
+
"loom",
|
|
491
|
+
"tracing",
|
|
492
|
+
]
|
|
493
|
+
|
|
214
494
|
[[package]]
|
|
215
495
|
name = "core-foundation"
|
|
216
496
|
version = "0.10.1"
|
|
@@ -236,6 +516,15 @@ dependencies = [
|
|
|
236
516
|
"libc",
|
|
237
517
|
]
|
|
238
518
|
|
|
519
|
+
[[package]]
|
|
520
|
+
name = "cpufeatures"
|
|
521
|
+
version = "0.3.0"
|
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
524
|
+
dependencies = [
|
|
525
|
+
"libc",
|
|
526
|
+
]
|
|
527
|
+
|
|
239
528
|
[[package]]
|
|
240
529
|
name = "crc32fast"
|
|
241
530
|
version = "1.5.0"
|
|
@@ -245,6 +534,30 @@ dependencies = [
|
|
|
245
534
|
"cfg-if",
|
|
246
535
|
]
|
|
247
536
|
|
|
537
|
+
[[package]]
|
|
538
|
+
name = "critical-section"
|
|
539
|
+
version = "1.2.0"
|
|
540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
+
checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "crossbeam-channel"
|
|
545
|
+
version = "0.5.15"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
548
|
+
dependencies = [
|
|
549
|
+
"crossbeam-utils",
|
|
550
|
+
]
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "crossbeam-epoch"
|
|
554
|
+
version = "0.9.18"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
557
|
+
dependencies = [
|
|
558
|
+
"crossbeam-utils",
|
|
559
|
+
]
|
|
560
|
+
|
|
248
561
|
[[package]]
|
|
249
562
|
name = "crossbeam-utils"
|
|
250
563
|
version = "0.8.21"
|
|
@@ -262,370 +575,943 @@ dependencies = [
|
|
|
262
575
|
]
|
|
263
576
|
|
|
264
577
|
[[package]]
|
|
265
|
-
name = "
|
|
266
|
-
version = "2.
|
|
578
|
+
name = "crypto-common"
|
|
579
|
+
version = "0.2.1"
|
|
267
580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
-
checksum = "
|
|
581
|
+
checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710"
|
|
582
|
+
dependencies = [
|
|
583
|
+
"hybrid-array",
|
|
584
|
+
]
|
|
269
585
|
|
|
270
586
|
[[package]]
|
|
271
|
-
name = "
|
|
272
|
-
version = "
|
|
587
|
+
name = "ctr"
|
|
588
|
+
version = "0.9.2"
|
|
273
589
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
274
|
-
checksum = "
|
|
590
|
+
checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
|
|
275
591
|
dependencies = [
|
|
276
|
-
"
|
|
277
|
-
"quote",
|
|
278
|
-
"syn",
|
|
592
|
+
"cipher",
|
|
279
593
|
]
|
|
280
594
|
|
|
281
595
|
[[package]]
|
|
282
|
-
name = "
|
|
283
|
-
version = "0.
|
|
596
|
+
name = "curve25519-dalek"
|
|
597
|
+
version = "5.0.0-pre.1"
|
|
284
598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
-
checksum = "
|
|
599
|
+
checksum = "6f9200d1d13637f15a6acb71e758f64624048d85b31a5fdbfd8eca1e2687d0b7"
|
|
286
600
|
dependencies = [
|
|
287
|
-
"
|
|
288
|
-
"
|
|
601
|
+
"cfg-if",
|
|
602
|
+
"cpufeatures 0.2.17",
|
|
603
|
+
"curve25519-dalek-derive",
|
|
604
|
+
"digest 0.11.0-rc.10",
|
|
605
|
+
"fiat-crypto",
|
|
606
|
+
"rand_core 0.9.5",
|
|
607
|
+
"rustc_version",
|
|
608
|
+
"serde",
|
|
609
|
+
"subtle",
|
|
610
|
+
"zeroize",
|
|
289
611
|
]
|
|
290
612
|
|
|
291
613
|
[[package]]
|
|
292
|
-
name = "
|
|
293
|
-
version = "
|
|
614
|
+
name = "curve25519-dalek-derive"
|
|
615
|
+
version = "0.1.1"
|
|
294
616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
|
-
checksum = "
|
|
617
|
+
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
|
296
618
|
dependencies = [
|
|
297
|
-
"
|
|
619
|
+
"proc-macro2",
|
|
620
|
+
"quote",
|
|
621
|
+
"syn",
|
|
298
622
|
]
|
|
299
623
|
|
|
300
624
|
[[package]]
|
|
301
|
-
name = "
|
|
302
|
-
version = "0.
|
|
625
|
+
name = "darling"
|
|
626
|
+
version = "0.20.11"
|
|
303
627
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
304
|
-
checksum = "
|
|
628
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
305
629
|
dependencies = [
|
|
306
|
-
"
|
|
307
|
-
"
|
|
308
|
-
"redox_users",
|
|
309
|
-
"windows-sys 0.48.0",
|
|
630
|
+
"darling_core",
|
|
631
|
+
"darling_macro",
|
|
310
632
|
]
|
|
311
633
|
|
|
312
634
|
[[package]]
|
|
313
|
-
name = "
|
|
314
|
-
version = "0.
|
|
635
|
+
name = "darling_core"
|
|
636
|
+
version = "0.20.11"
|
|
315
637
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
-
checksum = "
|
|
638
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
317
639
|
dependencies = [
|
|
640
|
+
"fnv",
|
|
641
|
+
"ident_case",
|
|
318
642
|
"proc-macro2",
|
|
319
643
|
"quote",
|
|
644
|
+
"strsim",
|
|
320
645
|
"syn",
|
|
321
646
|
]
|
|
322
647
|
|
|
323
648
|
[[package]]
|
|
324
|
-
name = "
|
|
325
|
-
version = "
|
|
326
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
-
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
328
|
-
|
|
329
|
-
[[package]]
|
|
330
|
-
name = "errno"
|
|
331
|
-
version = "0.3.14"
|
|
649
|
+
name = "darling_macro"
|
|
650
|
+
version = "0.20.11"
|
|
332
651
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
-
checksum = "
|
|
652
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
334
653
|
dependencies = [
|
|
335
|
-
"
|
|
336
|
-
"
|
|
654
|
+
"darling_core",
|
|
655
|
+
"quote",
|
|
656
|
+
"syn",
|
|
337
657
|
]
|
|
338
658
|
|
|
339
659
|
[[package]]
|
|
340
|
-
name = "
|
|
341
|
-
version = "
|
|
342
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
-
checksum = "
|
|
660
|
+
name = "data-encoding"
|
|
661
|
+
version = "2.10.0"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
|
|
344
664
|
|
|
345
665
|
[[package]]
|
|
346
|
-
name = "
|
|
347
|
-
version = "
|
|
666
|
+
name = "der"
|
|
667
|
+
version = "0.8.0"
|
|
348
668
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
|
-
checksum = "
|
|
669
|
+
checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b"
|
|
350
670
|
dependencies = [
|
|
351
|
-
"
|
|
352
|
-
"
|
|
671
|
+
"const-oid",
|
|
672
|
+
"pem-rfc7468",
|
|
673
|
+
"zeroize",
|
|
353
674
|
]
|
|
354
675
|
|
|
355
676
|
[[package]]
|
|
356
|
-
name = "
|
|
357
|
-
version = "
|
|
677
|
+
name = "deranged"
|
|
678
|
+
version = "0.5.8"
|
|
358
679
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
-
checksum = "
|
|
680
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
360
681
|
dependencies = [
|
|
361
|
-
"
|
|
682
|
+
"powerfmt",
|
|
362
683
|
]
|
|
363
684
|
|
|
364
685
|
[[package]]
|
|
365
|
-
name = "
|
|
366
|
-
version = "
|
|
686
|
+
name = "derive_arbitrary"
|
|
687
|
+
version = "1.4.2"
|
|
367
688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
|
-
checksum = "
|
|
689
|
+
checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
|
|
369
690
|
dependencies = [
|
|
370
|
-
"
|
|
691
|
+
"proc-macro2",
|
|
692
|
+
"quote",
|
|
693
|
+
"syn",
|
|
371
694
|
]
|
|
372
695
|
|
|
373
696
|
[[package]]
|
|
374
|
-
name = "
|
|
375
|
-
version = "0.
|
|
697
|
+
name = "derive_builder"
|
|
698
|
+
version = "0.20.2"
|
|
376
699
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
-
checksum = "
|
|
700
|
+
checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
|
|
701
|
+
dependencies = [
|
|
702
|
+
"derive_builder_macro",
|
|
703
|
+
]
|
|
378
704
|
|
|
379
705
|
[[package]]
|
|
380
|
-
name = "
|
|
381
|
-
version = "0.
|
|
706
|
+
name = "derive_builder_core"
|
|
707
|
+
version = "0.20.2"
|
|
382
708
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
383
|
-
checksum = "
|
|
709
|
+
checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
|
|
384
710
|
dependencies = [
|
|
711
|
+
"darling",
|
|
385
712
|
"proc-macro2",
|
|
386
713
|
"quote",
|
|
387
714
|
"syn",
|
|
388
715
|
]
|
|
389
716
|
|
|
390
717
|
[[package]]
|
|
391
|
-
name = "
|
|
392
|
-
version = "0.
|
|
718
|
+
name = "derive_builder_macro"
|
|
719
|
+
version = "0.20.2"
|
|
393
720
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
-
checksum = "
|
|
721
|
+
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
722
|
+
dependencies = [
|
|
723
|
+
"derive_builder_core",
|
|
724
|
+
"syn",
|
|
725
|
+
]
|
|
395
726
|
|
|
396
727
|
[[package]]
|
|
397
|
-
name = "
|
|
398
|
-
version = "
|
|
728
|
+
name = "derive_more"
|
|
729
|
+
version = "2.1.1"
|
|
399
730
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
-
checksum = "
|
|
731
|
+
checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
|
|
732
|
+
dependencies = [
|
|
733
|
+
"derive_more-impl",
|
|
734
|
+
]
|
|
401
735
|
|
|
402
736
|
[[package]]
|
|
403
|
-
name = "
|
|
404
|
-
version = "
|
|
737
|
+
name = "derive_more-impl"
|
|
738
|
+
version = "2.1.1"
|
|
405
739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
406
|
-
checksum = "
|
|
740
|
+
checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
|
|
407
741
|
dependencies = [
|
|
408
|
-
"
|
|
409
|
-
"
|
|
410
|
-
"
|
|
411
|
-
"
|
|
412
|
-
"
|
|
413
|
-
"
|
|
742
|
+
"convert_case",
|
|
743
|
+
"proc-macro2",
|
|
744
|
+
"quote",
|
|
745
|
+
"rustc_version",
|
|
746
|
+
"syn",
|
|
747
|
+
"unicode-xid",
|
|
414
748
|
]
|
|
415
749
|
|
|
416
750
|
[[package]]
|
|
417
|
-
name = "
|
|
418
|
-
version = "0.
|
|
751
|
+
name = "diatomic-waker"
|
|
752
|
+
version = "0.2.3"
|
|
419
753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
-
checksum = "
|
|
754
|
+
checksum = "ab03c107fafeb3ee9f5925686dbb7a73bc76e3932abb0d2b365cb64b169cf04c"
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "digest"
|
|
758
|
+
version = "0.10.7"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
421
761
|
dependencies = [
|
|
422
|
-
"
|
|
423
|
-
"
|
|
762
|
+
"block-buffer 0.10.4",
|
|
763
|
+
"crypto-common 0.1.7",
|
|
424
764
|
]
|
|
425
765
|
|
|
426
766
|
[[package]]
|
|
427
|
-
name = "
|
|
428
|
-
version = "0.
|
|
767
|
+
name = "digest"
|
|
768
|
+
version = "0.11.0-rc.10"
|
|
429
769
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
-
checksum = "
|
|
770
|
+
checksum = "afa94b64bfc6549e6e4b5a3216f22593224174083da7a90db47e951c4fb31725"
|
|
431
771
|
dependencies = [
|
|
432
|
-
"
|
|
433
|
-
"
|
|
434
|
-
"
|
|
435
|
-
"wasi",
|
|
436
|
-
"wasm-bindgen",
|
|
772
|
+
"block-buffer 0.11.0",
|
|
773
|
+
"const-oid",
|
|
774
|
+
"crypto-common 0.2.1",
|
|
437
775
|
]
|
|
438
776
|
|
|
439
777
|
[[package]]
|
|
440
|
-
name = "
|
|
441
|
-
version = "0.
|
|
778
|
+
name = "dirs"
|
|
779
|
+
version = "5.0.1"
|
|
442
780
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
443
|
-
checksum = "
|
|
781
|
+
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
|
|
782
|
+
dependencies = [
|
|
783
|
+
"dirs-sys",
|
|
784
|
+
]
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "dirs-sys"
|
|
788
|
+
version = "0.4.1"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
|
|
444
791
|
dependencies = [
|
|
445
|
-
"cfg-if",
|
|
446
|
-
"js-sys",
|
|
447
792
|
"libc",
|
|
448
|
-
"
|
|
449
|
-
"
|
|
450
|
-
"
|
|
793
|
+
"option-ext",
|
|
794
|
+
"redox_users",
|
|
795
|
+
"windows-sys 0.48.0",
|
|
451
796
|
]
|
|
452
797
|
|
|
453
798
|
[[package]]
|
|
454
|
-
name = "
|
|
455
|
-
version = "0.
|
|
799
|
+
name = "dispatch2"
|
|
800
|
+
version = "0.3.1"
|
|
456
801
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
457
|
-
checksum = "
|
|
802
|
+
checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
|
|
803
|
+
dependencies = [
|
|
804
|
+
"bitflags",
|
|
805
|
+
"block2",
|
|
806
|
+
"libc",
|
|
807
|
+
"objc2",
|
|
808
|
+
]
|
|
458
809
|
|
|
459
810
|
[[package]]
|
|
460
|
-
name = "
|
|
461
|
-
version = "0.5
|
|
811
|
+
name = "displaydoc"
|
|
812
|
+
version = "0.2.5"
|
|
462
813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
-
checksum = "
|
|
814
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
815
|
+
dependencies = [
|
|
816
|
+
"proc-macro2",
|
|
817
|
+
"quote",
|
|
818
|
+
"syn",
|
|
819
|
+
]
|
|
464
820
|
|
|
465
821
|
[[package]]
|
|
466
|
-
name = "
|
|
467
|
-
version = "0.
|
|
822
|
+
name = "dlopen2"
|
|
823
|
+
version = "0.5.0"
|
|
468
824
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
-
checksum = "
|
|
825
|
+
checksum = "09b4f5f101177ff01b8ec4ecc81eead416a8aa42819a2869311b3420fa114ffa"
|
|
470
826
|
dependencies = [
|
|
471
|
-
"cfg-if",
|
|
472
827
|
"libc",
|
|
473
|
-
"
|
|
828
|
+
"once_cell",
|
|
829
|
+
"winapi",
|
|
474
830
|
]
|
|
475
831
|
|
|
476
832
|
[[package]]
|
|
477
|
-
name = "
|
|
478
|
-
version = "
|
|
833
|
+
name = "document-features"
|
|
834
|
+
version = "0.2.12"
|
|
479
835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
-
checksum = "
|
|
836
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
481
837
|
dependencies = [
|
|
482
|
-
"
|
|
483
|
-
"itoa",
|
|
838
|
+
"litrs",
|
|
484
839
|
]
|
|
485
840
|
|
|
486
841
|
[[package]]
|
|
487
|
-
name = "
|
|
488
|
-
version = "
|
|
842
|
+
name = "ed25519"
|
|
843
|
+
version = "3.0.0-rc.4"
|
|
489
844
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
-
checksum = "
|
|
845
|
+
checksum = "c6e914c7c52decb085cea910552e24c63ac019e3ab8bf001ff736da9a9d9d890"
|
|
491
846
|
dependencies = [
|
|
492
|
-
"
|
|
493
|
-
"
|
|
847
|
+
"pkcs8",
|
|
848
|
+
"serde",
|
|
849
|
+
"signature",
|
|
494
850
|
]
|
|
495
851
|
|
|
496
852
|
[[package]]
|
|
497
|
-
name = "
|
|
498
|
-
version = "0.1
|
|
853
|
+
name = "ed25519-dalek"
|
|
854
|
+
version = "3.0.0-pre.1"
|
|
499
855
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
-
checksum = "
|
|
856
|
+
checksum = "ad207ed88a133091f83224265eac21109930db09bedcad05d5252f2af2de20a1"
|
|
501
857
|
dependencies = [
|
|
502
|
-
"
|
|
503
|
-
"
|
|
504
|
-
"
|
|
505
|
-
"
|
|
506
|
-
"
|
|
858
|
+
"curve25519-dalek",
|
|
859
|
+
"ed25519",
|
|
860
|
+
"rand_core 0.9.5",
|
|
861
|
+
"serde",
|
|
862
|
+
"sha2 0.11.0-rc.2",
|
|
863
|
+
"signature",
|
|
864
|
+
"subtle",
|
|
865
|
+
"zeroize",
|
|
507
866
|
]
|
|
508
867
|
|
|
509
868
|
[[package]]
|
|
510
|
-
name = "
|
|
511
|
-
version = "
|
|
869
|
+
name = "embedded-io"
|
|
870
|
+
version = "0.4.0"
|
|
512
871
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
513
|
-
checksum = "
|
|
872
|
+
checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
|
|
514
873
|
|
|
515
874
|
[[package]]
|
|
516
|
-
name = "
|
|
517
|
-
version = "
|
|
875
|
+
name = "embedded-io"
|
|
876
|
+
version = "0.6.1"
|
|
518
877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
-
checksum = "
|
|
520
|
-
dependencies = [
|
|
521
|
-
"atomic-waker",
|
|
522
|
-
"bytes",
|
|
523
|
-
"futures-channel",
|
|
524
|
-
"futures-core",
|
|
525
|
-
"http",
|
|
526
|
-
"http-body",
|
|
527
|
-
"httparse",
|
|
528
|
-
"itoa",
|
|
529
|
-
"pin-project-lite",
|
|
530
|
-
"pin-utils",
|
|
531
|
-
"smallvec",
|
|
532
|
-
"tokio",
|
|
533
|
-
"want",
|
|
534
|
-
]
|
|
878
|
+
checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
|
|
535
879
|
|
|
536
880
|
[[package]]
|
|
537
|
-
name = "
|
|
538
|
-
version = "0.
|
|
881
|
+
name = "enum-as-inner"
|
|
882
|
+
version = "0.6.1"
|
|
539
883
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
540
|
-
checksum = "
|
|
884
|
+
checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
|
|
541
885
|
dependencies = [
|
|
542
|
-
"
|
|
543
|
-
"
|
|
544
|
-
"
|
|
545
|
-
"
|
|
546
|
-
"rustls-pki-types",
|
|
547
|
-
"tokio",
|
|
548
|
-
"tokio-rustls",
|
|
549
|
-
"tower-service",
|
|
550
|
-
"webpki-roots 1.0.6",
|
|
886
|
+
"heck",
|
|
887
|
+
"proc-macro2",
|
|
888
|
+
"quote",
|
|
889
|
+
"syn",
|
|
551
890
|
]
|
|
552
891
|
|
|
553
892
|
[[package]]
|
|
554
|
-
name = "
|
|
555
|
-
version = "
|
|
893
|
+
name = "enum-assoc"
|
|
894
|
+
version = "1.3.0"
|
|
556
895
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
-
checksum = "
|
|
896
|
+
checksum = "3ed8956bd5c1f0415200516e78ff07ec9e16415ade83c056c230d7b7ea0d55b7"
|
|
558
897
|
dependencies = [
|
|
559
|
-
"
|
|
560
|
-
"
|
|
561
|
-
"
|
|
562
|
-
"futures-util",
|
|
563
|
-
"http",
|
|
564
|
-
"http-body",
|
|
565
|
-
"hyper",
|
|
566
|
-
"ipnet",
|
|
567
|
-
"libc",
|
|
568
|
-
"percent-encoding",
|
|
569
|
-
"pin-project-lite",
|
|
570
|
-
"socket2",
|
|
571
|
-
"tokio",
|
|
572
|
-
"tower-service",
|
|
573
|
-
"tracing",
|
|
898
|
+
"proc-macro2",
|
|
899
|
+
"quote",
|
|
900
|
+
"syn",
|
|
574
901
|
]
|
|
575
902
|
|
|
576
903
|
[[package]]
|
|
577
|
-
name = "
|
|
578
|
-
version = "
|
|
904
|
+
name = "equivalent"
|
|
905
|
+
version = "1.0.2"
|
|
579
906
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
|
-
checksum = "
|
|
581
|
-
dependencies = [
|
|
582
|
-
"displaydoc",
|
|
583
|
-
"potential_utf",
|
|
584
|
-
"yoke",
|
|
585
|
-
"zerofrom",
|
|
586
|
-
"zerovec",
|
|
587
|
-
]
|
|
907
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
588
908
|
|
|
589
909
|
[[package]]
|
|
590
|
-
name = "
|
|
591
|
-
version = "
|
|
910
|
+
name = "errno"
|
|
911
|
+
version = "0.3.14"
|
|
592
912
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
-
checksum = "
|
|
913
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
594
914
|
dependencies = [
|
|
595
|
-
"
|
|
596
|
-
"
|
|
597
|
-
"tinystr",
|
|
598
|
-
"writeable",
|
|
599
|
-
"zerovec",
|
|
915
|
+
"libc",
|
|
916
|
+
"windows-sys 0.61.2",
|
|
600
917
|
]
|
|
601
918
|
|
|
602
919
|
[[package]]
|
|
603
|
-
name = "
|
|
604
|
-
version = "
|
|
920
|
+
name = "fastbloom"
|
|
921
|
+
version = "0.14.1"
|
|
605
922
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
-
checksum = "
|
|
923
|
+
checksum = "4e7f34442dbe69c60fe8eaf58a8cafff81a1f278816d8ab4db255b3bef4ac3c4"
|
|
607
924
|
dependencies = [
|
|
608
|
-
"
|
|
609
|
-
"
|
|
610
|
-
"
|
|
611
|
-
"
|
|
612
|
-
"smallvec",
|
|
613
|
-
"zerovec",
|
|
925
|
+
"getrandom 0.3.4",
|
|
926
|
+
"libm",
|
|
927
|
+
"rand 0.9.2",
|
|
928
|
+
"siphasher",
|
|
614
929
|
]
|
|
615
930
|
|
|
616
931
|
[[package]]
|
|
617
|
-
name = "
|
|
618
|
-
version = "2.
|
|
932
|
+
name = "fastrand"
|
|
933
|
+
version = "2.3.0"
|
|
619
934
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
-
checksum = "
|
|
935
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
621
936
|
|
|
622
937
|
[[package]]
|
|
623
|
-
name = "
|
|
624
|
-
version = "
|
|
938
|
+
name = "fiat-crypto"
|
|
939
|
+
version = "0.3.0"
|
|
625
940
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
-
checksum = "
|
|
627
|
-
|
|
628
|
-
|
|
941
|
+
checksum = "64cd1e32ddd350061ae6edb1b082d7c54915b5c672c389143b9a63403a109f24"
|
|
942
|
+
|
|
943
|
+
[[package]]
|
|
944
|
+
name = "find-msvc-tools"
|
|
945
|
+
version = "0.1.9"
|
|
946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
947
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
948
|
+
|
|
949
|
+
[[package]]
|
|
950
|
+
name = "flate2"
|
|
951
|
+
version = "1.1.9"
|
|
952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
953
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
954
|
+
dependencies = [
|
|
955
|
+
"crc32fast",
|
|
956
|
+
"miniz_oxide",
|
|
957
|
+
]
|
|
958
|
+
|
|
959
|
+
[[package]]
|
|
960
|
+
name = "fnv"
|
|
961
|
+
version = "1.0.7"
|
|
962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
963
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
964
|
+
|
|
965
|
+
[[package]]
|
|
966
|
+
name = "foldhash"
|
|
967
|
+
version = "0.1.5"
|
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
970
|
+
|
|
971
|
+
[[package]]
|
|
972
|
+
name = "foldhash"
|
|
973
|
+
version = "0.2.0"
|
|
974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
975
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
976
|
+
|
|
977
|
+
[[package]]
|
|
978
|
+
name = "form_urlencoded"
|
|
979
|
+
version = "1.2.2"
|
|
980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
982
|
+
dependencies = [
|
|
983
|
+
"percent-encoding",
|
|
984
|
+
]
|
|
985
|
+
|
|
986
|
+
[[package]]
|
|
987
|
+
name = "futures"
|
|
988
|
+
version = "0.3.32"
|
|
989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
990
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
991
|
+
dependencies = [
|
|
992
|
+
"futures-channel",
|
|
993
|
+
"futures-core",
|
|
994
|
+
"futures-executor",
|
|
995
|
+
"futures-io",
|
|
996
|
+
"futures-sink",
|
|
997
|
+
"futures-task",
|
|
998
|
+
"futures-util",
|
|
999
|
+
]
|
|
1000
|
+
|
|
1001
|
+
[[package]]
|
|
1002
|
+
name = "futures-buffered"
|
|
1003
|
+
version = "0.2.13"
|
|
1004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
+
checksum = "4421cb78ee172b6b06080093479d3c50f058e7c81b7d577bbb8d118d551d4cd5"
|
|
1006
|
+
dependencies = [
|
|
1007
|
+
"cordyceps",
|
|
1008
|
+
"diatomic-waker",
|
|
1009
|
+
"futures-core",
|
|
1010
|
+
"pin-project-lite",
|
|
1011
|
+
"spin 0.10.0",
|
|
1012
|
+
]
|
|
1013
|
+
|
|
1014
|
+
[[package]]
|
|
1015
|
+
name = "futures-channel"
|
|
1016
|
+
version = "0.3.32"
|
|
1017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1018
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
1019
|
+
dependencies = [
|
|
1020
|
+
"futures-core",
|
|
1021
|
+
"futures-sink",
|
|
1022
|
+
]
|
|
1023
|
+
|
|
1024
|
+
[[package]]
|
|
1025
|
+
name = "futures-core"
|
|
1026
|
+
version = "0.3.32"
|
|
1027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
1029
|
+
|
|
1030
|
+
[[package]]
|
|
1031
|
+
name = "futures-executor"
|
|
1032
|
+
version = "0.3.32"
|
|
1033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
|
+
checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
|
|
1035
|
+
dependencies = [
|
|
1036
|
+
"futures-core",
|
|
1037
|
+
"futures-task",
|
|
1038
|
+
"futures-util",
|
|
1039
|
+
]
|
|
1040
|
+
|
|
1041
|
+
[[package]]
|
|
1042
|
+
name = "futures-io"
|
|
1043
|
+
version = "0.3.32"
|
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
1046
|
+
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "futures-lite"
|
|
1049
|
+
version = "2.6.1"
|
|
1050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
+
checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
|
|
1052
|
+
dependencies = [
|
|
1053
|
+
"fastrand",
|
|
1054
|
+
"futures-core",
|
|
1055
|
+
"futures-io",
|
|
1056
|
+
"parking",
|
|
1057
|
+
"pin-project-lite",
|
|
1058
|
+
]
|
|
1059
|
+
|
|
1060
|
+
[[package]]
|
|
1061
|
+
name = "futures-macro"
|
|
1062
|
+
version = "0.3.32"
|
|
1063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1064
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
1065
|
+
dependencies = [
|
|
1066
|
+
"proc-macro2",
|
|
1067
|
+
"quote",
|
|
1068
|
+
"syn",
|
|
1069
|
+
]
|
|
1070
|
+
|
|
1071
|
+
[[package]]
|
|
1072
|
+
name = "futures-sink"
|
|
1073
|
+
version = "0.3.32"
|
|
1074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1075
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
1076
|
+
|
|
1077
|
+
[[package]]
|
|
1078
|
+
name = "futures-task"
|
|
1079
|
+
version = "0.3.32"
|
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
1082
|
+
|
|
1083
|
+
[[package]]
|
|
1084
|
+
name = "futures-util"
|
|
1085
|
+
version = "0.3.32"
|
|
1086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1087
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
1088
|
+
dependencies = [
|
|
1089
|
+
"futures-channel",
|
|
1090
|
+
"futures-core",
|
|
1091
|
+
"futures-io",
|
|
1092
|
+
"futures-macro",
|
|
1093
|
+
"futures-sink",
|
|
1094
|
+
"futures-task",
|
|
1095
|
+
"memchr",
|
|
1096
|
+
"pin-project-lite",
|
|
1097
|
+
"slab",
|
|
1098
|
+
]
|
|
1099
|
+
|
|
1100
|
+
[[package]]
|
|
1101
|
+
name = "generator"
|
|
1102
|
+
version = "0.8.8"
|
|
1103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
+
checksum = "52f04ae4152da20c76fe800fa48659201d5cf627c5149ca0b707b69d7eef6cf9"
|
|
1105
|
+
dependencies = [
|
|
1106
|
+
"cc",
|
|
1107
|
+
"cfg-if",
|
|
1108
|
+
"libc",
|
|
1109
|
+
"log",
|
|
1110
|
+
"rustversion",
|
|
1111
|
+
"windows-link",
|
|
1112
|
+
"windows-result",
|
|
1113
|
+
]
|
|
1114
|
+
|
|
1115
|
+
[[package]]
|
|
1116
|
+
name = "generic-array"
|
|
1117
|
+
version = "0.14.7"
|
|
1118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1119
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1120
|
+
dependencies = [
|
|
1121
|
+
"typenum",
|
|
1122
|
+
"version_check",
|
|
1123
|
+
]
|
|
1124
|
+
|
|
1125
|
+
[[package]]
|
|
1126
|
+
name = "getrandom"
|
|
1127
|
+
version = "0.2.17"
|
|
1128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1129
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
1130
|
+
dependencies = [
|
|
1131
|
+
"cfg-if",
|
|
1132
|
+
"js-sys",
|
|
1133
|
+
"libc",
|
|
1134
|
+
"wasi",
|
|
1135
|
+
"wasm-bindgen",
|
|
1136
|
+
]
|
|
1137
|
+
|
|
1138
|
+
[[package]]
|
|
1139
|
+
name = "getrandom"
|
|
1140
|
+
version = "0.3.4"
|
|
1141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1143
|
+
dependencies = [
|
|
1144
|
+
"cfg-if",
|
|
1145
|
+
"js-sys",
|
|
1146
|
+
"libc",
|
|
1147
|
+
"r-efi 5.3.0",
|
|
1148
|
+
"wasip2",
|
|
1149
|
+
"wasm-bindgen",
|
|
1150
|
+
]
|
|
1151
|
+
|
|
1152
|
+
[[package]]
|
|
1153
|
+
name = "getrandom"
|
|
1154
|
+
version = "0.4.2"
|
|
1155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
1157
|
+
dependencies = [
|
|
1158
|
+
"cfg-if",
|
|
1159
|
+
"js-sys",
|
|
1160
|
+
"libc",
|
|
1161
|
+
"r-efi 6.0.0",
|
|
1162
|
+
"wasip2",
|
|
1163
|
+
"wasip3",
|
|
1164
|
+
"wasm-bindgen",
|
|
1165
|
+
]
|
|
1166
|
+
|
|
1167
|
+
[[package]]
|
|
1168
|
+
name = "ghash"
|
|
1169
|
+
version = "0.5.1"
|
|
1170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1171
|
+
checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
|
|
1172
|
+
dependencies = [
|
|
1173
|
+
"opaque-debug",
|
|
1174
|
+
"polyval",
|
|
1175
|
+
]
|
|
1176
|
+
|
|
1177
|
+
[[package]]
|
|
1178
|
+
name = "gloo-timers"
|
|
1179
|
+
version = "0.3.0"
|
|
1180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1181
|
+
checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
|
|
1182
|
+
dependencies = [
|
|
1183
|
+
"futures-channel",
|
|
1184
|
+
"futures-core",
|
|
1185
|
+
"js-sys",
|
|
1186
|
+
"wasm-bindgen",
|
|
1187
|
+
]
|
|
1188
|
+
|
|
1189
|
+
[[package]]
|
|
1190
|
+
name = "h2"
|
|
1191
|
+
version = "0.4.13"
|
|
1192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
|
+
checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
|
|
1194
|
+
dependencies = [
|
|
1195
|
+
"atomic-waker",
|
|
1196
|
+
"bytes",
|
|
1197
|
+
"fnv",
|
|
1198
|
+
"futures-core",
|
|
1199
|
+
"futures-sink",
|
|
1200
|
+
"http",
|
|
1201
|
+
"indexmap",
|
|
1202
|
+
"slab",
|
|
1203
|
+
"tokio",
|
|
1204
|
+
"tokio-util",
|
|
1205
|
+
"tracing",
|
|
1206
|
+
]
|
|
1207
|
+
|
|
1208
|
+
[[package]]
|
|
1209
|
+
name = "hash32"
|
|
1210
|
+
version = "0.2.1"
|
|
1211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1212
|
+
checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67"
|
|
1213
|
+
dependencies = [
|
|
1214
|
+
"byteorder",
|
|
1215
|
+
]
|
|
1216
|
+
|
|
1217
|
+
[[package]]
|
|
1218
|
+
name = "hashbrown"
|
|
1219
|
+
version = "0.15.5"
|
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1222
|
+
dependencies = [
|
|
1223
|
+
"foldhash 0.1.5",
|
|
1224
|
+
]
|
|
1225
|
+
|
|
1226
|
+
[[package]]
|
|
1227
|
+
name = "hashbrown"
|
|
1228
|
+
version = "0.16.1"
|
|
1229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1231
|
+
dependencies = [
|
|
1232
|
+
"allocator-api2",
|
|
1233
|
+
"equivalent",
|
|
1234
|
+
"foldhash 0.2.0",
|
|
1235
|
+
]
|
|
1236
|
+
|
|
1237
|
+
[[package]]
|
|
1238
|
+
name = "heapless"
|
|
1239
|
+
version = "0.7.17"
|
|
1240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1241
|
+
checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f"
|
|
1242
|
+
dependencies = [
|
|
1243
|
+
"atomic-polyfill",
|
|
1244
|
+
"hash32",
|
|
1245
|
+
"rustc_version",
|
|
1246
|
+
"serde",
|
|
1247
|
+
"spin 0.9.8",
|
|
1248
|
+
"stable_deref_trait",
|
|
1249
|
+
]
|
|
1250
|
+
|
|
1251
|
+
[[package]]
|
|
1252
|
+
name = "heck"
|
|
1253
|
+
version = "0.5.0"
|
|
1254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1256
|
+
|
|
1257
|
+
[[package]]
|
|
1258
|
+
name = "hickory-proto"
|
|
1259
|
+
version = "0.25.2"
|
|
1260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1261
|
+
checksum = "f8a6fe56c0038198998a6f217ca4e7ef3a5e51f46163bd6dd60b5c71ca6c6502"
|
|
1262
|
+
dependencies = [
|
|
1263
|
+
"async-trait",
|
|
1264
|
+
"bytes",
|
|
1265
|
+
"cfg-if",
|
|
1266
|
+
"data-encoding",
|
|
1267
|
+
"enum-as-inner",
|
|
1268
|
+
"futures-channel",
|
|
1269
|
+
"futures-io",
|
|
1270
|
+
"futures-util",
|
|
1271
|
+
"h2",
|
|
1272
|
+
"http",
|
|
1273
|
+
"idna",
|
|
1274
|
+
"ipnet",
|
|
1275
|
+
"once_cell",
|
|
1276
|
+
"rand 0.9.2",
|
|
1277
|
+
"ring",
|
|
1278
|
+
"rustls",
|
|
1279
|
+
"thiserror 2.0.18",
|
|
1280
|
+
"tinyvec",
|
|
1281
|
+
"tokio",
|
|
1282
|
+
"tokio-rustls",
|
|
1283
|
+
"tracing",
|
|
1284
|
+
"url",
|
|
1285
|
+
]
|
|
1286
|
+
|
|
1287
|
+
[[package]]
|
|
1288
|
+
name = "hickory-resolver"
|
|
1289
|
+
version = "0.25.2"
|
|
1290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
+
checksum = "dc62a9a99b0bfb44d2ab95a7208ac952d31060efc16241c87eaf36406fecf87a"
|
|
1292
|
+
dependencies = [
|
|
1293
|
+
"cfg-if",
|
|
1294
|
+
"futures-util",
|
|
1295
|
+
"hickory-proto",
|
|
1296
|
+
"ipconfig",
|
|
1297
|
+
"moka",
|
|
1298
|
+
"once_cell",
|
|
1299
|
+
"parking_lot",
|
|
1300
|
+
"rand 0.9.2",
|
|
1301
|
+
"resolv-conf",
|
|
1302
|
+
"rustls",
|
|
1303
|
+
"smallvec",
|
|
1304
|
+
"thiserror 2.0.18",
|
|
1305
|
+
"tokio",
|
|
1306
|
+
"tokio-rustls",
|
|
1307
|
+
"tracing",
|
|
1308
|
+
]
|
|
1309
|
+
|
|
1310
|
+
[[package]]
|
|
1311
|
+
name = "hostname"
|
|
1312
|
+
version = "0.4.2"
|
|
1313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1314
|
+
checksum = "617aaa3557aef3810a6369d0a99fac8a080891b68bd9f9812a1eeda0c0730cbd"
|
|
1315
|
+
dependencies = [
|
|
1316
|
+
"cfg-if",
|
|
1317
|
+
"libc",
|
|
1318
|
+
"windows-link",
|
|
1319
|
+
]
|
|
1320
|
+
|
|
1321
|
+
[[package]]
|
|
1322
|
+
name = "http"
|
|
1323
|
+
version = "1.4.0"
|
|
1324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
1326
|
+
dependencies = [
|
|
1327
|
+
"bytes",
|
|
1328
|
+
"itoa",
|
|
1329
|
+
]
|
|
1330
|
+
|
|
1331
|
+
[[package]]
|
|
1332
|
+
name = "http-body"
|
|
1333
|
+
version = "1.0.1"
|
|
1334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1335
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1336
|
+
dependencies = [
|
|
1337
|
+
"bytes",
|
|
1338
|
+
"http",
|
|
1339
|
+
]
|
|
1340
|
+
|
|
1341
|
+
[[package]]
|
|
1342
|
+
name = "http-body-util"
|
|
1343
|
+
version = "0.1.3"
|
|
1344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1345
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
1346
|
+
dependencies = [
|
|
1347
|
+
"bytes",
|
|
1348
|
+
"futures-core",
|
|
1349
|
+
"http",
|
|
1350
|
+
"http-body",
|
|
1351
|
+
"pin-project-lite",
|
|
1352
|
+
]
|
|
1353
|
+
|
|
1354
|
+
[[package]]
|
|
1355
|
+
name = "httparse"
|
|
1356
|
+
version = "1.10.1"
|
|
1357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1358
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1359
|
+
|
|
1360
|
+
[[package]]
|
|
1361
|
+
name = "httpdate"
|
|
1362
|
+
version = "1.0.3"
|
|
1363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1364
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
1365
|
+
|
|
1366
|
+
[[package]]
|
|
1367
|
+
name = "hybrid-array"
|
|
1368
|
+
version = "0.4.10"
|
|
1369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1370
|
+
checksum = "3944cf8cf766b40e2a1a333ee5e9b563f854d5fa49d6a8ca2764e97c6eddb214"
|
|
1371
|
+
dependencies = [
|
|
1372
|
+
"typenum",
|
|
1373
|
+
]
|
|
1374
|
+
|
|
1375
|
+
[[package]]
|
|
1376
|
+
name = "hyper"
|
|
1377
|
+
version = "1.8.1"
|
|
1378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1379
|
+
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
|
|
1380
|
+
dependencies = [
|
|
1381
|
+
"atomic-waker",
|
|
1382
|
+
"bytes",
|
|
1383
|
+
"futures-channel",
|
|
1384
|
+
"futures-core",
|
|
1385
|
+
"h2",
|
|
1386
|
+
"http",
|
|
1387
|
+
"http-body",
|
|
1388
|
+
"httparse",
|
|
1389
|
+
"httpdate",
|
|
1390
|
+
"itoa",
|
|
1391
|
+
"pin-project-lite",
|
|
1392
|
+
"pin-utils",
|
|
1393
|
+
"smallvec",
|
|
1394
|
+
"tokio",
|
|
1395
|
+
"want",
|
|
1396
|
+
]
|
|
1397
|
+
|
|
1398
|
+
[[package]]
|
|
1399
|
+
name = "hyper-rustls"
|
|
1400
|
+
version = "0.27.7"
|
|
1401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1402
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
1403
|
+
dependencies = [
|
|
1404
|
+
"http",
|
|
1405
|
+
"hyper",
|
|
1406
|
+
"hyper-util",
|
|
1407
|
+
"rustls",
|
|
1408
|
+
"rustls-pki-types",
|
|
1409
|
+
"tokio",
|
|
1410
|
+
"tokio-rustls",
|
|
1411
|
+
"tower-service",
|
|
1412
|
+
"webpki-roots 1.0.6",
|
|
1413
|
+
]
|
|
1414
|
+
|
|
1415
|
+
[[package]]
|
|
1416
|
+
name = "hyper-util"
|
|
1417
|
+
version = "0.1.20"
|
|
1418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1419
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
1420
|
+
dependencies = [
|
|
1421
|
+
"base64",
|
|
1422
|
+
"bytes",
|
|
1423
|
+
"futures-channel",
|
|
1424
|
+
"futures-util",
|
|
1425
|
+
"http",
|
|
1426
|
+
"http-body",
|
|
1427
|
+
"hyper",
|
|
1428
|
+
"ipnet",
|
|
1429
|
+
"libc",
|
|
1430
|
+
"percent-encoding",
|
|
1431
|
+
"pin-project-lite",
|
|
1432
|
+
"socket2",
|
|
1433
|
+
"tokio",
|
|
1434
|
+
"tower-service",
|
|
1435
|
+
"tracing",
|
|
1436
|
+
]
|
|
1437
|
+
|
|
1438
|
+
[[package]]
|
|
1439
|
+
name = "iana-time-zone"
|
|
1440
|
+
version = "0.1.65"
|
|
1441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1442
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
1443
|
+
dependencies = [
|
|
1444
|
+
"android_system_properties",
|
|
1445
|
+
"core-foundation-sys",
|
|
1446
|
+
"iana-time-zone-haiku",
|
|
1447
|
+
"js-sys",
|
|
1448
|
+
"log",
|
|
1449
|
+
"wasm-bindgen",
|
|
1450
|
+
"windows-core",
|
|
1451
|
+
]
|
|
1452
|
+
|
|
1453
|
+
[[package]]
|
|
1454
|
+
name = "iana-time-zone-haiku"
|
|
1455
|
+
version = "0.1.2"
|
|
1456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1457
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1458
|
+
dependencies = [
|
|
1459
|
+
"cc",
|
|
1460
|
+
]
|
|
1461
|
+
|
|
1462
|
+
[[package]]
|
|
1463
|
+
name = "icu_collections"
|
|
1464
|
+
version = "2.1.1"
|
|
1465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
1467
|
+
dependencies = [
|
|
1468
|
+
"displaydoc",
|
|
1469
|
+
"potential_utf",
|
|
1470
|
+
"yoke",
|
|
1471
|
+
"zerofrom",
|
|
1472
|
+
"zerovec",
|
|
1473
|
+
]
|
|
1474
|
+
|
|
1475
|
+
[[package]]
|
|
1476
|
+
name = "icu_locale_core"
|
|
1477
|
+
version = "2.1.1"
|
|
1478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1479
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
1480
|
+
dependencies = [
|
|
1481
|
+
"displaydoc",
|
|
1482
|
+
"litemap",
|
|
1483
|
+
"tinystr",
|
|
1484
|
+
"writeable",
|
|
1485
|
+
"zerovec",
|
|
1486
|
+
]
|
|
1487
|
+
|
|
1488
|
+
[[package]]
|
|
1489
|
+
name = "icu_normalizer"
|
|
1490
|
+
version = "2.1.1"
|
|
1491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1492
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
1493
|
+
dependencies = [
|
|
1494
|
+
"icu_collections",
|
|
1495
|
+
"icu_normalizer_data",
|
|
1496
|
+
"icu_properties",
|
|
1497
|
+
"icu_provider",
|
|
1498
|
+
"smallvec",
|
|
1499
|
+
"zerovec",
|
|
1500
|
+
]
|
|
1501
|
+
|
|
1502
|
+
[[package]]
|
|
1503
|
+
name = "icu_normalizer_data"
|
|
1504
|
+
version = "2.1.1"
|
|
1505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1506
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
1507
|
+
|
|
1508
|
+
[[package]]
|
|
1509
|
+
name = "icu_properties"
|
|
1510
|
+
version = "2.1.2"
|
|
1511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1512
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
1513
|
+
dependencies = [
|
|
1514
|
+
"icu_collections",
|
|
629
1515
|
"icu_locale_core",
|
|
630
1516
|
"icu_properties_data",
|
|
631
1517
|
"icu_provider",
|
|
@@ -654,6 +1540,24 @@ dependencies = [
|
|
|
654
1540
|
"zerovec",
|
|
655
1541
|
]
|
|
656
1542
|
|
|
1543
|
+
[[package]]
|
|
1544
|
+
name = "id-arena"
|
|
1545
|
+
version = "2.3.0"
|
|
1546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1547
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
1548
|
+
|
|
1549
|
+
[[package]]
|
|
1550
|
+
name = "ident_case"
|
|
1551
|
+
version = "1.0.1"
|
|
1552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1553
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1554
|
+
|
|
1555
|
+
[[package]]
|
|
1556
|
+
name = "identity-hash"
|
|
1557
|
+
version = "0.1.0"
|
|
1558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1559
|
+
checksum = "dfdd7caa900436d8f13b2346fe10257e0c05c1f1f9e351f4f5d57c03bd5f45da"
|
|
1560
|
+
|
|
657
1561
|
[[package]]
|
|
658
1562
|
name = "idna"
|
|
659
1563
|
version = "1.1.0"
|
|
@@ -675,6 +1579,27 @@ dependencies = [
|
|
|
675
1579
|
"icu_properties",
|
|
676
1580
|
]
|
|
677
1581
|
|
|
1582
|
+
[[package]]
|
|
1583
|
+
name = "igd-next"
|
|
1584
|
+
version = "0.16.2"
|
|
1585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1586
|
+
checksum = "516893339c97f6011282d5825ac94fc1c7aad5cad26bdc2d0cee068c0bf97f97"
|
|
1587
|
+
dependencies = [
|
|
1588
|
+
"async-trait",
|
|
1589
|
+
"attohttpc",
|
|
1590
|
+
"bytes",
|
|
1591
|
+
"futures",
|
|
1592
|
+
"http",
|
|
1593
|
+
"http-body-util",
|
|
1594
|
+
"hyper",
|
|
1595
|
+
"hyper-util",
|
|
1596
|
+
"log",
|
|
1597
|
+
"rand 0.9.2",
|
|
1598
|
+
"tokio",
|
|
1599
|
+
"url",
|
|
1600
|
+
"xmltree",
|
|
1601
|
+
]
|
|
1602
|
+
|
|
678
1603
|
[[package]]
|
|
679
1604
|
name = "indexmap"
|
|
680
1605
|
version = "2.13.0"
|
|
@@ -682,7 +1607,31 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
682
1607
|
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
683
1608
|
dependencies = [
|
|
684
1609
|
"equivalent",
|
|
685
|
-
"hashbrown",
|
|
1610
|
+
"hashbrown 0.16.1",
|
|
1611
|
+
"serde",
|
|
1612
|
+
"serde_core",
|
|
1613
|
+
]
|
|
1614
|
+
|
|
1615
|
+
[[package]]
|
|
1616
|
+
name = "inout"
|
|
1617
|
+
version = "0.1.4"
|
|
1618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
1620
|
+
dependencies = [
|
|
1621
|
+
"generic-array",
|
|
1622
|
+
]
|
|
1623
|
+
|
|
1624
|
+
[[package]]
|
|
1625
|
+
name = "ipconfig"
|
|
1626
|
+
version = "0.3.4"
|
|
1627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1628
|
+
checksum = "4d40460c0ce33d6ce4b0630ad68ff63d6661961c48b6dba35e5a4d81cfb48222"
|
|
1629
|
+
dependencies = [
|
|
1630
|
+
"socket2",
|
|
1631
|
+
"widestring",
|
|
1632
|
+
"windows-registry",
|
|
1633
|
+
"windows-result",
|
|
1634
|
+
"windows-sys 0.61.2",
|
|
686
1635
|
]
|
|
687
1636
|
|
|
688
1637
|
[[package]]
|
|
@@ -701,6 +1650,154 @@ dependencies = [
|
|
|
701
1650
|
"serde",
|
|
702
1651
|
]
|
|
703
1652
|
|
|
1653
|
+
[[package]]
|
|
1654
|
+
name = "iroh"
|
|
1655
|
+
version = "0.97.0"
|
|
1656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1657
|
+
checksum = "feb56e7e4b0ec7fba7efa6a236b016a52b5d927d50244aceb9e20566159b1a32"
|
|
1658
|
+
dependencies = [
|
|
1659
|
+
"backon",
|
|
1660
|
+
"bytes",
|
|
1661
|
+
"cfg_aliases",
|
|
1662
|
+
"data-encoding",
|
|
1663
|
+
"derive_more",
|
|
1664
|
+
"ed25519-dalek",
|
|
1665
|
+
"futures-util",
|
|
1666
|
+
"getrandom 0.3.4",
|
|
1667
|
+
"hickory-resolver",
|
|
1668
|
+
"http",
|
|
1669
|
+
"ipnet",
|
|
1670
|
+
"iroh-base",
|
|
1671
|
+
"iroh-metrics",
|
|
1672
|
+
"iroh-relay",
|
|
1673
|
+
"n0-error",
|
|
1674
|
+
"n0-future",
|
|
1675
|
+
"n0-watcher",
|
|
1676
|
+
"netwatch",
|
|
1677
|
+
"noq",
|
|
1678
|
+
"noq-proto",
|
|
1679
|
+
"noq-udp",
|
|
1680
|
+
"papaya",
|
|
1681
|
+
"pin-project",
|
|
1682
|
+
"pkarr",
|
|
1683
|
+
"pkcs8",
|
|
1684
|
+
"portable-atomic",
|
|
1685
|
+
"portmapper",
|
|
1686
|
+
"rand 0.9.2",
|
|
1687
|
+
"reqwest",
|
|
1688
|
+
"rustc-hash",
|
|
1689
|
+
"rustls",
|
|
1690
|
+
"rustls-pki-types",
|
|
1691
|
+
"rustls-webpki",
|
|
1692
|
+
"serde",
|
|
1693
|
+
"smallvec",
|
|
1694
|
+
"strum",
|
|
1695
|
+
"sync_wrapper",
|
|
1696
|
+
"time",
|
|
1697
|
+
"tokio",
|
|
1698
|
+
"tokio-stream",
|
|
1699
|
+
"tokio-util",
|
|
1700
|
+
"tracing",
|
|
1701
|
+
"url",
|
|
1702
|
+
"wasm-bindgen-futures",
|
|
1703
|
+
"webpki-roots 1.0.6",
|
|
1704
|
+
]
|
|
1705
|
+
|
|
1706
|
+
[[package]]
|
|
1707
|
+
name = "iroh-base"
|
|
1708
|
+
version = "0.97.0"
|
|
1709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
+
checksum = "55a354e3396b62c14717ee807dfee9a7f43f6dad47e4ac0fd1d49f1ffad14ef0"
|
|
1711
|
+
dependencies = [
|
|
1712
|
+
"curve25519-dalek",
|
|
1713
|
+
"data-encoding",
|
|
1714
|
+
"derive_more",
|
|
1715
|
+
"digest 0.11.0-rc.10",
|
|
1716
|
+
"ed25519-dalek",
|
|
1717
|
+
"n0-error",
|
|
1718
|
+
"rand_core 0.9.5",
|
|
1719
|
+
"serde",
|
|
1720
|
+
"sha2 0.11.0-rc.2",
|
|
1721
|
+
"url",
|
|
1722
|
+
"zeroize",
|
|
1723
|
+
"zeroize_derive",
|
|
1724
|
+
]
|
|
1725
|
+
|
|
1726
|
+
[[package]]
|
|
1727
|
+
name = "iroh-metrics"
|
|
1728
|
+
version = "0.38.3"
|
|
1729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1730
|
+
checksum = "761b45ba046134b11eb3e432fa501616b45c4bf3a30c21717578bc07aa6461dd"
|
|
1731
|
+
dependencies = [
|
|
1732
|
+
"iroh-metrics-derive",
|
|
1733
|
+
"itoa",
|
|
1734
|
+
"n0-error",
|
|
1735
|
+
"portable-atomic",
|
|
1736
|
+
"postcard",
|
|
1737
|
+
"ryu",
|
|
1738
|
+
"serde",
|
|
1739
|
+
"tracing",
|
|
1740
|
+
]
|
|
1741
|
+
|
|
1742
|
+
[[package]]
|
|
1743
|
+
name = "iroh-metrics-derive"
|
|
1744
|
+
version = "0.4.1"
|
|
1745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1746
|
+
checksum = "cab063c2bfd6c3d5a33a913d4fdb5252f140db29ec67c704f20f3da7e8f92dbf"
|
|
1747
|
+
dependencies = [
|
|
1748
|
+
"heck",
|
|
1749
|
+
"proc-macro2",
|
|
1750
|
+
"quote",
|
|
1751
|
+
"syn",
|
|
1752
|
+
]
|
|
1753
|
+
|
|
1754
|
+
[[package]]
|
|
1755
|
+
name = "iroh-relay"
|
|
1756
|
+
version = "0.97.0"
|
|
1757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1758
|
+
checksum = "d786b260cadfe82ae0b6a9e372e8c78949096a06c857d1c3521355cefced0f55"
|
|
1759
|
+
dependencies = [
|
|
1760
|
+
"blake3",
|
|
1761
|
+
"bytes",
|
|
1762
|
+
"cfg_aliases",
|
|
1763
|
+
"data-encoding",
|
|
1764
|
+
"derive_more",
|
|
1765
|
+
"getrandom 0.3.4",
|
|
1766
|
+
"hickory-resolver",
|
|
1767
|
+
"http",
|
|
1768
|
+
"http-body-util",
|
|
1769
|
+
"hyper",
|
|
1770
|
+
"hyper-util",
|
|
1771
|
+
"iroh-base",
|
|
1772
|
+
"iroh-metrics",
|
|
1773
|
+
"lru",
|
|
1774
|
+
"n0-error",
|
|
1775
|
+
"n0-future",
|
|
1776
|
+
"noq",
|
|
1777
|
+
"noq-proto",
|
|
1778
|
+
"num_enum",
|
|
1779
|
+
"pin-project",
|
|
1780
|
+
"pkarr",
|
|
1781
|
+
"postcard",
|
|
1782
|
+
"rand 0.9.2",
|
|
1783
|
+
"reqwest",
|
|
1784
|
+
"rustls",
|
|
1785
|
+
"rustls-pki-types",
|
|
1786
|
+
"serde",
|
|
1787
|
+
"serde_bytes",
|
|
1788
|
+
"strum",
|
|
1789
|
+
"tokio",
|
|
1790
|
+
"tokio-rustls",
|
|
1791
|
+
"tokio-util",
|
|
1792
|
+
"tokio-websockets",
|
|
1793
|
+
"tracing",
|
|
1794
|
+
"url",
|
|
1795
|
+
"vergen-gitcl",
|
|
1796
|
+
"webpki-roots 1.0.6",
|
|
1797
|
+
"ws_stream_wasm",
|
|
1798
|
+
"z32",
|
|
1799
|
+
]
|
|
1800
|
+
|
|
704
1801
|
[[package]]
|
|
705
1802
|
name = "is_terminal_polyfill"
|
|
706
1803
|
version = "1.70.2"
|
|
@@ -756,12 +1853,30 @@ dependencies = [
|
|
|
756
1853
|
"serde",
|
|
757
1854
|
]
|
|
758
1855
|
|
|
1856
|
+
[[package]]
|
|
1857
|
+
name = "lazy_static"
|
|
1858
|
+
version = "1.5.0"
|
|
1859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1860
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1861
|
+
|
|
1862
|
+
[[package]]
|
|
1863
|
+
name = "leb128fmt"
|
|
1864
|
+
version = "0.1.0"
|
|
1865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1866
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1867
|
+
|
|
759
1868
|
[[package]]
|
|
760
1869
|
name = "libc"
|
|
761
1870
|
version = "0.2.182"
|
|
762
1871
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
763
1872
|
checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
|
|
764
1873
|
|
|
1874
|
+
[[package]]
|
|
1875
|
+
name = "libm"
|
|
1876
|
+
version = "0.2.16"
|
|
1877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1878
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
1879
|
+
|
|
765
1880
|
[[package]]
|
|
766
1881
|
name = "libredox"
|
|
767
1882
|
version = "0.1.14"
|
|
@@ -777,18 +1892,76 @@ version = "0.8.1"
|
|
|
777
1892
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
778
1893
|
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
779
1894
|
|
|
1895
|
+
[[package]]
|
|
1896
|
+
name = "litrs"
|
|
1897
|
+
version = "1.0.0"
|
|
1898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1899
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
1900
|
+
|
|
1901
|
+
[[package]]
|
|
1902
|
+
name = "lock_api"
|
|
1903
|
+
version = "0.4.14"
|
|
1904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1905
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1906
|
+
dependencies = [
|
|
1907
|
+
"scopeguard",
|
|
1908
|
+
]
|
|
1909
|
+
|
|
780
1910
|
[[package]]
|
|
781
1911
|
name = "log"
|
|
782
1912
|
version = "0.4.29"
|
|
783
1913
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
1914
|
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
785
1915
|
|
|
1916
|
+
[[package]]
|
|
1917
|
+
name = "loom"
|
|
1918
|
+
version = "0.7.2"
|
|
1919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1920
|
+
checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
|
|
1921
|
+
dependencies = [
|
|
1922
|
+
"cfg-if",
|
|
1923
|
+
"generator",
|
|
1924
|
+
"scoped-tls",
|
|
1925
|
+
"tracing",
|
|
1926
|
+
"tracing-subscriber",
|
|
1927
|
+
]
|
|
1928
|
+
|
|
1929
|
+
[[package]]
|
|
1930
|
+
name = "lru"
|
|
1931
|
+
version = "0.16.3"
|
|
1932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1933
|
+
checksum = "a1dc47f592c06f33f8e3aea9591776ec7c9f9e4124778ff8a3c3b87159f7e593"
|
|
1934
|
+
dependencies = [
|
|
1935
|
+
"hashbrown 0.16.1",
|
|
1936
|
+
]
|
|
1937
|
+
|
|
786
1938
|
[[package]]
|
|
787
1939
|
name = "lru-slab"
|
|
788
1940
|
version = "0.1.2"
|
|
789
1941
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
1942
|
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
791
1943
|
|
|
1944
|
+
[[package]]
|
|
1945
|
+
name = "mac-addr"
|
|
1946
|
+
version = "0.3.0"
|
|
1947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1948
|
+
checksum = "d3d25b0e0b648a86960ac23b7ad4abb9717601dec6f66c165f5b037f3f03065f"
|
|
1949
|
+
|
|
1950
|
+
[[package]]
|
|
1951
|
+
name = "matchers"
|
|
1952
|
+
version = "0.2.0"
|
|
1953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1954
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
1955
|
+
dependencies = [
|
|
1956
|
+
"regex-automata",
|
|
1957
|
+
]
|
|
1958
|
+
|
|
1959
|
+
[[package]]
|
|
1960
|
+
name = "matchit"
|
|
1961
|
+
version = "0.7.3"
|
|
1962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1963
|
+
checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
|
|
1964
|
+
|
|
792
1965
|
[[package]]
|
|
793
1966
|
name = "memchr"
|
|
794
1967
|
version = "2.8.0"
|
|
@@ -796,31 +1969,344 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
796
1969
|
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
797
1970
|
|
|
798
1971
|
[[package]]
|
|
799
|
-
name = "
|
|
800
|
-
version = "0.
|
|
1972
|
+
name = "mime"
|
|
1973
|
+
version = "0.3.17"
|
|
1974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1975
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1976
|
+
|
|
1977
|
+
[[package]]
|
|
1978
|
+
name = "miniz_oxide"
|
|
1979
|
+
version = "0.8.9"
|
|
1980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1981
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1982
|
+
dependencies = [
|
|
1983
|
+
"adler2",
|
|
1984
|
+
"simd-adler32",
|
|
1985
|
+
]
|
|
1986
|
+
|
|
1987
|
+
[[package]]
|
|
1988
|
+
name = "mio"
|
|
1989
|
+
version = "1.1.1"
|
|
1990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1991
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
1992
|
+
dependencies = [
|
|
1993
|
+
"libc",
|
|
1994
|
+
"wasi",
|
|
1995
|
+
"windows-sys 0.61.2",
|
|
1996
|
+
]
|
|
1997
|
+
|
|
1998
|
+
[[package]]
|
|
1999
|
+
name = "moka"
|
|
2000
|
+
version = "0.12.15"
|
|
2001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2002
|
+
checksum = "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046"
|
|
2003
|
+
dependencies = [
|
|
2004
|
+
"crossbeam-channel",
|
|
2005
|
+
"crossbeam-epoch",
|
|
2006
|
+
"crossbeam-utils",
|
|
2007
|
+
"equivalent",
|
|
2008
|
+
"parking_lot",
|
|
2009
|
+
"portable-atomic",
|
|
2010
|
+
"smallvec",
|
|
2011
|
+
"tagptr",
|
|
2012
|
+
"uuid",
|
|
2013
|
+
]
|
|
2014
|
+
|
|
2015
|
+
[[package]]
|
|
2016
|
+
name = "n0-error"
|
|
2017
|
+
version = "0.1.3"
|
|
2018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2019
|
+
checksum = "af4782b4baf92d686d161c15460c83d16ebcfd215918763903e9619842665cae"
|
|
2020
|
+
dependencies = [
|
|
2021
|
+
"n0-error-macros",
|
|
2022
|
+
"spez",
|
|
2023
|
+
]
|
|
2024
|
+
|
|
2025
|
+
[[package]]
|
|
2026
|
+
name = "n0-error-macros"
|
|
2027
|
+
version = "0.1.3"
|
|
2028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2029
|
+
checksum = "03755949235714b2b307e5ae89dd8c1c2531fb127d9b8b7b4adf9c876cd3ed18"
|
|
2030
|
+
dependencies = [
|
|
2031
|
+
"proc-macro2",
|
|
2032
|
+
"quote",
|
|
2033
|
+
"syn",
|
|
2034
|
+
]
|
|
2035
|
+
|
|
2036
|
+
[[package]]
|
|
2037
|
+
name = "n0-future"
|
|
2038
|
+
version = "0.3.2"
|
|
2039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2040
|
+
checksum = "e2ab99dfb861450e68853d34ae665243a88b8c493d01ba957321a1e9b2312bbe"
|
|
2041
|
+
dependencies = [
|
|
2042
|
+
"cfg_aliases",
|
|
2043
|
+
"derive_more",
|
|
2044
|
+
"futures-buffered",
|
|
2045
|
+
"futures-lite",
|
|
2046
|
+
"futures-util",
|
|
2047
|
+
"js-sys",
|
|
2048
|
+
"pin-project",
|
|
2049
|
+
"send_wrapper",
|
|
2050
|
+
"tokio",
|
|
2051
|
+
"tokio-util",
|
|
2052
|
+
"wasm-bindgen",
|
|
2053
|
+
"wasm-bindgen-futures",
|
|
2054
|
+
"web-time",
|
|
2055
|
+
]
|
|
2056
|
+
|
|
2057
|
+
[[package]]
|
|
2058
|
+
name = "n0-watcher"
|
|
2059
|
+
version = "0.6.1"
|
|
2060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2061
|
+
checksum = "38795f7932e6e9d1c6e989270ef5b3ff24ebb910e2c9d4bed2d28d8bae3007dc"
|
|
2062
|
+
dependencies = [
|
|
2063
|
+
"derive_more",
|
|
2064
|
+
"n0-error",
|
|
2065
|
+
"n0-future",
|
|
2066
|
+
]
|
|
2067
|
+
|
|
2068
|
+
[[package]]
|
|
2069
|
+
name = "ndk-context"
|
|
2070
|
+
version = "0.1.1"
|
|
2071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2072
|
+
checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
|
|
2073
|
+
|
|
2074
|
+
[[package]]
|
|
2075
|
+
name = "netdev"
|
|
2076
|
+
version = "0.40.1"
|
|
2077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2078
|
+
checksum = "1b0a0096d9613ee878dba89bbe595f079d373e3f1960d882e4f2f78ff9c30a0a"
|
|
2079
|
+
dependencies = [
|
|
2080
|
+
"block2",
|
|
2081
|
+
"dispatch2",
|
|
2082
|
+
"dlopen2",
|
|
2083
|
+
"ipnet",
|
|
2084
|
+
"libc",
|
|
2085
|
+
"mac-addr",
|
|
2086
|
+
"netlink-packet-core",
|
|
2087
|
+
"netlink-packet-route",
|
|
2088
|
+
"netlink-sys",
|
|
2089
|
+
"objc2-core-foundation",
|
|
2090
|
+
"objc2-system-configuration",
|
|
2091
|
+
"once_cell",
|
|
2092
|
+
"plist",
|
|
2093
|
+
"windows-sys 0.59.0",
|
|
2094
|
+
]
|
|
2095
|
+
|
|
2096
|
+
[[package]]
|
|
2097
|
+
name = "netlink-packet-core"
|
|
2098
|
+
version = "0.8.1"
|
|
2099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2100
|
+
checksum = "3463cbb78394cb0141e2c926b93fc2197e473394b761986eca3b9da2c63ae0f4"
|
|
2101
|
+
dependencies = [
|
|
2102
|
+
"paste",
|
|
2103
|
+
]
|
|
2104
|
+
|
|
2105
|
+
[[package]]
|
|
2106
|
+
name = "netlink-packet-route"
|
|
2107
|
+
version = "0.29.0"
|
|
2108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2109
|
+
checksum = "df9854ea6ad14e3f4698a7f03b65bce0833dd2d81d594a0e4a984170537146b6"
|
|
2110
|
+
dependencies = [
|
|
2111
|
+
"bitflags",
|
|
2112
|
+
"libc",
|
|
2113
|
+
"log",
|
|
2114
|
+
"netlink-packet-core",
|
|
2115
|
+
]
|
|
2116
|
+
|
|
2117
|
+
[[package]]
|
|
2118
|
+
name = "netlink-proto"
|
|
2119
|
+
version = "0.12.0"
|
|
2120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2121
|
+
checksum = "b65d130ee111430e47eed7896ea43ca693c387f097dd97376bffafbf25812128"
|
|
2122
|
+
dependencies = [
|
|
2123
|
+
"bytes",
|
|
2124
|
+
"futures",
|
|
2125
|
+
"log",
|
|
2126
|
+
"netlink-packet-core",
|
|
2127
|
+
"netlink-sys",
|
|
2128
|
+
"thiserror 2.0.18",
|
|
2129
|
+
]
|
|
2130
|
+
|
|
2131
|
+
[[package]]
|
|
2132
|
+
name = "netlink-sys"
|
|
2133
|
+
version = "0.8.8"
|
|
2134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2135
|
+
checksum = "cd6c30ed10fa69cc491d491b85cc971f6bdeb8e7367b7cde2ee6cc878d583fae"
|
|
2136
|
+
dependencies = [
|
|
2137
|
+
"bytes",
|
|
2138
|
+
"futures-util",
|
|
2139
|
+
"libc",
|
|
2140
|
+
"log",
|
|
2141
|
+
"tokio",
|
|
2142
|
+
]
|
|
2143
|
+
|
|
2144
|
+
[[package]]
|
|
2145
|
+
name = "netwatch"
|
|
2146
|
+
version = "0.15.0"
|
|
2147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2148
|
+
checksum = "3b1b27babe89ef9f2237bc6c028bea24fa84163a1b6f8f17ff93573ebd7d861f"
|
|
2149
|
+
dependencies = [
|
|
2150
|
+
"atomic-waker",
|
|
2151
|
+
"bytes",
|
|
2152
|
+
"cfg_aliases",
|
|
2153
|
+
"derive_more",
|
|
2154
|
+
"js-sys",
|
|
2155
|
+
"libc",
|
|
2156
|
+
"n0-error",
|
|
2157
|
+
"n0-future",
|
|
2158
|
+
"n0-watcher",
|
|
2159
|
+
"netdev",
|
|
2160
|
+
"netlink-packet-core",
|
|
2161
|
+
"netlink-packet-route",
|
|
2162
|
+
"netlink-proto",
|
|
2163
|
+
"netlink-sys",
|
|
2164
|
+
"noq-udp",
|
|
2165
|
+
"objc2-core-foundation",
|
|
2166
|
+
"objc2-system-configuration",
|
|
2167
|
+
"pin-project-lite",
|
|
2168
|
+
"serde",
|
|
2169
|
+
"socket2",
|
|
2170
|
+
"time",
|
|
2171
|
+
"tokio",
|
|
2172
|
+
"tokio-util",
|
|
2173
|
+
"tracing",
|
|
2174
|
+
"web-sys",
|
|
2175
|
+
"windows",
|
|
2176
|
+
"windows-result",
|
|
2177
|
+
"wmi",
|
|
2178
|
+
]
|
|
2179
|
+
|
|
2180
|
+
[[package]]
|
|
2181
|
+
name = "noq"
|
|
2182
|
+
version = "0.17.0"
|
|
2183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2184
|
+
checksum = "8df966fb44ac763bc86da97fa6c811c54ae82ef656575949f93c6dae0c9f09bf"
|
|
2185
|
+
dependencies = [
|
|
2186
|
+
"bytes",
|
|
2187
|
+
"cfg_aliases",
|
|
2188
|
+
"noq-proto",
|
|
2189
|
+
"noq-udp",
|
|
2190
|
+
"pin-project-lite",
|
|
2191
|
+
"rustc-hash",
|
|
2192
|
+
"rustls",
|
|
2193
|
+
"socket2",
|
|
2194
|
+
"thiserror 2.0.18",
|
|
2195
|
+
"tokio",
|
|
2196
|
+
"tokio-stream",
|
|
2197
|
+
"tracing",
|
|
2198
|
+
"web-time",
|
|
2199
|
+
]
|
|
2200
|
+
|
|
2201
|
+
[[package]]
|
|
2202
|
+
name = "noq-proto"
|
|
2203
|
+
version = "0.16.0"
|
|
2204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2205
|
+
checksum = "5c61b72abd670eebc05b5cf720e077b04a3ef3354bc7bc19f1c3524cb424db7b"
|
|
2206
|
+
dependencies = [
|
|
2207
|
+
"aes-gcm",
|
|
2208
|
+
"bytes",
|
|
2209
|
+
"derive_more",
|
|
2210
|
+
"enum-assoc",
|
|
2211
|
+
"fastbloom",
|
|
2212
|
+
"getrandom 0.3.4",
|
|
2213
|
+
"identity-hash",
|
|
2214
|
+
"lru-slab",
|
|
2215
|
+
"rand 0.9.2",
|
|
2216
|
+
"ring",
|
|
2217
|
+
"rustc-hash",
|
|
2218
|
+
"rustls",
|
|
2219
|
+
"rustls-pki-types",
|
|
2220
|
+
"slab",
|
|
2221
|
+
"sorted-index-buffer",
|
|
2222
|
+
"thiserror 2.0.18",
|
|
2223
|
+
"tinyvec",
|
|
2224
|
+
"tracing",
|
|
2225
|
+
"web-time",
|
|
2226
|
+
]
|
|
2227
|
+
|
|
2228
|
+
[[package]]
|
|
2229
|
+
name = "noq-udp"
|
|
2230
|
+
version = "0.9.0"
|
|
2231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2232
|
+
checksum = "bb9be4fedd6b98f3ba82ccd3506f4d0219fb723c3f97c67e12fe1494aa020e44"
|
|
2233
|
+
dependencies = [
|
|
2234
|
+
"cfg_aliases",
|
|
2235
|
+
"libc",
|
|
2236
|
+
"socket2",
|
|
2237
|
+
"tracing",
|
|
2238
|
+
"windows-sys 0.61.2",
|
|
2239
|
+
]
|
|
2240
|
+
|
|
2241
|
+
[[package]]
|
|
2242
|
+
name = "ntimestamp"
|
|
2243
|
+
version = "1.0.0"
|
|
2244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2245
|
+
checksum = "c50f94c405726d3e0095e89e72f75ce7f6587b94a8bd8dc8054b73f65c0fd68c"
|
|
2246
|
+
dependencies = [
|
|
2247
|
+
"base32",
|
|
2248
|
+
"document-features",
|
|
2249
|
+
"getrandom 0.2.17",
|
|
2250
|
+
"httpdate",
|
|
2251
|
+
"js-sys",
|
|
2252
|
+
"once_cell",
|
|
2253
|
+
"serde",
|
|
2254
|
+
]
|
|
2255
|
+
|
|
2256
|
+
[[package]]
|
|
2257
|
+
name = "nu-ansi-term"
|
|
2258
|
+
version = "0.50.3"
|
|
2259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2260
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
2261
|
+
dependencies = [
|
|
2262
|
+
"windows-sys 0.61.2",
|
|
2263
|
+
]
|
|
2264
|
+
|
|
2265
|
+
[[package]]
|
|
2266
|
+
name = "num-conv"
|
|
2267
|
+
version = "0.2.1"
|
|
2268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2269
|
+
checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
|
|
2270
|
+
|
|
2271
|
+
[[package]]
|
|
2272
|
+
name = "num-traits"
|
|
2273
|
+
version = "0.2.19"
|
|
2274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2275
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
2276
|
+
dependencies = [
|
|
2277
|
+
"autocfg",
|
|
2278
|
+
]
|
|
2279
|
+
|
|
2280
|
+
[[package]]
|
|
2281
|
+
name = "num_enum"
|
|
2282
|
+
version = "0.7.6"
|
|
801
2283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
-
checksum = "
|
|
2284
|
+
checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26"
|
|
803
2285
|
dependencies = [
|
|
804
|
-
"
|
|
805
|
-
"
|
|
2286
|
+
"num_enum_derive",
|
|
2287
|
+
"rustversion",
|
|
806
2288
|
]
|
|
807
2289
|
|
|
808
2290
|
[[package]]
|
|
809
|
-
name = "
|
|
810
|
-
version = "
|
|
2291
|
+
name = "num_enum_derive"
|
|
2292
|
+
version = "0.7.6"
|
|
811
2293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
-
checksum = "
|
|
2294
|
+
checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8"
|
|
813
2295
|
dependencies = [
|
|
814
|
-
"
|
|
815
|
-
"
|
|
816
|
-
"
|
|
2296
|
+
"proc-macro-crate",
|
|
2297
|
+
"proc-macro2",
|
|
2298
|
+
"quote",
|
|
2299
|
+
"syn",
|
|
817
2300
|
]
|
|
818
2301
|
|
|
819
2302
|
[[package]]
|
|
820
|
-
name = "
|
|
821
|
-
version = "0.1.
|
|
2303
|
+
name = "num_threads"
|
|
2304
|
+
version = "0.1.7"
|
|
822
2305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
-
checksum = "
|
|
2306
|
+
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
|
|
2307
|
+
dependencies = [
|
|
2308
|
+
"libc",
|
|
2309
|
+
]
|
|
824
2310
|
|
|
825
2311
|
[[package]]
|
|
826
2312
|
name = "objc2"
|
|
@@ -831,6 +2317,19 @@ dependencies = [
|
|
|
831
2317
|
"objc2-encode",
|
|
832
2318
|
]
|
|
833
2319
|
|
|
2320
|
+
[[package]]
|
|
2321
|
+
name = "objc2-core-foundation"
|
|
2322
|
+
version = "0.3.2"
|
|
2323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2324
|
+
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
|
|
2325
|
+
dependencies = [
|
|
2326
|
+
"bitflags",
|
|
2327
|
+
"block2",
|
|
2328
|
+
"dispatch2",
|
|
2329
|
+
"libc",
|
|
2330
|
+
"objc2",
|
|
2331
|
+
]
|
|
2332
|
+
|
|
834
2333
|
[[package]]
|
|
835
2334
|
name = "objc2-encode"
|
|
836
2335
|
version = "4.1.0"
|
|
@@ -847,11 +2346,40 @@ dependencies = [
|
|
|
847
2346
|
"objc2",
|
|
848
2347
|
]
|
|
849
2348
|
|
|
2349
|
+
[[package]]
|
|
2350
|
+
name = "objc2-security"
|
|
2351
|
+
version = "0.3.2"
|
|
2352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2353
|
+
checksum = "709fe137109bd1e8b5a99390f77a7d8b2961dafc1a1c5db8f2e60329ad6d895a"
|
|
2354
|
+
dependencies = [
|
|
2355
|
+
"bitflags",
|
|
2356
|
+
"objc2",
|
|
2357
|
+
"objc2-core-foundation",
|
|
2358
|
+
]
|
|
2359
|
+
|
|
2360
|
+
[[package]]
|
|
2361
|
+
name = "objc2-system-configuration"
|
|
2362
|
+
version = "0.3.2"
|
|
2363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2364
|
+
checksum = "7216bd11cbda54ccabcab84d523dc93b858ec75ecfb3a7d89513fa22464da396"
|
|
2365
|
+
dependencies = [
|
|
2366
|
+
"bitflags",
|
|
2367
|
+
"dispatch2",
|
|
2368
|
+
"libc",
|
|
2369
|
+
"objc2",
|
|
2370
|
+
"objc2-core-foundation",
|
|
2371
|
+
"objc2-security",
|
|
2372
|
+
]
|
|
2373
|
+
|
|
850
2374
|
[[package]]
|
|
851
2375
|
name = "once_cell"
|
|
852
2376
|
version = "1.21.3"
|
|
853
2377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
2378
|
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
2379
|
+
dependencies = [
|
|
2380
|
+
"critical-section",
|
|
2381
|
+
"portable-atomic",
|
|
2382
|
+
]
|
|
855
2383
|
|
|
856
2384
|
[[package]]
|
|
857
2385
|
name = "once_cell_polyfill"
|
|
@@ -859,12 +2387,72 @@ version = "1.70.2"
|
|
|
859
2387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
2388
|
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
861
2389
|
|
|
2390
|
+
[[package]]
|
|
2391
|
+
name = "opaque-debug"
|
|
2392
|
+
version = "0.3.1"
|
|
2393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2394
|
+
checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
|
|
2395
|
+
|
|
862
2396
|
[[package]]
|
|
863
2397
|
name = "option-ext"
|
|
864
2398
|
version = "0.2.0"
|
|
865
2399
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
866
2400
|
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
867
2401
|
|
|
2402
|
+
[[package]]
|
|
2403
|
+
name = "papaya"
|
|
2404
|
+
version = "0.2.4"
|
|
2405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2406
|
+
checksum = "997ee03cd38c01469a7046643714f0ad28880bcb9e6679ff0666e24817ca19b7"
|
|
2407
|
+
dependencies = [
|
|
2408
|
+
"equivalent",
|
|
2409
|
+
"seize",
|
|
2410
|
+
]
|
|
2411
|
+
|
|
2412
|
+
[[package]]
|
|
2413
|
+
name = "parking"
|
|
2414
|
+
version = "2.2.1"
|
|
2415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2416
|
+
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
|
2417
|
+
|
|
2418
|
+
[[package]]
|
|
2419
|
+
name = "parking_lot"
|
|
2420
|
+
version = "0.12.5"
|
|
2421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2422
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
2423
|
+
dependencies = [
|
|
2424
|
+
"lock_api",
|
|
2425
|
+
"parking_lot_core",
|
|
2426
|
+
]
|
|
2427
|
+
|
|
2428
|
+
[[package]]
|
|
2429
|
+
name = "parking_lot_core"
|
|
2430
|
+
version = "0.9.12"
|
|
2431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2432
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
2433
|
+
dependencies = [
|
|
2434
|
+
"cfg-if",
|
|
2435
|
+
"libc",
|
|
2436
|
+
"redox_syscall",
|
|
2437
|
+
"smallvec",
|
|
2438
|
+
"windows-link",
|
|
2439
|
+
]
|
|
2440
|
+
|
|
2441
|
+
[[package]]
|
|
2442
|
+
name = "paste"
|
|
2443
|
+
version = "1.0.15"
|
|
2444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2445
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2446
|
+
|
|
2447
|
+
[[package]]
|
|
2448
|
+
name = "pem-rfc7468"
|
|
2449
|
+
version = "1.0.0"
|
|
2450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2451
|
+
checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9"
|
|
2452
|
+
dependencies = [
|
|
2453
|
+
"base64ct",
|
|
2454
|
+
]
|
|
2455
|
+
|
|
868
2456
|
[[package]]
|
|
869
2457
|
name = "percent-encoding"
|
|
870
2458
|
version = "2.3.2"
|
|
@@ -911,7 +2499,37 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
911
2499
|
checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220"
|
|
912
2500
|
dependencies = [
|
|
913
2501
|
"pest",
|
|
914
|
-
"sha2",
|
|
2502
|
+
"sha2 0.10.9",
|
|
2503
|
+
]
|
|
2504
|
+
|
|
2505
|
+
[[package]]
|
|
2506
|
+
name = "pharos"
|
|
2507
|
+
version = "0.5.3"
|
|
2508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2509
|
+
checksum = "e9567389417feee6ce15dd6527a8a1ecac205ef62c2932bcf3d9f6fc5b78b414"
|
|
2510
|
+
dependencies = [
|
|
2511
|
+
"futures",
|
|
2512
|
+
"rustc_version",
|
|
2513
|
+
]
|
|
2514
|
+
|
|
2515
|
+
[[package]]
|
|
2516
|
+
name = "pin-project"
|
|
2517
|
+
version = "1.1.11"
|
|
2518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2519
|
+
checksum = "f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517"
|
|
2520
|
+
dependencies = [
|
|
2521
|
+
"pin-project-internal",
|
|
2522
|
+
]
|
|
2523
|
+
|
|
2524
|
+
[[package]]
|
|
2525
|
+
name = "pin-project-internal"
|
|
2526
|
+
version = "1.1.11"
|
|
2527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2528
|
+
checksum = "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6"
|
|
2529
|
+
dependencies = [
|
|
2530
|
+
"proc-macro2",
|
|
2531
|
+
"quote",
|
|
2532
|
+
"syn",
|
|
915
2533
|
]
|
|
916
2534
|
|
|
917
2535
|
[[package]]
|
|
@@ -926,6 +2544,124 @@ version = "0.1.0"
|
|
|
926
2544
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
2545
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
928
2546
|
|
|
2547
|
+
[[package]]
|
|
2548
|
+
name = "pkarr"
|
|
2549
|
+
version = "5.0.4"
|
|
2550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2551
|
+
checksum = "d7bfb9143bbba379f246211eb68074d78db9cc048e4c5701f3b0e6cb1ec67ca2"
|
|
2552
|
+
dependencies = [
|
|
2553
|
+
"base32",
|
|
2554
|
+
"bytes",
|
|
2555
|
+
"cfg_aliases",
|
|
2556
|
+
"document-features",
|
|
2557
|
+
"ed25519-dalek",
|
|
2558
|
+
"getrandom 0.4.2",
|
|
2559
|
+
"ntimestamp",
|
|
2560
|
+
"self_cell",
|
|
2561
|
+
"serde",
|
|
2562
|
+
"simple-dns",
|
|
2563
|
+
"thiserror 2.0.18",
|
|
2564
|
+
]
|
|
2565
|
+
|
|
2566
|
+
[[package]]
|
|
2567
|
+
name = "pkcs8"
|
|
2568
|
+
version = "0.11.0-rc.11"
|
|
2569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2570
|
+
checksum = "12922b6296c06eb741b02d7b5161e3aaa22864af38dfa025a1a3ba3f68c84577"
|
|
2571
|
+
dependencies = [
|
|
2572
|
+
"der",
|
|
2573
|
+
"spki",
|
|
2574
|
+
]
|
|
2575
|
+
|
|
2576
|
+
[[package]]
|
|
2577
|
+
name = "plist"
|
|
2578
|
+
version = "1.8.0"
|
|
2579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2580
|
+
checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07"
|
|
2581
|
+
dependencies = [
|
|
2582
|
+
"base64",
|
|
2583
|
+
"indexmap",
|
|
2584
|
+
"quick-xml",
|
|
2585
|
+
"serde",
|
|
2586
|
+
"time",
|
|
2587
|
+
]
|
|
2588
|
+
|
|
2589
|
+
[[package]]
|
|
2590
|
+
name = "polyval"
|
|
2591
|
+
version = "0.6.2"
|
|
2592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2593
|
+
checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
|
|
2594
|
+
dependencies = [
|
|
2595
|
+
"cfg-if",
|
|
2596
|
+
"cpufeatures 0.2.17",
|
|
2597
|
+
"opaque-debug",
|
|
2598
|
+
"universal-hash",
|
|
2599
|
+
]
|
|
2600
|
+
|
|
2601
|
+
[[package]]
|
|
2602
|
+
name = "portable-atomic"
|
|
2603
|
+
version = "1.13.1"
|
|
2604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2605
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
2606
|
+
dependencies = [
|
|
2607
|
+
"serde",
|
|
2608
|
+
]
|
|
2609
|
+
|
|
2610
|
+
[[package]]
|
|
2611
|
+
name = "portmapper"
|
|
2612
|
+
version = "0.15.0"
|
|
2613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2614
|
+
checksum = "74748bc706fa6b6aebac6bbe0bbe0de806b384cb5c557ea974f771360a4e3858"
|
|
2615
|
+
dependencies = [
|
|
2616
|
+
"base64",
|
|
2617
|
+
"bytes",
|
|
2618
|
+
"derive_more",
|
|
2619
|
+
"futures-lite",
|
|
2620
|
+
"futures-util",
|
|
2621
|
+
"hyper-util",
|
|
2622
|
+
"igd-next",
|
|
2623
|
+
"iroh-metrics",
|
|
2624
|
+
"libc",
|
|
2625
|
+
"n0-error",
|
|
2626
|
+
"netwatch",
|
|
2627
|
+
"num_enum",
|
|
2628
|
+
"rand 0.9.2",
|
|
2629
|
+
"serde",
|
|
2630
|
+
"smallvec",
|
|
2631
|
+
"socket2",
|
|
2632
|
+
"time",
|
|
2633
|
+
"tokio",
|
|
2634
|
+
"tokio-util",
|
|
2635
|
+
"tower-layer",
|
|
2636
|
+
"tracing",
|
|
2637
|
+
"url",
|
|
2638
|
+
]
|
|
2639
|
+
|
|
2640
|
+
[[package]]
|
|
2641
|
+
name = "postcard"
|
|
2642
|
+
version = "1.1.3"
|
|
2643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2644
|
+
checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
|
|
2645
|
+
dependencies = [
|
|
2646
|
+
"cobs",
|
|
2647
|
+
"embedded-io 0.4.0",
|
|
2648
|
+
"embedded-io 0.6.1",
|
|
2649
|
+
"heapless",
|
|
2650
|
+
"postcard-derive",
|
|
2651
|
+
"serde",
|
|
2652
|
+
]
|
|
2653
|
+
|
|
2654
|
+
[[package]]
|
|
2655
|
+
name = "postcard-derive"
|
|
2656
|
+
version = "0.2.2"
|
|
2657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2658
|
+
checksum = "e0232bd009a197ceec9cc881ba46f727fcd8060a2d8d6a9dde7a69030a6fe2bb"
|
|
2659
|
+
dependencies = [
|
|
2660
|
+
"proc-macro2",
|
|
2661
|
+
"quote",
|
|
2662
|
+
"syn",
|
|
2663
|
+
]
|
|
2664
|
+
|
|
929
2665
|
[[package]]
|
|
930
2666
|
name = "potential_utf"
|
|
931
2667
|
version = "0.1.4"
|
|
@@ -935,6 +2671,12 @@ dependencies = [
|
|
|
935
2671
|
"zerovec",
|
|
936
2672
|
]
|
|
937
2673
|
|
|
2674
|
+
[[package]]
|
|
2675
|
+
name = "powerfmt"
|
|
2676
|
+
version = "0.2.0"
|
|
2677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2678
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
2679
|
+
|
|
938
2680
|
[[package]]
|
|
939
2681
|
name = "ppv-lite86"
|
|
940
2682
|
version = "0.2.21"
|
|
@@ -944,6 +2686,25 @@ dependencies = [
|
|
|
944
2686
|
"zerocopy",
|
|
945
2687
|
]
|
|
946
2688
|
|
|
2689
|
+
[[package]]
|
|
2690
|
+
name = "prettyplease"
|
|
2691
|
+
version = "0.2.37"
|
|
2692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2693
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
2694
|
+
dependencies = [
|
|
2695
|
+
"proc-macro2",
|
|
2696
|
+
"syn",
|
|
2697
|
+
]
|
|
2698
|
+
|
|
2699
|
+
[[package]]
|
|
2700
|
+
name = "proc-macro-crate"
|
|
2701
|
+
version = "3.5.0"
|
|
2702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2703
|
+
checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
|
|
2704
|
+
dependencies = [
|
|
2705
|
+
"toml_edit",
|
|
2706
|
+
]
|
|
2707
|
+
|
|
947
2708
|
[[package]]
|
|
948
2709
|
name = "proc-macro2"
|
|
949
2710
|
version = "1.0.106"
|
|
@@ -953,6 +2714,15 @@ dependencies = [
|
|
|
953
2714
|
"unicode-ident",
|
|
954
2715
|
]
|
|
955
2716
|
|
|
2717
|
+
[[package]]
|
|
2718
|
+
name = "quick-xml"
|
|
2719
|
+
version = "0.38.4"
|
|
2720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2721
|
+
checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
|
|
2722
|
+
dependencies = [
|
|
2723
|
+
"memchr",
|
|
2724
|
+
]
|
|
2725
|
+
|
|
956
2726
|
[[package]]
|
|
957
2727
|
name = "quinn"
|
|
958
2728
|
version = "0.11.9"
|
|
@@ -1023,6 +2793,12 @@ version = "5.3.0"
|
|
|
1023
2793
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1024
2794
|
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1025
2795
|
|
|
2796
|
+
[[package]]
|
|
2797
|
+
name = "r-efi"
|
|
2798
|
+
version = "6.0.0"
|
|
2799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2800
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
2801
|
+
|
|
1026
2802
|
[[package]]
|
|
1027
2803
|
name = "rand"
|
|
1028
2804
|
version = "0.8.5"
|
|
@@ -1084,19 +2860,22 @@ dependencies = [
|
|
|
1084
2860
|
|
|
1085
2861
|
[[package]]
|
|
1086
2862
|
name = "reallink-cli"
|
|
1087
|
-
version = "0.1.
|
|
2863
|
+
version = "0.1.18"
|
|
1088
2864
|
dependencies = [
|
|
1089
2865
|
"anyhow",
|
|
2866
|
+
"axum",
|
|
2867
|
+
"base64",
|
|
1090
2868
|
"clap",
|
|
1091
2869
|
"dirs",
|
|
1092
2870
|
"futures-util",
|
|
1093
2871
|
"hostname",
|
|
2872
|
+
"iroh",
|
|
1094
2873
|
"json5",
|
|
1095
2874
|
"regex",
|
|
1096
2875
|
"reqwest",
|
|
1097
2876
|
"serde",
|
|
1098
2877
|
"serde_json",
|
|
1099
|
-
"sha2",
|
|
2878
|
+
"sha2 0.10.9",
|
|
1100
2879
|
"tokio",
|
|
1101
2880
|
"tokio-tungstenite",
|
|
1102
2881
|
"urlencoding",
|
|
@@ -1105,6 +2884,15 @@ dependencies = [
|
|
|
1105
2884
|
"zip",
|
|
1106
2885
|
]
|
|
1107
2886
|
|
|
2887
|
+
[[package]]
|
|
2888
|
+
name = "redox_syscall"
|
|
2889
|
+
version = "0.5.18"
|
|
2890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2891
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
2892
|
+
dependencies = [
|
|
2893
|
+
"bitflags",
|
|
2894
|
+
]
|
|
2895
|
+
|
|
1108
2896
|
[[package]]
|
|
1109
2897
|
name = "redox_users"
|
|
1110
2898
|
version = "0.4.6"
|
|
@@ -1154,6 +2942,7 @@ dependencies = [
|
|
|
1154
2942
|
"base64",
|
|
1155
2943
|
"bytes",
|
|
1156
2944
|
"futures-core",
|
|
2945
|
+
"futures-util",
|
|
1157
2946
|
"http",
|
|
1158
2947
|
"http-body",
|
|
1159
2948
|
"http-body-util",
|
|
@@ -1173,16 +2962,24 @@ dependencies = [
|
|
|
1173
2962
|
"sync_wrapper",
|
|
1174
2963
|
"tokio",
|
|
1175
2964
|
"tokio-rustls",
|
|
2965
|
+
"tokio-util",
|
|
1176
2966
|
"tower",
|
|
1177
2967
|
"tower-http",
|
|
1178
2968
|
"tower-service",
|
|
1179
2969
|
"url",
|
|
1180
2970
|
"wasm-bindgen",
|
|
1181
2971
|
"wasm-bindgen-futures",
|
|
2972
|
+
"wasm-streams",
|
|
1182
2973
|
"web-sys",
|
|
1183
2974
|
"webpki-roots 1.0.6",
|
|
1184
2975
|
]
|
|
1185
2976
|
|
|
2977
|
+
[[package]]
|
|
2978
|
+
name = "resolv-conf"
|
|
2979
|
+
version = "0.7.6"
|
|
2980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2981
|
+
checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7"
|
|
2982
|
+
|
|
1186
2983
|
[[package]]
|
|
1187
2984
|
name = "ring"
|
|
1188
2985
|
version = "0.17.14"
|
|
@@ -1203,12 +3000,22 @@ version = "2.1.1"
|
|
|
1203
3000
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1204
3001
|
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
1205
3002
|
|
|
3003
|
+
[[package]]
|
|
3004
|
+
name = "rustc_version"
|
|
3005
|
+
version = "0.4.1"
|
|
3006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3007
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
3008
|
+
dependencies = [
|
|
3009
|
+
"semver",
|
|
3010
|
+
]
|
|
3011
|
+
|
|
1206
3012
|
[[package]]
|
|
1207
3013
|
name = "rustls"
|
|
1208
3014
|
version = "0.23.37"
|
|
1209
3015
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1210
3016
|
checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
|
|
1211
3017
|
dependencies = [
|
|
3018
|
+
"log",
|
|
1212
3019
|
"once_cell",
|
|
1213
3020
|
"ring",
|
|
1214
3021
|
"rustls-pki-types",
|
|
@@ -1239,25 +3046,65 @@ dependencies = [
|
|
|
1239
3046
|
]
|
|
1240
3047
|
|
|
1241
3048
|
[[package]]
|
|
1242
|
-
name = "rustversion"
|
|
1243
|
-
version = "1.0.22"
|
|
3049
|
+
name = "rustversion"
|
|
3050
|
+
version = "1.0.22"
|
|
3051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3052
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
3053
|
+
|
|
3054
|
+
[[package]]
|
|
3055
|
+
name = "ryu"
|
|
3056
|
+
version = "1.0.23"
|
|
3057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3058
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
3059
|
+
|
|
3060
|
+
[[package]]
|
|
3061
|
+
name = "same-file"
|
|
3062
|
+
version = "1.0.6"
|
|
3063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3064
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
3065
|
+
dependencies = [
|
|
3066
|
+
"winapi-util",
|
|
3067
|
+
]
|
|
3068
|
+
|
|
3069
|
+
[[package]]
|
|
3070
|
+
name = "scoped-tls"
|
|
3071
|
+
version = "1.0.1"
|
|
3072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3073
|
+
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|
3074
|
+
|
|
3075
|
+
[[package]]
|
|
3076
|
+
name = "scopeguard"
|
|
3077
|
+
version = "1.2.0"
|
|
3078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3079
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
3080
|
+
|
|
3081
|
+
[[package]]
|
|
3082
|
+
name = "seize"
|
|
3083
|
+
version = "0.5.1"
|
|
3084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3085
|
+
checksum = "5b55fb86dfd3a2f5f76ea78310a88f96c4ea21a3031f8d212443d56123fd0521"
|
|
3086
|
+
dependencies = [
|
|
3087
|
+
"libc",
|
|
3088
|
+
"windows-sys 0.61.2",
|
|
3089
|
+
]
|
|
3090
|
+
|
|
3091
|
+
[[package]]
|
|
3092
|
+
name = "self_cell"
|
|
3093
|
+
version = "1.2.2"
|
|
1244
3094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1245
|
-
checksum = "
|
|
3095
|
+
checksum = "b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89"
|
|
1246
3096
|
|
|
1247
3097
|
[[package]]
|
|
1248
|
-
name = "
|
|
1249
|
-
version = "1.0.
|
|
3098
|
+
name = "semver"
|
|
3099
|
+
version = "1.0.27"
|
|
1250
3100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
-
checksum = "
|
|
3101
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
1252
3102
|
|
|
1253
3103
|
[[package]]
|
|
1254
|
-
name = "
|
|
1255
|
-
version = "
|
|
3104
|
+
name = "send_wrapper"
|
|
3105
|
+
version = "0.6.0"
|
|
1256
3106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
-
checksum = "
|
|
1258
|
-
dependencies = [
|
|
1259
|
-
"winapi-util",
|
|
1260
|
-
]
|
|
3107
|
+
checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
|
|
1261
3108
|
|
|
1262
3109
|
[[package]]
|
|
1263
3110
|
name = "serde"
|
|
@@ -1269,6 +3116,16 @@ dependencies = [
|
|
|
1269
3116
|
"serde_derive",
|
|
1270
3117
|
]
|
|
1271
3118
|
|
|
3119
|
+
[[package]]
|
|
3120
|
+
name = "serde_bytes"
|
|
3121
|
+
version = "0.11.19"
|
|
3122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3123
|
+
checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8"
|
|
3124
|
+
dependencies = [
|
|
3125
|
+
"serde",
|
|
3126
|
+
"serde_core",
|
|
3127
|
+
]
|
|
3128
|
+
|
|
1272
3129
|
[[package]]
|
|
1273
3130
|
name = "serde_core"
|
|
1274
3131
|
version = "1.0.228"
|
|
@@ -1302,6 +3159,17 @@ dependencies = [
|
|
|
1302
3159
|
"zmij",
|
|
1303
3160
|
]
|
|
1304
3161
|
|
|
3162
|
+
[[package]]
|
|
3163
|
+
name = "serde_path_to_error"
|
|
3164
|
+
version = "0.1.20"
|
|
3165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3166
|
+
checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
|
|
3167
|
+
dependencies = [
|
|
3168
|
+
"itoa",
|
|
3169
|
+
"serde",
|
|
3170
|
+
"serde_core",
|
|
3171
|
+
]
|
|
3172
|
+
|
|
1305
3173
|
[[package]]
|
|
1306
3174
|
name = "serde_urlencoded"
|
|
1307
3175
|
version = "0.7.1"
|
|
@@ -1321,8 +3189,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1321
3189
|
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
1322
3190
|
dependencies = [
|
|
1323
3191
|
"cfg-if",
|
|
1324
|
-
"cpufeatures",
|
|
1325
|
-
"digest",
|
|
3192
|
+
"cpufeatures 0.2.17",
|
|
3193
|
+
"digest 0.10.7",
|
|
1326
3194
|
]
|
|
1327
3195
|
|
|
1328
3196
|
[[package]]
|
|
@@ -1332,8 +3200,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1332
3200
|
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
1333
3201
|
dependencies = [
|
|
1334
3202
|
"cfg-if",
|
|
1335
|
-
"cpufeatures",
|
|
1336
|
-
"digest",
|
|
3203
|
+
"cpufeatures 0.2.17",
|
|
3204
|
+
"digest 0.10.7",
|
|
3205
|
+
]
|
|
3206
|
+
|
|
3207
|
+
[[package]]
|
|
3208
|
+
name = "sha2"
|
|
3209
|
+
version = "0.11.0-rc.2"
|
|
3210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3211
|
+
checksum = "d1e3878ab0f98e35b2df35fe53201d088299b41a6bb63e3e34dada2ac4abd924"
|
|
3212
|
+
dependencies = [
|
|
3213
|
+
"cfg-if",
|
|
3214
|
+
"cpufeatures 0.2.17",
|
|
3215
|
+
"digest 0.11.0-rc.10",
|
|
3216
|
+
]
|
|
3217
|
+
|
|
3218
|
+
[[package]]
|
|
3219
|
+
name = "sharded-slab"
|
|
3220
|
+
version = "0.1.7"
|
|
3221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3222
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
3223
|
+
dependencies = [
|
|
3224
|
+
"lazy_static",
|
|
1337
3225
|
]
|
|
1338
3226
|
|
|
1339
3227
|
[[package]]
|
|
@@ -1352,12 +3240,39 @@ dependencies = [
|
|
|
1352
3240
|
"libc",
|
|
1353
3241
|
]
|
|
1354
3242
|
|
|
3243
|
+
[[package]]
|
|
3244
|
+
name = "signature"
|
|
3245
|
+
version = "3.0.0-rc.10"
|
|
3246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3247
|
+
checksum = "7f1880df446116126965eeec169136b2e0251dba37c6223bcc819569550edea3"
|
|
3248
|
+
|
|
1355
3249
|
[[package]]
|
|
1356
3250
|
name = "simd-adler32"
|
|
1357
3251
|
version = "0.3.8"
|
|
1358
3252
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1359
3253
|
checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
|
|
1360
3254
|
|
|
3255
|
+
[[package]]
|
|
3256
|
+
name = "simdutf8"
|
|
3257
|
+
version = "0.1.5"
|
|
3258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3259
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
3260
|
+
|
|
3261
|
+
[[package]]
|
|
3262
|
+
name = "simple-dns"
|
|
3263
|
+
version = "0.11.2"
|
|
3264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3265
|
+
checksum = "df350943049174c4ae8ced56c604e28270258faec12a6a48637a7655287c9ce0"
|
|
3266
|
+
dependencies = [
|
|
3267
|
+
"bitflags",
|
|
3268
|
+
]
|
|
3269
|
+
|
|
3270
|
+
[[package]]
|
|
3271
|
+
name = "siphasher"
|
|
3272
|
+
version = "1.0.2"
|
|
3273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3274
|
+
checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
|
|
3275
|
+
|
|
1361
3276
|
[[package]]
|
|
1362
3277
|
name = "slab"
|
|
1363
3278
|
version = "0.4.12"
|
|
@@ -1380,6 +3295,48 @@ dependencies = [
|
|
|
1380
3295
|
"windows-sys 0.60.2",
|
|
1381
3296
|
]
|
|
1382
3297
|
|
|
3298
|
+
[[package]]
|
|
3299
|
+
name = "sorted-index-buffer"
|
|
3300
|
+
version = "0.2.1"
|
|
3301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3302
|
+
checksum = "ea06cc588e43c632923a55450401b8f25e628131571d4e1baea1bdfdb2b5ed06"
|
|
3303
|
+
|
|
3304
|
+
[[package]]
|
|
3305
|
+
name = "spez"
|
|
3306
|
+
version = "0.1.2"
|
|
3307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3308
|
+
checksum = "c87e960f4dca2788eeb86bbdde8dd246be8948790b7618d656e68f9b720a86e8"
|
|
3309
|
+
dependencies = [
|
|
3310
|
+
"proc-macro2",
|
|
3311
|
+
"quote",
|
|
3312
|
+
"syn",
|
|
3313
|
+
]
|
|
3314
|
+
|
|
3315
|
+
[[package]]
|
|
3316
|
+
name = "spin"
|
|
3317
|
+
version = "0.9.8"
|
|
3318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3319
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
3320
|
+
dependencies = [
|
|
3321
|
+
"lock_api",
|
|
3322
|
+
]
|
|
3323
|
+
|
|
3324
|
+
[[package]]
|
|
3325
|
+
name = "spin"
|
|
3326
|
+
version = "0.10.0"
|
|
3327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3328
|
+
checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591"
|
|
3329
|
+
|
|
3330
|
+
[[package]]
|
|
3331
|
+
name = "spki"
|
|
3332
|
+
version = "0.8.0-rc.4"
|
|
3333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3334
|
+
checksum = "8baeff88f34ed0691978ec34440140e1572b68c7dd4a495fd14a3dc1944daa80"
|
|
3335
|
+
dependencies = [
|
|
3336
|
+
"base64ct",
|
|
3337
|
+
"der",
|
|
3338
|
+
]
|
|
3339
|
+
|
|
1383
3340
|
[[package]]
|
|
1384
3341
|
name = "stable_deref_trait"
|
|
1385
3342
|
version = "1.2.1"
|
|
@@ -1392,6 +3349,27 @@ version = "0.11.1"
|
|
|
1392
3349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1393
3350
|
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1394
3351
|
|
|
3352
|
+
[[package]]
|
|
3353
|
+
name = "strum"
|
|
3354
|
+
version = "0.28.0"
|
|
3355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3356
|
+
checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
|
|
3357
|
+
dependencies = [
|
|
3358
|
+
"strum_macros",
|
|
3359
|
+
]
|
|
3360
|
+
|
|
3361
|
+
[[package]]
|
|
3362
|
+
name = "strum_macros"
|
|
3363
|
+
version = "0.28.0"
|
|
3364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3365
|
+
checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
|
|
3366
|
+
dependencies = [
|
|
3367
|
+
"heck",
|
|
3368
|
+
"proc-macro2",
|
|
3369
|
+
"quote",
|
|
3370
|
+
"syn",
|
|
3371
|
+
]
|
|
3372
|
+
|
|
1395
3373
|
[[package]]
|
|
1396
3374
|
name = "subtle"
|
|
1397
3375
|
version = "2.6.1"
|
|
@@ -1429,6 +3407,12 @@ dependencies = [
|
|
|
1429
3407
|
"syn",
|
|
1430
3408
|
]
|
|
1431
3409
|
|
|
3410
|
+
[[package]]
|
|
3411
|
+
name = "tagptr"
|
|
3412
|
+
version = "0.2.0"
|
|
3413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3414
|
+
checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
|
|
3415
|
+
|
|
1432
3416
|
[[package]]
|
|
1433
3417
|
name = "thiserror"
|
|
1434
3418
|
version = "1.0.69"
|
|
@@ -1469,6 +3453,49 @@ dependencies = [
|
|
|
1469
3453
|
"syn",
|
|
1470
3454
|
]
|
|
1471
3455
|
|
|
3456
|
+
[[package]]
|
|
3457
|
+
name = "thread_local"
|
|
3458
|
+
version = "1.1.9"
|
|
3459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3460
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
3461
|
+
dependencies = [
|
|
3462
|
+
"cfg-if",
|
|
3463
|
+
]
|
|
3464
|
+
|
|
3465
|
+
[[package]]
|
|
3466
|
+
name = "time"
|
|
3467
|
+
version = "0.3.47"
|
|
3468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3469
|
+
checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
|
|
3470
|
+
dependencies = [
|
|
3471
|
+
"deranged",
|
|
3472
|
+
"itoa",
|
|
3473
|
+
"js-sys",
|
|
3474
|
+
"libc",
|
|
3475
|
+
"num-conv",
|
|
3476
|
+
"num_threads",
|
|
3477
|
+
"powerfmt",
|
|
3478
|
+
"serde_core",
|
|
3479
|
+
"time-core",
|
|
3480
|
+
"time-macros",
|
|
3481
|
+
]
|
|
3482
|
+
|
|
3483
|
+
[[package]]
|
|
3484
|
+
name = "time-core"
|
|
3485
|
+
version = "0.1.8"
|
|
3486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3487
|
+
checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
|
|
3488
|
+
|
|
3489
|
+
[[package]]
|
|
3490
|
+
name = "time-macros"
|
|
3491
|
+
version = "0.2.27"
|
|
3492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3493
|
+
checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
|
|
3494
|
+
dependencies = [
|
|
3495
|
+
"num-conv",
|
|
3496
|
+
"time-core",
|
|
3497
|
+
]
|
|
3498
|
+
|
|
1472
3499
|
[[package]]
|
|
1473
3500
|
name = "tinystr"
|
|
1474
3501
|
version = "0.8.2"
|
|
@@ -1531,6 +3558,18 @@ dependencies = [
|
|
|
1531
3558
|
"tokio",
|
|
1532
3559
|
]
|
|
1533
3560
|
|
|
3561
|
+
[[package]]
|
|
3562
|
+
name = "tokio-stream"
|
|
3563
|
+
version = "0.1.18"
|
|
3564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3565
|
+
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
|
3566
|
+
dependencies = [
|
|
3567
|
+
"futures-core",
|
|
3568
|
+
"pin-project-lite",
|
|
3569
|
+
"tokio",
|
|
3570
|
+
"tokio-util",
|
|
3571
|
+
]
|
|
3572
|
+
|
|
1534
3573
|
[[package]]
|
|
1535
3574
|
name = "tokio-tungstenite"
|
|
1536
3575
|
version = "0.24.0"
|
|
@@ -1547,6 +3586,72 @@ dependencies = [
|
|
|
1547
3586
|
"webpki-roots 0.26.11",
|
|
1548
3587
|
]
|
|
1549
3588
|
|
|
3589
|
+
[[package]]
|
|
3590
|
+
name = "tokio-util"
|
|
3591
|
+
version = "0.7.18"
|
|
3592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3593
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
3594
|
+
dependencies = [
|
|
3595
|
+
"bytes",
|
|
3596
|
+
"futures-core",
|
|
3597
|
+
"futures-sink",
|
|
3598
|
+
"futures-util",
|
|
3599
|
+
"pin-project-lite",
|
|
3600
|
+
"tokio",
|
|
3601
|
+
]
|
|
3602
|
+
|
|
3603
|
+
[[package]]
|
|
3604
|
+
name = "tokio-websockets"
|
|
3605
|
+
version = "0.12.3"
|
|
3606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3607
|
+
checksum = "b1b6348ebfaaecd771cecb69e832961d277f59845d4220a584701f72728152b7"
|
|
3608
|
+
dependencies = [
|
|
3609
|
+
"base64",
|
|
3610
|
+
"bytes",
|
|
3611
|
+
"futures-core",
|
|
3612
|
+
"futures-sink",
|
|
3613
|
+
"getrandom 0.3.4",
|
|
3614
|
+
"http",
|
|
3615
|
+
"httparse",
|
|
3616
|
+
"rand 0.9.2",
|
|
3617
|
+
"ring",
|
|
3618
|
+
"rustls-pki-types",
|
|
3619
|
+
"simdutf8",
|
|
3620
|
+
"tokio",
|
|
3621
|
+
"tokio-rustls",
|
|
3622
|
+
"tokio-util",
|
|
3623
|
+
]
|
|
3624
|
+
|
|
3625
|
+
[[package]]
|
|
3626
|
+
name = "toml_datetime"
|
|
3627
|
+
version = "1.1.1+spec-1.1.0"
|
|
3628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3629
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
3630
|
+
dependencies = [
|
|
3631
|
+
"serde_core",
|
|
3632
|
+
]
|
|
3633
|
+
|
|
3634
|
+
[[package]]
|
|
3635
|
+
name = "toml_edit"
|
|
3636
|
+
version = "0.25.9+spec-1.1.0"
|
|
3637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3638
|
+
checksum = "da053d28fe57e2c9d21b48261e14e7b4c8b670b54d2c684847b91feaf4c7dac5"
|
|
3639
|
+
dependencies = [
|
|
3640
|
+
"indexmap",
|
|
3641
|
+
"toml_datetime",
|
|
3642
|
+
"toml_parser",
|
|
3643
|
+
"winnow",
|
|
3644
|
+
]
|
|
3645
|
+
|
|
3646
|
+
[[package]]
|
|
3647
|
+
name = "toml_parser"
|
|
3648
|
+
version = "1.1.1+spec-1.1.0"
|
|
3649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3650
|
+
checksum = "39ca317ebc49f06bd748bfba29533eac9485569dc9bf80b849024b025e814fb9"
|
|
3651
|
+
dependencies = [
|
|
3652
|
+
"winnow",
|
|
3653
|
+
]
|
|
3654
|
+
|
|
1550
3655
|
[[package]]
|
|
1551
3656
|
name = "tower"
|
|
1552
3657
|
version = "0.5.3"
|
|
@@ -1598,10 +3703,23 @@ version = "0.1.44"
|
|
|
1598
3703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1599
3704
|
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1600
3705
|
dependencies = [
|
|
3706
|
+
"log",
|
|
1601
3707
|
"pin-project-lite",
|
|
3708
|
+
"tracing-attributes",
|
|
1602
3709
|
"tracing-core",
|
|
1603
3710
|
]
|
|
1604
3711
|
|
|
3712
|
+
[[package]]
|
|
3713
|
+
name = "tracing-attributes"
|
|
3714
|
+
version = "0.1.31"
|
|
3715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3716
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
3717
|
+
dependencies = [
|
|
3718
|
+
"proc-macro2",
|
|
3719
|
+
"quote",
|
|
3720
|
+
"syn",
|
|
3721
|
+
]
|
|
3722
|
+
|
|
1605
3723
|
[[package]]
|
|
1606
3724
|
name = "tracing-core"
|
|
1607
3725
|
version = "0.1.36"
|
|
@@ -1609,6 +3727,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1609
3727
|
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
1610
3728
|
dependencies = [
|
|
1611
3729
|
"once_cell",
|
|
3730
|
+
"valuable",
|
|
3731
|
+
]
|
|
3732
|
+
|
|
3733
|
+
[[package]]
|
|
3734
|
+
name = "tracing-log"
|
|
3735
|
+
version = "0.2.0"
|
|
3736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3737
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
3738
|
+
dependencies = [
|
|
3739
|
+
"log",
|
|
3740
|
+
"once_cell",
|
|
3741
|
+
"tracing-core",
|
|
3742
|
+
]
|
|
3743
|
+
|
|
3744
|
+
[[package]]
|
|
3745
|
+
name = "tracing-subscriber"
|
|
3746
|
+
version = "0.3.23"
|
|
3747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3748
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
3749
|
+
dependencies = [
|
|
3750
|
+
"matchers",
|
|
3751
|
+
"nu-ansi-term",
|
|
3752
|
+
"once_cell",
|
|
3753
|
+
"regex-automata",
|
|
3754
|
+
"sharded-slab",
|
|
3755
|
+
"smallvec",
|
|
3756
|
+
"thread_local",
|
|
3757
|
+
"tracing",
|
|
3758
|
+
"tracing-core",
|
|
3759
|
+
"tracing-log",
|
|
1612
3760
|
]
|
|
1613
3761
|
|
|
1614
3762
|
[[package]]
|
|
@@ -1655,6 +3803,28 @@ version = "1.0.24"
|
|
|
1655
3803
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1656
3804
|
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1657
3805
|
|
|
3806
|
+
[[package]]
|
|
3807
|
+
name = "unicode-segmentation"
|
|
3808
|
+
version = "1.13.2"
|
|
3809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3810
|
+
checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
|
|
3811
|
+
|
|
3812
|
+
[[package]]
|
|
3813
|
+
name = "unicode-xid"
|
|
3814
|
+
version = "0.2.6"
|
|
3815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3816
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
3817
|
+
|
|
3818
|
+
[[package]]
|
|
3819
|
+
name = "universal-hash"
|
|
3820
|
+
version = "0.5.1"
|
|
3821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3822
|
+
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
|
|
3823
|
+
dependencies = [
|
|
3824
|
+
"crypto-common 0.1.7",
|
|
3825
|
+
"subtle",
|
|
3826
|
+
]
|
|
3827
|
+
|
|
1658
3828
|
[[package]]
|
|
1659
3829
|
name = "untrusted"
|
|
1660
3830
|
version = "0.9.0"
|
|
@@ -1671,6 +3841,7 @@ dependencies = [
|
|
|
1671
3841
|
"idna",
|
|
1672
3842
|
"percent-encoding",
|
|
1673
3843
|
"serde",
|
|
3844
|
+
"serde_derive",
|
|
1674
3845
|
]
|
|
1675
3846
|
|
|
1676
3847
|
[[package]]
|
|
@@ -1680,22 +3851,87 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1680
3851
|
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
|
1681
3852
|
|
|
1682
3853
|
[[package]]
|
|
1683
|
-
name = "utf-8"
|
|
1684
|
-
version = "0.7.6"
|
|
3854
|
+
name = "utf-8"
|
|
3855
|
+
version = "0.7.6"
|
|
3856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3857
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
3858
|
+
|
|
3859
|
+
[[package]]
|
|
3860
|
+
name = "utf8_iter"
|
|
3861
|
+
version = "1.0.4"
|
|
3862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3863
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3864
|
+
|
|
3865
|
+
[[package]]
|
|
3866
|
+
name = "utf8parse"
|
|
3867
|
+
version = "0.2.2"
|
|
3868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3869
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
3870
|
+
|
|
3871
|
+
[[package]]
|
|
3872
|
+
name = "uuid"
|
|
3873
|
+
version = "1.23.0"
|
|
3874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3875
|
+
checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9"
|
|
3876
|
+
dependencies = [
|
|
3877
|
+
"getrandom 0.4.2",
|
|
3878
|
+
"js-sys",
|
|
3879
|
+
"wasm-bindgen",
|
|
3880
|
+
]
|
|
3881
|
+
|
|
3882
|
+
[[package]]
|
|
3883
|
+
name = "valuable"
|
|
3884
|
+
version = "0.1.1"
|
|
3885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3886
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
3887
|
+
|
|
3888
|
+
[[package]]
|
|
3889
|
+
name = "vergen"
|
|
3890
|
+
version = "9.1.0"
|
|
3891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3892
|
+
checksum = "b849a1f6d8639e8de261e81ee0fc881e3e3620db1af9f2e0da015d4382ceaf75"
|
|
3893
|
+
dependencies = [
|
|
3894
|
+
"anyhow",
|
|
3895
|
+
"derive_builder",
|
|
3896
|
+
"rustversion",
|
|
3897
|
+
"vergen-lib 9.1.0",
|
|
3898
|
+
]
|
|
3899
|
+
|
|
3900
|
+
[[package]]
|
|
3901
|
+
name = "vergen-gitcl"
|
|
3902
|
+
version = "1.0.8"
|
|
1685
3903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1686
|
-
checksum = "
|
|
3904
|
+
checksum = "b9dfc1de6eb2e08a4ddf152f1b179529638bedc0ea95e6d667c014506377aefe"
|
|
3905
|
+
dependencies = [
|
|
3906
|
+
"anyhow",
|
|
3907
|
+
"derive_builder",
|
|
3908
|
+
"rustversion",
|
|
3909
|
+
"time",
|
|
3910
|
+
"vergen",
|
|
3911
|
+
"vergen-lib 0.1.6",
|
|
3912
|
+
]
|
|
1687
3913
|
|
|
1688
3914
|
[[package]]
|
|
1689
|
-
name = "
|
|
1690
|
-
version = "1.
|
|
3915
|
+
name = "vergen-lib"
|
|
3916
|
+
version = "0.1.6"
|
|
1691
3917
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1692
|
-
checksum = "
|
|
3918
|
+
checksum = "9b07e6010c0f3e59fcb164e0163834597da68d1f864e2b8ca49f74de01e9c166"
|
|
3919
|
+
dependencies = [
|
|
3920
|
+
"anyhow",
|
|
3921
|
+
"derive_builder",
|
|
3922
|
+
"rustversion",
|
|
3923
|
+
]
|
|
1693
3924
|
|
|
1694
3925
|
[[package]]
|
|
1695
|
-
name = "
|
|
1696
|
-
version = "
|
|
3926
|
+
name = "vergen-lib"
|
|
3927
|
+
version = "9.1.0"
|
|
1697
3928
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1698
|
-
checksum = "
|
|
3929
|
+
checksum = "b34a29ba7e9c59e62f229ae1932fb1b8fb8a6fdcc99215a641913f5f5a59a569"
|
|
3930
|
+
dependencies = [
|
|
3931
|
+
"anyhow",
|
|
3932
|
+
"derive_builder",
|
|
3933
|
+
"rustversion",
|
|
3934
|
+
]
|
|
1699
3935
|
|
|
1700
3936
|
[[package]]
|
|
1701
3937
|
name = "version_check"
|
|
@@ -1737,6 +3973,15 @@ dependencies = [
|
|
|
1737
3973
|
"wit-bindgen",
|
|
1738
3974
|
]
|
|
1739
3975
|
|
|
3976
|
+
[[package]]
|
|
3977
|
+
name = "wasip3"
|
|
3978
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
3979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3980
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
3981
|
+
dependencies = [
|
|
3982
|
+
"wit-bindgen",
|
|
3983
|
+
]
|
|
3984
|
+
|
|
1740
3985
|
[[package]]
|
|
1741
3986
|
name = "wasm-bindgen"
|
|
1742
3987
|
version = "0.2.114"
|
|
@@ -1796,6 +4041,53 @@ dependencies = [
|
|
|
1796
4041
|
"unicode-ident",
|
|
1797
4042
|
]
|
|
1798
4043
|
|
|
4044
|
+
[[package]]
|
|
4045
|
+
name = "wasm-encoder"
|
|
4046
|
+
version = "0.244.0"
|
|
4047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4048
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
4049
|
+
dependencies = [
|
|
4050
|
+
"leb128fmt",
|
|
4051
|
+
"wasmparser",
|
|
4052
|
+
]
|
|
4053
|
+
|
|
4054
|
+
[[package]]
|
|
4055
|
+
name = "wasm-metadata"
|
|
4056
|
+
version = "0.244.0"
|
|
4057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4058
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
4059
|
+
dependencies = [
|
|
4060
|
+
"anyhow",
|
|
4061
|
+
"indexmap",
|
|
4062
|
+
"wasm-encoder",
|
|
4063
|
+
"wasmparser",
|
|
4064
|
+
]
|
|
4065
|
+
|
|
4066
|
+
[[package]]
|
|
4067
|
+
name = "wasm-streams"
|
|
4068
|
+
version = "0.4.2"
|
|
4069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4070
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
|
4071
|
+
dependencies = [
|
|
4072
|
+
"futures-util",
|
|
4073
|
+
"js-sys",
|
|
4074
|
+
"wasm-bindgen",
|
|
4075
|
+
"wasm-bindgen-futures",
|
|
4076
|
+
"web-sys",
|
|
4077
|
+
]
|
|
4078
|
+
|
|
4079
|
+
[[package]]
|
|
4080
|
+
name = "wasmparser"
|
|
4081
|
+
version = "0.244.0"
|
|
4082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4083
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
4084
|
+
dependencies = [
|
|
4085
|
+
"bitflags",
|
|
4086
|
+
"hashbrown 0.15.5",
|
|
4087
|
+
"indexmap",
|
|
4088
|
+
"semver",
|
|
4089
|
+
]
|
|
4090
|
+
|
|
1799
4091
|
[[package]]
|
|
1800
4092
|
name = "web-sys"
|
|
1801
4093
|
version = "0.3.91"
|
|
@@ -1850,6 +4142,28 @@ dependencies = [
|
|
|
1850
4142
|
"rustls-pki-types",
|
|
1851
4143
|
]
|
|
1852
4144
|
|
|
4145
|
+
[[package]]
|
|
4146
|
+
name = "widestring"
|
|
4147
|
+
version = "1.2.1"
|
|
4148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4149
|
+
checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
|
|
4150
|
+
|
|
4151
|
+
[[package]]
|
|
4152
|
+
name = "winapi"
|
|
4153
|
+
version = "0.3.9"
|
|
4154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4155
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
4156
|
+
dependencies = [
|
|
4157
|
+
"winapi-i686-pc-windows-gnu",
|
|
4158
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
4159
|
+
]
|
|
4160
|
+
|
|
4161
|
+
[[package]]
|
|
4162
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
4163
|
+
version = "0.4.0"
|
|
4164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4165
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
4166
|
+
|
|
1853
4167
|
[[package]]
|
|
1854
4168
|
name = "winapi-util"
|
|
1855
4169
|
version = "0.1.11"
|
|
@@ -1859,12 +4173,124 @@ dependencies = [
|
|
|
1859
4173
|
"windows-sys 0.61.2",
|
|
1860
4174
|
]
|
|
1861
4175
|
|
|
4176
|
+
[[package]]
|
|
4177
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
4178
|
+
version = "0.4.0"
|
|
4179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4180
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
4181
|
+
|
|
4182
|
+
[[package]]
|
|
4183
|
+
name = "windows"
|
|
4184
|
+
version = "0.62.2"
|
|
4185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4186
|
+
checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
|
|
4187
|
+
dependencies = [
|
|
4188
|
+
"windows-collections",
|
|
4189
|
+
"windows-core",
|
|
4190
|
+
"windows-future",
|
|
4191
|
+
"windows-numerics",
|
|
4192
|
+
]
|
|
4193
|
+
|
|
4194
|
+
[[package]]
|
|
4195
|
+
name = "windows-collections"
|
|
4196
|
+
version = "0.3.2"
|
|
4197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4198
|
+
checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
|
|
4199
|
+
dependencies = [
|
|
4200
|
+
"windows-core",
|
|
4201
|
+
]
|
|
4202
|
+
|
|
4203
|
+
[[package]]
|
|
4204
|
+
name = "windows-core"
|
|
4205
|
+
version = "0.62.2"
|
|
4206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4207
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
4208
|
+
dependencies = [
|
|
4209
|
+
"windows-implement",
|
|
4210
|
+
"windows-interface",
|
|
4211
|
+
"windows-link",
|
|
4212
|
+
"windows-result",
|
|
4213
|
+
"windows-strings",
|
|
4214
|
+
]
|
|
4215
|
+
|
|
4216
|
+
[[package]]
|
|
4217
|
+
name = "windows-future"
|
|
4218
|
+
version = "0.3.2"
|
|
4219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4220
|
+
checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
|
|
4221
|
+
dependencies = [
|
|
4222
|
+
"windows-core",
|
|
4223
|
+
"windows-link",
|
|
4224
|
+
"windows-threading",
|
|
4225
|
+
]
|
|
4226
|
+
|
|
4227
|
+
[[package]]
|
|
4228
|
+
name = "windows-implement"
|
|
4229
|
+
version = "0.60.2"
|
|
4230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4231
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
4232
|
+
dependencies = [
|
|
4233
|
+
"proc-macro2",
|
|
4234
|
+
"quote",
|
|
4235
|
+
"syn",
|
|
4236
|
+
]
|
|
4237
|
+
|
|
4238
|
+
[[package]]
|
|
4239
|
+
name = "windows-interface"
|
|
4240
|
+
version = "0.59.3"
|
|
4241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4242
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
4243
|
+
dependencies = [
|
|
4244
|
+
"proc-macro2",
|
|
4245
|
+
"quote",
|
|
4246
|
+
"syn",
|
|
4247
|
+
]
|
|
4248
|
+
|
|
1862
4249
|
[[package]]
|
|
1863
4250
|
name = "windows-link"
|
|
1864
4251
|
version = "0.2.1"
|
|
1865
4252
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1866
4253
|
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1867
4254
|
|
|
4255
|
+
[[package]]
|
|
4256
|
+
name = "windows-numerics"
|
|
4257
|
+
version = "0.3.1"
|
|
4258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4259
|
+
checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
|
|
4260
|
+
dependencies = [
|
|
4261
|
+
"windows-core",
|
|
4262
|
+
"windows-link",
|
|
4263
|
+
]
|
|
4264
|
+
|
|
4265
|
+
[[package]]
|
|
4266
|
+
name = "windows-registry"
|
|
4267
|
+
version = "0.6.1"
|
|
4268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4269
|
+
checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
|
|
4270
|
+
dependencies = [
|
|
4271
|
+
"windows-link",
|
|
4272
|
+
"windows-result",
|
|
4273
|
+
"windows-strings",
|
|
4274
|
+
]
|
|
4275
|
+
|
|
4276
|
+
[[package]]
|
|
4277
|
+
name = "windows-result"
|
|
4278
|
+
version = "0.4.1"
|
|
4279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4280
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
4281
|
+
dependencies = [
|
|
4282
|
+
"windows-link",
|
|
4283
|
+
]
|
|
4284
|
+
|
|
4285
|
+
[[package]]
|
|
4286
|
+
name = "windows-strings"
|
|
4287
|
+
version = "0.5.1"
|
|
4288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4289
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
4290
|
+
dependencies = [
|
|
4291
|
+
"windows-link",
|
|
4292
|
+
]
|
|
4293
|
+
|
|
1868
4294
|
[[package]]
|
|
1869
4295
|
name = "windows-sys"
|
|
1870
4296
|
version = "0.45.0"
|
|
@@ -1892,6 +4318,15 @@ dependencies = [
|
|
|
1892
4318
|
"windows-targets 0.52.6",
|
|
1893
4319
|
]
|
|
1894
4320
|
|
|
4321
|
+
[[package]]
|
|
4322
|
+
name = "windows-sys"
|
|
4323
|
+
version = "0.59.0"
|
|
4324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4325
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
4326
|
+
dependencies = [
|
|
4327
|
+
"windows-targets 0.52.6",
|
|
4328
|
+
]
|
|
4329
|
+
|
|
1895
4330
|
[[package]]
|
|
1896
4331
|
name = "windows-sys"
|
|
1897
4332
|
version = "0.60.2"
|
|
@@ -1973,6 +4408,15 @@ dependencies = [
|
|
|
1973
4408
|
"windows_x86_64_msvc 0.53.1",
|
|
1974
4409
|
]
|
|
1975
4410
|
|
|
4411
|
+
[[package]]
|
|
4412
|
+
name = "windows-threading"
|
|
4413
|
+
version = "0.2.1"
|
|
4414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4415
|
+
checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
|
|
4416
|
+
dependencies = [
|
|
4417
|
+
"windows-link",
|
|
4418
|
+
]
|
|
4419
|
+
|
|
1976
4420
|
[[package]]
|
|
1977
4421
|
name = "windows_aarch64_gnullvm"
|
|
1978
4422
|
version = "0.42.2"
|
|
@@ -2153,11 +4597,117 @@ version = "0.53.1"
|
|
|
2153
4597
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2154
4598
|
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
2155
4599
|
|
|
4600
|
+
[[package]]
|
|
4601
|
+
name = "winnow"
|
|
4602
|
+
version = "1.0.1"
|
|
4603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4604
|
+
checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5"
|
|
4605
|
+
dependencies = [
|
|
4606
|
+
"memchr",
|
|
4607
|
+
]
|
|
4608
|
+
|
|
2156
4609
|
[[package]]
|
|
2157
4610
|
name = "wit-bindgen"
|
|
2158
4611
|
version = "0.51.0"
|
|
2159
4612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2160
4613
|
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
4614
|
+
dependencies = [
|
|
4615
|
+
"wit-bindgen-rust-macro",
|
|
4616
|
+
]
|
|
4617
|
+
|
|
4618
|
+
[[package]]
|
|
4619
|
+
name = "wit-bindgen-core"
|
|
4620
|
+
version = "0.51.0"
|
|
4621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4622
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
4623
|
+
dependencies = [
|
|
4624
|
+
"anyhow",
|
|
4625
|
+
"heck",
|
|
4626
|
+
"wit-parser",
|
|
4627
|
+
]
|
|
4628
|
+
|
|
4629
|
+
[[package]]
|
|
4630
|
+
name = "wit-bindgen-rust"
|
|
4631
|
+
version = "0.51.0"
|
|
4632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4633
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
4634
|
+
dependencies = [
|
|
4635
|
+
"anyhow",
|
|
4636
|
+
"heck",
|
|
4637
|
+
"indexmap",
|
|
4638
|
+
"prettyplease",
|
|
4639
|
+
"syn",
|
|
4640
|
+
"wasm-metadata",
|
|
4641
|
+
"wit-bindgen-core",
|
|
4642
|
+
"wit-component",
|
|
4643
|
+
]
|
|
4644
|
+
|
|
4645
|
+
[[package]]
|
|
4646
|
+
name = "wit-bindgen-rust-macro"
|
|
4647
|
+
version = "0.51.0"
|
|
4648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4649
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
4650
|
+
dependencies = [
|
|
4651
|
+
"anyhow",
|
|
4652
|
+
"prettyplease",
|
|
4653
|
+
"proc-macro2",
|
|
4654
|
+
"quote",
|
|
4655
|
+
"syn",
|
|
4656
|
+
"wit-bindgen-core",
|
|
4657
|
+
"wit-bindgen-rust",
|
|
4658
|
+
]
|
|
4659
|
+
|
|
4660
|
+
[[package]]
|
|
4661
|
+
name = "wit-component"
|
|
4662
|
+
version = "0.244.0"
|
|
4663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4664
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
4665
|
+
dependencies = [
|
|
4666
|
+
"anyhow",
|
|
4667
|
+
"bitflags",
|
|
4668
|
+
"indexmap",
|
|
4669
|
+
"log",
|
|
4670
|
+
"serde",
|
|
4671
|
+
"serde_derive",
|
|
4672
|
+
"serde_json",
|
|
4673
|
+
"wasm-encoder",
|
|
4674
|
+
"wasm-metadata",
|
|
4675
|
+
"wasmparser",
|
|
4676
|
+
"wit-parser",
|
|
4677
|
+
]
|
|
4678
|
+
|
|
4679
|
+
[[package]]
|
|
4680
|
+
name = "wit-parser"
|
|
4681
|
+
version = "0.244.0"
|
|
4682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4683
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
4684
|
+
dependencies = [
|
|
4685
|
+
"anyhow",
|
|
4686
|
+
"id-arena",
|
|
4687
|
+
"indexmap",
|
|
4688
|
+
"log",
|
|
4689
|
+
"semver",
|
|
4690
|
+
"serde",
|
|
4691
|
+
"serde_derive",
|
|
4692
|
+
"serde_json",
|
|
4693
|
+
"unicode-xid",
|
|
4694
|
+
"wasmparser",
|
|
4695
|
+
]
|
|
4696
|
+
|
|
4697
|
+
[[package]]
|
|
4698
|
+
name = "wmi"
|
|
4699
|
+
version = "0.18.4"
|
|
4700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4701
|
+
checksum = "7c81b85c57a57500e56669586496bf2abd5cf082b9d32995251185d105208b64"
|
|
4702
|
+
dependencies = [
|
|
4703
|
+
"chrono",
|
|
4704
|
+
"futures",
|
|
4705
|
+
"log",
|
|
4706
|
+
"serde",
|
|
4707
|
+
"thiserror 2.0.18",
|
|
4708
|
+
"windows",
|
|
4709
|
+
"windows-core",
|
|
4710
|
+
]
|
|
2161
4711
|
|
|
2162
4712
|
[[package]]
|
|
2163
4713
|
name = "writeable"
|
|
@@ -2165,6 +4715,40 @@ version = "0.6.2"
|
|
|
2165
4715
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2166
4716
|
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
2167
4717
|
|
|
4718
|
+
[[package]]
|
|
4719
|
+
name = "ws_stream_wasm"
|
|
4720
|
+
version = "0.7.5"
|
|
4721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4722
|
+
checksum = "6c173014acad22e83f16403ee360115b38846fe754e735c5d9d3803fe70c6abc"
|
|
4723
|
+
dependencies = [
|
|
4724
|
+
"async_io_stream",
|
|
4725
|
+
"futures",
|
|
4726
|
+
"js-sys",
|
|
4727
|
+
"log",
|
|
4728
|
+
"pharos",
|
|
4729
|
+
"rustc_version",
|
|
4730
|
+
"send_wrapper",
|
|
4731
|
+
"thiserror 2.0.18",
|
|
4732
|
+
"wasm-bindgen",
|
|
4733
|
+
"wasm-bindgen-futures",
|
|
4734
|
+
"web-sys",
|
|
4735
|
+
]
|
|
4736
|
+
|
|
4737
|
+
[[package]]
|
|
4738
|
+
name = "xml-rs"
|
|
4739
|
+
version = "0.8.28"
|
|
4740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4741
|
+
checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
|
|
4742
|
+
|
|
4743
|
+
[[package]]
|
|
4744
|
+
name = "xmltree"
|
|
4745
|
+
version = "0.10.3"
|
|
4746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4747
|
+
checksum = "d7d8a75eaf6557bb84a65ace8609883db44a29951042ada9b393151532e41fcb"
|
|
4748
|
+
dependencies = [
|
|
4749
|
+
"xml-rs",
|
|
4750
|
+
]
|
|
4751
|
+
|
|
2168
4752
|
[[package]]
|
|
2169
4753
|
name = "yoke"
|
|
2170
4754
|
version = "0.8.1"
|
|
@@ -2188,6 +4772,12 @@ dependencies = [
|
|
|
2188
4772
|
"synstructure",
|
|
2189
4773
|
]
|
|
2190
4774
|
|
|
4775
|
+
[[package]]
|
|
4776
|
+
name = "z32"
|
|
4777
|
+
version = "1.3.0"
|
|
4778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4779
|
+
checksum = "2164e798d9e3d84ee2c91139ace54638059a3b23e361f5c11781c2c6459bde0f"
|
|
4780
|
+
|
|
2191
4781
|
[[package]]
|
|
2192
4782
|
name = "zerocopy"
|
|
2193
4783
|
version = "0.8.40"
|
|
@@ -2234,6 +4824,20 @@ name = "zeroize"
|
|
|
2234
4824
|
version = "1.8.2"
|
|
2235
4825
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2236
4826
|
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
4827
|
+
dependencies = [
|
|
4828
|
+
"zeroize_derive",
|
|
4829
|
+
]
|
|
4830
|
+
|
|
4831
|
+
[[package]]
|
|
4832
|
+
name = "zeroize_derive"
|
|
4833
|
+
version = "1.4.3"
|
|
4834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4835
|
+
checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
|
|
4836
|
+
dependencies = [
|
|
4837
|
+
"proc-macro2",
|
|
4838
|
+
"quote",
|
|
4839
|
+
"syn",
|
|
4840
|
+
]
|
|
2237
4841
|
|
|
2238
4842
|
[[package]]
|
|
2239
4843
|
name = "zerotrie"
|