buildwithnexus 0.8.11 → 0.10.3

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.
@@ -0,0 +1,1140 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "anes"
22
+ version = "0.1.6"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
25
+
26
+ [[package]]
27
+ name = "anstyle"
28
+ version = "1.0.14"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
31
+
32
+ [[package]]
33
+ name = "autocfg"
34
+ version = "1.5.1"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
37
+
38
+ [[package]]
39
+ name = "base64"
40
+ version = "0.22.1"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
43
+
44
+ [[package]]
45
+ name = "bitflags"
46
+ version = "2.13.0"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
49
+
50
+ [[package]]
51
+ name = "buildwithnexus"
52
+ version = "0.10.3"
53
+ dependencies = [
54
+ "criterion",
55
+ "crossterm",
56
+ "serde",
57
+ "serde_json",
58
+ "ureq",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "cast"
63
+ version = "0.3.0"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
66
+
67
+ [[package]]
68
+ name = "cc"
69
+ version = "1.2.65"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
72
+ dependencies = [
73
+ "find-msvc-tools",
74
+ "shlex",
75
+ ]
76
+
77
+ [[package]]
78
+ name = "cfg-if"
79
+ version = "1.0.4"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
82
+
83
+ [[package]]
84
+ name = "ciborium"
85
+ version = "0.2.2"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
88
+ dependencies = [
89
+ "ciborium-io",
90
+ "ciborium-ll",
91
+ "serde",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "ciborium-io"
96
+ version = "0.2.2"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
99
+
100
+ [[package]]
101
+ name = "ciborium-ll"
102
+ version = "0.2.2"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
105
+ dependencies = [
106
+ "ciborium-io",
107
+ "half",
108
+ ]
109
+
110
+ [[package]]
111
+ name = "clap"
112
+ version = "4.6.1"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
115
+ dependencies = [
116
+ "clap_builder",
117
+ ]
118
+
119
+ [[package]]
120
+ name = "clap_builder"
121
+ version = "4.6.0"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
124
+ dependencies = [
125
+ "anstyle",
126
+ "clap_lex",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "clap_lex"
131
+ version = "1.1.0"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
134
+
135
+ [[package]]
136
+ name = "crc32fast"
137
+ version = "1.5.0"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
140
+ dependencies = [
141
+ "cfg-if",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "criterion"
146
+ version = "0.5.1"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
149
+ dependencies = [
150
+ "anes",
151
+ "cast",
152
+ "ciborium",
153
+ "clap",
154
+ "criterion-plot",
155
+ "is-terminal",
156
+ "itertools",
157
+ "num-traits",
158
+ "once_cell",
159
+ "oorandom",
160
+ "regex",
161
+ "serde",
162
+ "serde_derive",
163
+ "serde_json",
164
+ "tinytemplate",
165
+ "walkdir",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "criterion-plot"
170
+ version = "0.5.0"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
173
+ dependencies = [
174
+ "cast",
175
+ "itertools",
176
+ ]
177
+
178
+ [[package]]
179
+ name = "crossterm"
180
+ version = "0.28.1"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
183
+ dependencies = [
184
+ "bitflags",
185
+ "crossterm_winapi",
186
+ "mio",
187
+ "parking_lot",
188
+ "rustix",
189
+ "signal-hook",
190
+ "signal-hook-mio",
191
+ "winapi",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "crossterm_winapi"
196
+ version = "0.9.1"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
199
+ dependencies = [
200
+ "winapi",
201
+ ]
202
+
203
+ [[package]]
204
+ name = "crunchy"
205
+ version = "0.2.4"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
208
+
209
+ [[package]]
210
+ name = "displaydoc"
211
+ version = "0.2.6"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
214
+ dependencies = [
215
+ "proc-macro2",
216
+ "quote",
217
+ "syn",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "either"
222
+ version = "1.16.0"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
225
+
226
+ [[package]]
227
+ name = "errno"
228
+ version = "0.3.14"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
231
+ dependencies = [
232
+ "libc",
233
+ "windows-sys 0.61.2",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "find-msvc-tools"
238
+ version = "0.1.9"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
241
+
242
+ [[package]]
243
+ name = "flate2"
244
+ version = "1.1.9"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
247
+ dependencies = [
248
+ "crc32fast",
249
+ "miniz_oxide",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "form_urlencoded"
254
+ version = "1.2.2"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
257
+ dependencies = [
258
+ "percent-encoding",
259
+ ]
260
+
261
+ [[package]]
262
+ name = "getrandom"
263
+ version = "0.2.17"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
266
+ dependencies = [
267
+ "cfg-if",
268
+ "libc",
269
+ "wasi",
270
+ ]
271
+
272
+ [[package]]
273
+ name = "half"
274
+ version = "2.7.1"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
277
+ dependencies = [
278
+ "cfg-if",
279
+ "crunchy",
280
+ "zerocopy",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "hermit-abi"
285
+ version = "0.5.2"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
288
+
289
+ [[package]]
290
+ name = "icu_collections"
291
+ version = "2.2.0"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
294
+ dependencies = [
295
+ "displaydoc",
296
+ "potential_utf",
297
+ "utf8_iter",
298
+ "yoke",
299
+ "zerofrom",
300
+ "zerovec",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "icu_locale_core"
305
+ version = "2.2.0"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
308
+ dependencies = [
309
+ "displaydoc",
310
+ "litemap",
311
+ "tinystr",
312
+ "writeable",
313
+ "zerovec",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "icu_normalizer"
318
+ version = "2.2.0"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
321
+ dependencies = [
322
+ "icu_collections",
323
+ "icu_normalizer_data",
324
+ "icu_properties",
325
+ "icu_provider",
326
+ "smallvec",
327
+ "zerovec",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "icu_normalizer_data"
332
+ version = "2.2.0"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
335
+
336
+ [[package]]
337
+ name = "icu_properties"
338
+ version = "2.2.0"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
341
+ dependencies = [
342
+ "icu_collections",
343
+ "icu_locale_core",
344
+ "icu_properties_data",
345
+ "icu_provider",
346
+ "zerotrie",
347
+ "zerovec",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "icu_properties_data"
352
+ version = "2.2.0"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
355
+
356
+ [[package]]
357
+ name = "icu_provider"
358
+ version = "2.2.0"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
361
+ dependencies = [
362
+ "displaydoc",
363
+ "icu_locale_core",
364
+ "writeable",
365
+ "yoke",
366
+ "zerofrom",
367
+ "zerotrie",
368
+ "zerovec",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "idna"
373
+ version = "1.1.0"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
376
+ dependencies = [
377
+ "idna_adapter",
378
+ "smallvec",
379
+ "utf8_iter",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "idna_adapter"
384
+ version = "1.2.2"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
387
+ dependencies = [
388
+ "icu_normalizer",
389
+ "icu_properties",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "is-terminal"
394
+ version = "0.4.17"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
397
+ dependencies = [
398
+ "hermit-abi",
399
+ "libc",
400
+ "windows-sys 0.61.2",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "itertools"
405
+ version = "0.10.5"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
408
+ dependencies = [
409
+ "either",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "itoa"
414
+ version = "1.0.18"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
417
+
418
+ [[package]]
419
+ name = "libc"
420
+ version = "0.2.186"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
423
+
424
+ [[package]]
425
+ name = "linux-raw-sys"
426
+ version = "0.4.15"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
429
+
430
+ [[package]]
431
+ name = "litemap"
432
+ version = "0.8.2"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
435
+
436
+ [[package]]
437
+ name = "lock_api"
438
+ version = "0.4.14"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
441
+ dependencies = [
442
+ "scopeguard",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "log"
447
+ version = "0.4.33"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
450
+
451
+ [[package]]
452
+ name = "memchr"
453
+ version = "2.8.2"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
456
+
457
+ [[package]]
458
+ name = "miniz_oxide"
459
+ version = "0.8.9"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
462
+ dependencies = [
463
+ "adler2",
464
+ "simd-adler32",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "mio"
469
+ version = "1.2.1"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
472
+ dependencies = [
473
+ "libc",
474
+ "log",
475
+ "wasi",
476
+ "windows-sys 0.61.2",
477
+ ]
478
+
479
+ [[package]]
480
+ name = "num-traits"
481
+ version = "0.2.19"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
484
+ dependencies = [
485
+ "autocfg",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "once_cell"
490
+ version = "1.21.4"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
493
+
494
+ [[package]]
495
+ name = "oorandom"
496
+ version = "11.1.5"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
499
+
500
+ [[package]]
501
+ name = "parking_lot"
502
+ version = "0.12.5"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
505
+ dependencies = [
506
+ "lock_api",
507
+ "parking_lot_core",
508
+ ]
509
+
510
+ [[package]]
511
+ name = "parking_lot_core"
512
+ version = "0.9.12"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
515
+ dependencies = [
516
+ "cfg-if",
517
+ "libc",
518
+ "redox_syscall",
519
+ "smallvec",
520
+ "windows-link",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "percent-encoding"
525
+ version = "2.3.2"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
528
+
529
+ [[package]]
530
+ name = "potential_utf"
531
+ version = "0.1.5"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
534
+ dependencies = [
535
+ "zerovec",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "proc-macro2"
540
+ version = "1.0.106"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
543
+ dependencies = [
544
+ "unicode-ident",
545
+ ]
546
+
547
+ [[package]]
548
+ name = "quote"
549
+ version = "1.0.46"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
552
+ dependencies = [
553
+ "proc-macro2",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "redox_syscall"
558
+ version = "0.5.18"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
561
+ dependencies = [
562
+ "bitflags",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "regex"
567
+ version = "1.12.4"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
570
+ dependencies = [
571
+ "aho-corasick",
572
+ "memchr",
573
+ "regex-automata",
574
+ "regex-syntax",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "regex-automata"
579
+ version = "0.4.14"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
582
+ dependencies = [
583
+ "aho-corasick",
584
+ "memchr",
585
+ "regex-syntax",
586
+ ]
587
+
588
+ [[package]]
589
+ name = "regex-syntax"
590
+ version = "0.8.11"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
593
+
594
+ [[package]]
595
+ name = "ring"
596
+ version = "0.17.14"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
599
+ dependencies = [
600
+ "cc",
601
+ "cfg-if",
602
+ "getrandom",
603
+ "libc",
604
+ "untrusted",
605
+ "windows-sys 0.52.0",
606
+ ]
607
+
608
+ [[package]]
609
+ name = "rustix"
610
+ version = "0.38.44"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
613
+ dependencies = [
614
+ "bitflags",
615
+ "errno",
616
+ "libc",
617
+ "linux-raw-sys",
618
+ "windows-sys 0.59.0",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "rustls"
623
+ version = "0.23.41"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
626
+ dependencies = [
627
+ "log",
628
+ "once_cell",
629
+ "ring",
630
+ "rustls-pki-types",
631
+ "rustls-webpki",
632
+ "subtle",
633
+ "zeroize",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "rustls-pki-types"
638
+ version = "1.14.1"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
641
+ dependencies = [
642
+ "zeroize",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "rustls-webpki"
647
+ version = "0.103.13"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
650
+ dependencies = [
651
+ "ring",
652
+ "rustls-pki-types",
653
+ "untrusted",
654
+ ]
655
+
656
+ [[package]]
657
+ name = "same-file"
658
+ version = "1.0.6"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
661
+ dependencies = [
662
+ "winapi-util",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "scopeguard"
667
+ version = "1.2.0"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
670
+
671
+ [[package]]
672
+ name = "serde"
673
+ version = "1.0.228"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
676
+ dependencies = [
677
+ "serde_core",
678
+ "serde_derive",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "serde_core"
683
+ version = "1.0.228"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
686
+ dependencies = [
687
+ "serde_derive",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "serde_derive"
692
+ version = "1.0.228"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
695
+ dependencies = [
696
+ "proc-macro2",
697
+ "quote",
698
+ "syn",
699
+ ]
700
+
701
+ [[package]]
702
+ name = "serde_json"
703
+ version = "1.0.150"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
706
+ dependencies = [
707
+ "itoa",
708
+ "memchr",
709
+ "serde",
710
+ "serde_core",
711
+ "zmij",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "shlex"
716
+ version = "2.0.1"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
719
+
720
+ [[package]]
721
+ name = "signal-hook"
722
+ version = "0.3.18"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
725
+ dependencies = [
726
+ "libc",
727
+ "signal-hook-registry",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "signal-hook-mio"
732
+ version = "0.2.5"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
735
+ dependencies = [
736
+ "libc",
737
+ "mio",
738
+ "signal-hook",
739
+ ]
740
+
741
+ [[package]]
742
+ name = "signal-hook-registry"
743
+ version = "1.4.8"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
746
+ dependencies = [
747
+ "errno",
748
+ "libc",
749
+ ]
750
+
751
+ [[package]]
752
+ name = "simd-adler32"
753
+ version = "0.3.9"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
756
+
757
+ [[package]]
758
+ name = "smallvec"
759
+ version = "1.15.2"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
762
+
763
+ [[package]]
764
+ name = "stable_deref_trait"
765
+ version = "1.2.1"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
768
+
769
+ [[package]]
770
+ name = "subtle"
771
+ version = "2.6.1"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
774
+
775
+ [[package]]
776
+ name = "syn"
777
+ version = "2.0.118"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
780
+ dependencies = [
781
+ "proc-macro2",
782
+ "quote",
783
+ "unicode-ident",
784
+ ]
785
+
786
+ [[package]]
787
+ name = "synstructure"
788
+ version = "0.13.2"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
791
+ dependencies = [
792
+ "proc-macro2",
793
+ "quote",
794
+ "syn",
795
+ ]
796
+
797
+ [[package]]
798
+ name = "tinystr"
799
+ version = "0.8.3"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
802
+ dependencies = [
803
+ "displaydoc",
804
+ "zerovec",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "tinytemplate"
809
+ version = "1.2.1"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
812
+ dependencies = [
813
+ "serde",
814
+ "serde_json",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "unicode-ident"
819
+ version = "1.0.24"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
822
+
823
+ [[package]]
824
+ name = "untrusted"
825
+ version = "0.9.0"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
828
+
829
+ [[package]]
830
+ name = "ureq"
831
+ version = "2.12.1"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
834
+ dependencies = [
835
+ "base64",
836
+ "flate2",
837
+ "log",
838
+ "once_cell",
839
+ "rustls",
840
+ "rustls-pki-types",
841
+ "serde",
842
+ "serde_json",
843
+ "url",
844
+ "webpki-roots 0.26.11",
845
+ ]
846
+
847
+ [[package]]
848
+ name = "url"
849
+ version = "2.5.8"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
852
+ dependencies = [
853
+ "form_urlencoded",
854
+ "idna",
855
+ "percent-encoding",
856
+ "serde",
857
+ ]
858
+
859
+ [[package]]
860
+ name = "utf8_iter"
861
+ version = "1.0.4"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
864
+
865
+ [[package]]
866
+ name = "walkdir"
867
+ version = "2.5.0"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
870
+ dependencies = [
871
+ "same-file",
872
+ "winapi-util",
873
+ ]
874
+
875
+ [[package]]
876
+ name = "wasi"
877
+ version = "0.11.1+wasi-snapshot-preview1"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
880
+
881
+ [[package]]
882
+ name = "webpki-roots"
883
+ version = "0.26.11"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
886
+ dependencies = [
887
+ "webpki-roots 1.0.8",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "webpki-roots"
892
+ version = "1.0.8"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
895
+ dependencies = [
896
+ "rustls-pki-types",
897
+ ]
898
+
899
+ [[package]]
900
+ name = "winapi"
901
+ version = "0.3.9"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
904
+ dependencies = [
905
+ "winapi-i686-pc-windows-gnu",
906
+ "winapi-x86_64-pc-windows-gnu",
907
+ ]
908
+
909
+ [[package]]
910
+ name = "winapi-i686-pc-windows-gnu"
911
+ version = "0.4.0"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
914
+
915
+ [[package]]
916
+ name = "winapi-util"
917
+ version = "0.1.11"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
920
+ dependencies = [
921
+ "windows-sys 0.61.2",
922
+ ]
923
+
924
+ [[package]]
925
+ name = "winapi-x86_64-pc-windows-gnu"
926
+ version = "0.4.0"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
929
+
930
+ [[package]]
931
+ name = "windows-link"
932
+ version = "0.2.1"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
935
+
936
+ [[package]]
937
+ name = "windows-sys"
938
+ version = "0.52.0"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
941
+ dependencies = [
942
+ "windows-targets",
943
+ ]
944
+
945
+ [[package]]
946
+ name = "windows-sys"
947
+ version = "0.59.0"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
950
+ dependencies = [
951
+ "windows-targets",
952
+ ]
953
+
954
+ [[package]]
955
+ name = "windows-sys"
956
+ version = "0.61.2"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
959
+ dependencies = [
960
+ "windows-link",
961
+ ]
962
+
963
+ [[package]]
964
+ name = "windows-targets"
965
+ version = "0.52.6"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
968
+ dependencies = [
969
+ "windows_aarch64_gnullvm",
970
+ "windows_aarch64_msvc",
971
+ "windows_i686_gnu",
972
+ "windows_i686_gnullvm",
973
+ "windows_i686_msvc",
974
+ "windows_x86_64_gnu",
975
+ "windows_x86_64_gnullvm",
976
+ "windows_x86_64_msvc",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "windows_aarch64_gnullvm"
981
+ version = "0.52.6"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
984
+
985
+ [[package]]
986
+ name = "windows_aarch64_msvc"
987
+ version = "0.52.6"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
990
+
991
+ [[package]]
992
+ name = "windows_i686_gnu"
993
+ version = "0.52.6"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
996
+
997
+ [[package]]
998
+ name = "windows_i686_gnullvm"
999
+ version = "0.52.6"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1002
+
1003
+ [[package]]
1004
+ name = "windows_i686_msvc"
1005
+ version = "0.52.6"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1008
+
1009
+ [[package]]
1010
+ name = "windows_x86_64_gnu"
1011
+ version = "0.52.6"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1014
+
1015
+ [[package]]
1016
+ name = "windows_x86_64_gnullvm"
1017
+ version = "0.52.6"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1020
+
1021
+ [[package]]
1022
+ name = "windows_x86_64_msvc"
1023
+ version = "0.52.6"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1026
+
1027
+ [[package]]
1028
+ name = "writeable"
1029
+ version = "0.6.3"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
1032
+
1033
+ [[package]]
1034
+ name = "yoke"
1035
+ version = "0.8.3"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
1038
+ dependencies = [
1039
+ "stable_deref_trait",
1040
+ "yoke-derive",
1041
+ "zerofrom",
1042
+ ]
1043
+
1044
+ [[package]]
1045
+ name = "yoke-derive"
1046
+ version = "0.8.2"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
1049
+ dependencies = [
1050
+ "proc-macro2",
1051
+ "quote",
1052
+ "syn",
1053
+ "synstructure",
1054
+ ]
1055
+
1056
+ [[package]]
1057
+ name = "zerocopy"
1058
+ version = "0.8.52"
1059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1060
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
1061
+ dependencies = [
1062
+ "zerocopy-derive",
1063
+ ]
1064
+
1065
+ [[package]]
1066
+ name = "zerocopy-derive"
1067
+ version = "0.8.52"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
1070
+ dependencies = [
1071
+ "proc-macro2",
1072
+ "quote",
1073
+ "syn",
1074
+ ]
1075
+
1076
+ [[package]]
1077
+ name = "zerofrom"
1078
+ version = "0.1.8"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
1081
+ dependencies = [
1082
+ "zerofrom-derive",
1083
+ ]
1084
+
1085
+ [[package]]
1086
+ name = "zerofrom-derive"
1087
+ version = "0.1.7"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
1090
+ dependencies = [
1091
+ "proc-macro2",
1092
+ "quote",
1093
+ "syn",
1094
+ "synstructure",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "zeroize"
1099
+ version = "1.9.0"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
1102
+
1103
+ [[package]]
1104
+ name = "zerotrie"
1105
+ version = "0.2.4"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
1108
+ dependencies = [
1109
+ "displaydoc",
1110
+ "yoke",
1111
+ "zerofrom",
1112
+ ]
1113
+
1114
+ [[package]]
1115
+ name = "zerovec"
1116
+ version = "0.11.6"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
1119
+ dependencies = [
1120
+ "yoke",
1121
+ "zerofrom",
1122
+ "zerovec-derive",
1123
+ ]
1124
+
1125
+ [[package]]
1126
+ name = "zerovec-derive"
1127
+ version = "0.11.3"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
1130
+ dependencies = [
1131
+ "proc-macro2",
1132
+ "quote",
1133
+ "syn",
1134
+ ]
1135
+
1136
+ [[package]]
1137
+ name = "zmij"
1138
+ version = "1.0.21"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"