ruby-c2pa 0.3.0 → 0.4.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +49 -1
- data/README.md +128 -20
- data/ext/c2pa_native/Cargo.lock +754 -667
- data/ext/c2pa_native/Cargo.toml +1 -1
- data/ext/c2pa_native/src/lib.rs +102 -5
- data/lib/c2pa/config.rb +90 -0
- data/lib/c2pa/error.rb +3 -0
- data/lib/c2pa/manifest.rb +50 -14
- data/lib/c2pa/version.rb +1 -1
- data/lib/c2pa.rb +38 -1
- metadata +2 -1
data/ext/c2pa_native/Cargo.lock
CHANGED
|
@@ -9,7 +9,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
9
9
|
checksum = "087113bd50d9adce24850eed5d0476c7d199d532fce8fab5173650331e09033a"
|
|
10
10
|
dependencies = [
|
|
11
11
|
"abnf-core",
|
|
12
|
-
"nom",
|
|
12
|
+
"nom 7.1.3",
|
|
13
13
|
]
|
|
14
14
|
|
|
15
15
|
[[package]]
|
|
@@ -18,7 +18,7 @@ version = "0.5.0"
|
|
|
18
18
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
19
19
|
checksum = "c44e09c43ae1c368fb91a03a566472d0087c26cf7e1b9e8e289c14ede681dd7d"
|
|
20
20
|
dependencies = [
|
|
21
|
-
"nom",
|
|
21
|
+
"nom 7.1.3",
|
|
22
22
|
]
|
|
23
23
|
|
|
24
24
|
[[package]]
|
|
@@ -27,11 +27,22 @@ version = "2.0.1"
|
|
|
27
27
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
28
28
|
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
29
29
|
|
|
30
|
+
[[package]]
|
|
31
|
+
name = "aes"
|
|
32
|
+
version = "0.9.3"
|
|
33
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
34
|
+
checksum = "35f0f96ce78e38c3dc6d8948aa8163d06385be74000f3c7a95bf1eef35d3ea32"
|
|
35
|
+
dependencies = [
|
|
36
|
+
"cipher",
|
|
37
|
+
"cpubits",
|
|
38
|
+
"cpufeatures 0.3.1",
|
|
39
|
+
]
|
|
40
|
+
|
|
30
41
|
[[package]]
|
|
31
42
|
name = "aho-corasick"
|
|
32
|
-
version = "1.1.
|
|
43
|
+
version = "1.1.5"
|
|
33
44
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
34
|
-
checksum = "
|
|
45
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
35
46
|
dependencies = [
|
|
36
47
|
"memchr",
|
|
37
48
|
]
|
|
@@ -53,19 +64,13 @@ dependencies = [
|
|
|
53
64
|
|
|
54
65
|
[[package]]
|
|
55
66
|
name = "android_system_properties"
|
|
56
|
-
version = "0.1.
|
|
67
|
+
version = "0.1.6"
|
|
57
68
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
-
checksum = "
|
|
69
|
+
checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
|
|
59
70
|
dependencies = [
|
|
60
71
|
"libc",
|
|
61
72
|
]
|
|
62
73
|
|
|
63
|
-
[[package]]
|
|
64
|
-
name = "anyhow"
|
|
65
|
-
version = "1.0.102"
|
|
66
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
67
|
-
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
68
|
-
|
|
69
74
|
[[package]]
|
|
70
75
|
name = "asn1-rs"
|
|
71
76
|
version = "0.7.2"
|
|
@@ -75,10 +80,10 @@ dependencies = [
|
|
|
75
80
|
"asn1-rs-derive",
|
|
76
81
|
"asn1-rs-impl",
|
|
77
82
|
"displaydoc",
|
|
78
|
-
"nom",
|
|
83
|
+
"nom 7.1.3",
|
|
79
84
|
"num-traits",
|
|
80
85
|
"rusticata-macros",
|
|
81
|
-
"thiserror 2.0.
|
|
86
|
+
"thiserror 2.0.20",
|
|
82
87
|
"time",
|
|
83
88
|
]
|
|
84
89
|
|
|
@@ -90,7 +95,7 @@ checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c"
|
|
|
90
95
|
dependencies = [
|
|
91
96
|
"proc-macro2",
|
|
92
97
|
"quote",
|
|
93
|
-
"syn 2.0.
|
|
98
|
+
"syn 2.0.119",
|
|
94
99
|
"synstructure",
|
|
95
100
|
]
|
|
96
101
|
|
|
@@ -102,7 +107,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
|
|
|
102
107
|
dependencies = [
|
|
103
108
|
"proc-macro2",
|
|
104
109
|
"quote",
|
|
105
|
-
"syn 2.0.
|
|
110
|
+
"syn 2.0.119",
|
|
106
111
|
]
|
|
107
112
|
|
|
108
113
|
[[package]]
|
|
@@ -113,7 +118,7 @@ checksum = "ddf3728566eefa873833159754f5732fb0951d3649e6e5b891cc70d56dd41673"
|
|
|
113
118
|
dependencies = [
|
|
114
119
|
"proc-macro2",
|
|
115
120
|
"quote",
|
|
116
|
-
"syn 2.0.
|
|
121
|
+
"syn 2.0.119",
|
|
117
122
|
]
|
|
118
123
|
|
|
119
124
|
[[package]]
|
|
@@ -124,13 +129,13 @@ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
|
|
|
124
129
|
|
|
125
130
|
[[package]]
|
|
126
131
|
name = "async-trait"
|
|
127
|
-
version = "0.1.
|
|
132
|
+
version = "0.1.92"
|
|
128
133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
-
checksum = "
|
|
134
|
+
checksum = "82f6aeea286b8eb4dd3431a1be1b59d290ace00f5bfd8e2a159bc2a05e2c1667"
|
|
130
135
|
dependencies = [
|
|
131
136
|
"proc-macro2",
|
|
132
137
|
"quote",
|
|
133
|
-
"syn
|
|
138
|
+
"syn 3.0.5",
|
|
134
139
|
]
|
|
135
140
|
|
|
136
141
|
[[package]]
|
|
@@ -147,9 +152,9 @@ checksum = "239d25181cb40f1955529367ee495e35d03aab4e578028f41e7abc8b21c367a8"
|
|
|
147
152
|
|
|
148
153
|
[[package]]
|
|
149
154
|
name = "autocfg"
|
|
150
|
-
version = "1.5.
|
|
155
|
+
version = "1.5.1"
|
|
151
156
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
-
checksum = "
|
|
157
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
153
158
|
|
|
154
159
|
[[package]]
|
|
155
160
|
name = "base16ct"
|
|
@@ -177,9 +182,9 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
|
177
182
|
|
|
178
183
|
[[package]]
|
|
179
184
|
name = "bcder"
|
|
180
|
-
version = "0.7.
|
|
185
|
+
version = "0.7.7"
|
|
181
186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
-
checksum = "
|
|
187
|
+
checksum = "b593e5aeaf7992d388c08a9831c921cd703718064b3e50ba8e6d666d6cf86ca7"
|
|
183
188
|
dependencies = [
|
|
184
189
|
"bytes",
|
|
185
190
|
"smallvec",
|
|
@@ -187,35 +192,39 @@ dependencies = [
|
|
|
187
192
|
|
|
188
193
|
[[package]]
|
|
189
194
|
name = "bindgen"
|
|
190
|
-
version = "0.
|
|
195
|
+
version = "0.72.1"
|
|
191
196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
-
checksum = "
|
|
197
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
193
198
|
dependencies = [
|
|
194
|
-
"bitflags",
|
|
199
|
+
"bitflags 2.13.2",
|
|
195
200
|
"cexpr",
|
|
196
201
|
"clang-sys",
|
|
197
|
-
"itertools
|
|
198
|
-
"lazy_static",
|
|
199
|
-
"lazycell",
|
|
202
|
+
"itertools",
|
|
200
203
|
"proc-macro2",
|
|
201
204
|
"quote",
|
|
202
205
|
"regex",
|
|
203
|
-
"rustc-hash
|
|
204
|
-
"shlex",
|
|
205
|
-
"syn 2.0.
|
|
206
|
+
"rustc-hash",
|
|
207
|
+
"shlex 1.3.0",
|
|
208
|
+
"syn 2.0.119",
|
|
206
209
|
]
|
|
207
210
|
|
|
208
211
|
[[package]]
|
|
209
212
|
name = "bitflags"
|
|
210
|
-
version = "
|
|
213
|
+
version = "1.3.2"
|
|
211
214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
-
checksum = "
|
|
215
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
216
|
+
|
|
217
|
+
[[package]]
|
|
218
|
+
name = "bitflags"
|
|
219
|
+
version = "2.13.2"
|
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
+
checksum = "3ded4057c258ba199e2d26386d3af3780957ecaee6c4ef4041c6b4b8b97c0b06"
|
|
213
222
|
|
|
214
223
|
[[package]]
|
|
215
224
|
name = "bitvec"
|
|
216
|
-
version = "1.
|
|
225
|
+
version = "1.1.1"
|
|
217
226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
-
checksum = "
|
|
227
|
+
checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837"
|
|
219
228
|
dependencies = [
|
|
220
229
|
"funty",
|
|
221
230
|
"radium",
|
|
@@ -230,7 +239,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
230
239
|
checksum = "d988fcc40055ceaa85edc55875a08f8abd29018582647fd82ad6128dba14a5f0"
|
|
231
240
|
dependencies = [
|
|
232
241
|
"bitvec",
|
|
233
|
-
"nom",
|
|
242
|
+
"nom 7.1.3",
|
|
234
243
|
]
|
|
235
244
|
|
|
236
245
|
[[package]]
|
|
@@ -251,6 +260,15 @@ dependencies = [
|
|
|
251
260
|
"hybrid-array",
|
|
252
261
|
]
|
|
253
262
|
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "block-padding"
|
|
265
|
+
version = "0.4.2"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "710f1dd022ef4e93f8a438b4ba958de7f64308434fa6a87104481645cc30068b"
|
|
268
|
+
dependencies = [
|
|
269
|
+
"hybrid-array",
|
|
270
|
+
]
|
|
271
|
+
|
|
254
272
|
[[package]]
|
|
255
273
|
name = "brotli"
|
|
256
274
|
version = "7.0.0"
|
|
@@ -307,9 +325,9 @@ dependencies = [
|
|
|
307
325
|
|
|
308
326
|
[[package]]
|
|
309
327
|
name = "bumpalo"
|
|
310
|
-
version = "3.20.
|
|
328
|
+
version = "3.20.3"
|
|
311
329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
312
|
-
checksum = "
|
|
330
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
313
331
|
|
|
314
332
|
[[package]]
|
|
315
333
|
name = "byteorder"
|
|
@@ -328,15 +346,15 @@ dependencies = [
|
|
|
328
346
|
|
|
329
347
|
[[package]]
|
|
330
348
|
name = "bytes"
|
|
331
|
-
version = "1.
|
|
349
|
+
version = "1.12.1"
|
|
332
350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
-
checksum = "
|
|
351
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
334
352
|
|
|
335
353
|
[[package]]
|
|
336
354
|
name = "c2pa"
|
|
337
|
-
version = "0.90.
|
|
355
|
+
version = "0.90.22"
|
|
338
356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
-
checksum = "
|
|
357
|
+
checksum = "20fb4160e041eef6dcf2fa3b92db50b8f28d4cf4415dff44bf727cb28c3a58cb"
|
|
340
358
|
dependencies = [
|
|
341
359
|
"asn1-rs",
|
|
342
360
|
"async-generic",
|
|
@@ -370,8 +388,9 @@ dependencies = [
|
|
|
370
388
|
"js-sys",
|
|
371
389
|
"lazy_static",
|
|
372
390
|
"log",
|
|
391
|
+
"lopdf",
|
|
373
392
|
"memchr",
|
|
374
|
-
"nom",
|
|
393
|
+
"nom 7.1.3",
|
|
375
394
|
"non-empty-string",
|
|
376
395
|
"nonempty-collections",
|
|
377
396
|
"num-bigint-dig",
|
|
@@ -384,7 +403,7 @@ dependencies = [
|
|
|
384
403
|
"pkcs8",
|
|
385
404
|
"png_pong",
|
|
386
405
|
"quick-xml",
|
|
387
|
-
"rand 0.8.
|
|
406
|
+
"rand 0.8.8",
|
|
388
407
|
"rand_chacha 0.9.0",
|
|
389
408
|
"range-set",
|
|
390
409
|
"rasn",
|
|
@@ -407,7 +426,7 @@ dependencies = [
|
|
|
407
426
|
"spki",
|
|
408
427
|
"static-iref",
|
|
409
428
|
"tempfile",
|
|
410
|
-
"thiserror 2.0.
|
|
429
|
+
"thiserror 2.0.20",
|
|
411
430
|
"toml",
|
|
412
431
|
"ureq",
|
|
413
432
|
"url",
|
|
@@ -425,9 +444,9 @@ dependencies = [
|
|
|
425
444
|
|
|
426
445
|
[[package]]
|
|
427
446
|
name = "c2pa_cbor"
|
|
428
|
-
version = "0.77.
|
|
447
|
+
version = "0.77.4"
|
|
429
448
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
-
checksum = "
|
|
449
|
+
checksum = "88380203853f999aa8e5bcdac2a0984d082c42994cc5a99d240aed180b2c2f3b"
|
|
431
450
|
dependencies = [
|
|
432
451
|
"half",
|
|
433
452
|
"serde",
|
|
@@ -443,14 +462,23 @@ dependencies = [
|
|
|
443
462
|
"serde_json",
|
|
444
463
|
]
|
|
445
464
|
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "cbc"
|
|
467
|
+
version = "0.2.1"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "ce2dc9ee5f88d11e0beb842c88b33c8a5cf0d1329c4b19494af42b07dbfe8896"
|
|
470
|
+
dependencies = [
|
|
471
|
+
"cipher",
|
|
472
|
+
]
|
|
473
|
+
|
|
446
474
|
[[package]]
|
|
447
475
|
name = "cc"
|
|
448
|
-
version = "1.
|
|
476
|
+
version = "1.4.5"
|
|
449
477
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
-
checksum = "
|
|
478
|
+
checksum = "005ec2760ca554fae18df7a11195552ec576cd665632a881bc011d5bb2fd4d80"
|
|
451
479
|
dependencies = [
|
|
452
480
|
"find-msvc-tools",
|
|
453
|
-
"shlex",
|
|
481
|
+
"shlex 2.0.1",
|
|
454
482
|
]
|
|
455
483
|
|
|
456
484
|
[[package]]
|
|
@@ -468,7 +496,7 @@ version = "0.6.0"
|
|
|
468
496
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
497
|
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
470
498
|
dependencies = [
|
|
471
|
-
"nom",
|
|
499
|
+
"nom 7.1.3",
|
|
472
500
|
]
|
|
473
501
|
|
|
474
502
|
[[package]]
|
|
@@ -479,15 +507,26 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
|
479
507
|
|
|
480
508
|
[[package]]
|
|
481
509
|
name = "cfg_aliases"
|
|
482
|
-
version = "0.2.
|
|
510
|
+
version = "0.2.2"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "chacha20"
|
|
516
|
+
version = "0.10.2"
|
|
483
517
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
|
-
checksum = "
|
|
518
|
+
checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06"
|
|
519
|
+
dependencies = [
|
|
520
|
+
"cfg-if",
|
|
521
|
+
"cpufeatures 0.3.1",
|
|
522
|
+
"rand_core 0.10.1",
|
|
523
|
+
]
|
|
485
524
|
|
|
486
525
|
[[package]]
|
|
487
526
|
name = "chrono"
|
|
488
|
-
version = "0.4.
|
|
527
|
+
version = "0.4.45"
|
|
489
528
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
-
checksum = "
|
|
529
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
491
530
|
dependencies = [
|
|
492
531
|
"iana-time-zone",
|
|
493
532
|
"js-sys",
|
|
@@ -524,11 +563,21 @@ dependencies = [
|
|
|
524
563
|
"half",
|
|
525
564
|
]
|
|
526
565
|
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "cipher"
|
|
568
|
+
version = "0.5.2"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "e8cf2a2c93cd704877c0858356ed03480ff301ee950b43f1cbe4573b088bfa6c"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"crypto-common 0.2.2",
|
|
573
|
+
"inout",
|
|
574
|
+
]
|
|
575
|
+
|
|
527
576
|
[[package]]
|
|
528
577
|
name = "clang-sys"
|
|
529
|
-
version = "1.
|
|
578
|
+
version = "1.9.1"
|
|
530
579
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
531
|
-
checksum = "
|
|
580
|
+
checksum = "157a8ba7b480713b56f4c09fd13fc3e0a22a5dfab8097ba61cbc5feef950788a"
|
|
532
581
|
dependencies = [
|
|
533
582
|
"glob",
|
|
534
583
|
"libc",
|
|
@@ -537,9 +586,9 @@ dependencies = [
|
|
|
537
586
|
|
|
538
587
|
[[package]]
|
|
539
588
|
name = "console_log"
|
|
540
|
-
version = "1.
|
|
589
|
+
version = "1.1.0"
|
|
541
590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
-
checksum = "
|
|
591
|
+
checksum = "86919cef3e37b9356ccf54d4421208c17ecfda01beae61393e7ffd72916c0ef1"
|
|
543
592
|
dependencies = [
|
|
544
593
|
"log",
|
|
545
594
|
"wasm-bindgen",
|
|
@@ -586,6 +635,12 @@ version = "0.8.7"
|
|
|
586
635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
587
636
|
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
588
637
|
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "core_detect"
|
|
640
|
+
version = "1.0.0"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "7f8f80099a98041a3d1622845c271458a2d73e688351bf3cb999266764b81d48"
|
|
643
|
+
|
|
589
644
|
[[package]]
|
|
590
645
|
name = "coset"
|
|
591
646
|
version = "0.4.2"
|
|
@@ -596,6 +651,12 @@ dependencies = [
|
|
|
596
651
|
"ciborium-io",
|
|
597
652
|
]
|
|
598
653
|
|
|
654
|
+
[[package]]
|
|
655
|
+
name = "cpubits"
|
|
656
|
+
version = "0.1.1"
|
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
+
checksum = "15b85f9c39137c3a891689859392b1bd49812121d0d61c9caf00d46ed5ce06ae"
|
|
659
|
+
|
|
599
660
|
[[package]]
|
|
600
661
|
name = "cpufeatures"
|
|
601
662
|
version = "0.2.17"
|
|
@@ -607,22 +668,47 @@ dependencies = [
|
|
|
607
668
|
|
|
608
669
|
[[package]]
|
|
609
670
|
name = "cpufeatures"
|
|
610
|
-
version = "0.3.
|
|
671
|
+
version = "0.3.1"
|
|
611
672
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
-
checksum = "
|
|
673
|
+
checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
|
|
613
674
|
dependencies = [
|
|
614
675
|
"libc",
|
|
615
676
|
]
|
|
616
677
|
|
|
617
678
|
[[package]]
|
|
618
679
|
name = "crc32fast"
|
|
619
|
-
version = "1.5.
|
|
680
|
+
version = "1.5.1"
|
|
620
681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
-
checksum = "
|
|
682
|
+
checksum = "8498c871161e1742aaa9d52551b2d6ebdd4c3d45a3be423e3728f33b955be550"
|
|
622
683
|
dependencies = [
|
|
623
684
|
"cfg-if",
|
|
624
685
|
]
|
|
625
686
|
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "crossbeam-deque"
|
|
689
|
+
version = "0.8.8"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "622f3fc73690be383c7214310406f28a90e6edeadc3cea882f9d71e495b9711a"
|
|
692
|
+
dependencies = [
|
|
693
|
+
"crossbeam-epoch",
|
|
694
|
+
"crossbeam-utils",
|
|
695
|
+
]
|
|
696
|
+
|
|
697
|
+
[[package]]
|
|
698
|
+
name = "crossbeam-epoch"
|
|
699
|
+
version = "0.9.21"
|
|
700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
701
|
+
checksum = "dc74980687109a3b14c72fd458107bf0baa1da1a1a805e178d15501ba9b86d9d"
|
|
702
|
+
dependencies = [
|
|
703
|
+
"crossbeam-utils",
|
|
704
|
+
]
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "crossbeam-utils"
|
|
708
|
+
version = "0.8.23"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "a31eee39dddec8330830986fcd7625edb5a24ec90ea038215273bbc3adb08ac6"
|
|
711
|
+
|
|
626
712
|
[[package]]
|
|
627
713
|
name = "crunchy"
|
|
628
714
|
version = "0.2.4"
|
|
@@ -684,14 +770,14 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
|
|
684
770
|
dependencies = [
|
|
685
771
|
"proc-macro2",
|
|
686
772
|
"quote",
|
|
687
|
-
"syn 2.0.
|
|
773
|
+
"syn 2.0.119",
|
|
688
774
|
]
|
|
689
775
|
|
|
690
776
|
[[package]]
|
|
691
777
|
name = "darling"
|
|
692
|
-
version = "0.
|
|
778
|
+
version = "0.24.1"
|
|
693
779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
-
checksum = "
|
|
780
|
+
checksum = "ed17f5901b6630b993ca003def43f2f8ef4014fc13b047b57aad617ff32bc2ec"
|
|
695
781
|
dependencies = [
|
|
696
782
|
"darling_core",
|
|
697
783
|
"darling_macro",
|
|
@@ -699,33 +785,64 @@ dependencies = [
|
|
|
699
785
|
|
|
700
786
|
[[package]]
|
|
701
787
|
name = "darling_core"
|
|
702
|
-
version = "0.
|
|
788
|
+
version = "0.24.1"
|
|
703
789
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
-
checksum = "
|
|
790
|
+
checksum = "6837e2cf7485aaae18f86181d2f0e9a7ed297a025e220aeabf63fdebd3a2ddff"
|
|
705
791
|
dependencies = [
|
|
706
792
|
"ident_case",
|
|
707
793
|
"proc-macro2",
|
|
708
794
|
"quote",
|
|
709
795
|
"strsim",
|
|
710
|
-
"syn
|
|
796
|
+
"syn 3.0.5",
|
|
711
797
|
]
|
|
712
798
|
|
|
713
799
|
[[package]]
|
|
714
800
|
name = "darling_macro"
|
|
715
|
-
version = "0.
|
|
801
|
+
version = "0.24.1"
|
|
716
802
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
-
checksum = "
|
|
803
|
+
checksum = "2ac7135c3ef02b2f7833bbeb1be5ba7f966dcde8a87c6b87f65a778d71a02785"
|
|
718
804
|
dependencies = [
|
|
719
805
|
"darling_core",
|
|
720
806
|
"quote",
|
|
721
|
-
"syn
|
|
807
|
+
"syn 3.0.5",
|
|
722
808
|
]
|
|
723
809
|
|
|
724
810
|
[[package]]
|
|
725
811
|
name = "data-encoding"
|
|
726
|
-
version = "2.
|
|
812
|
+
version = "2.11.1"
|
|
727
813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
-
checksum = "
|
|
814
|
+
checksum = "4583a4551df46e2792f82ceeac45e850d2e2d5debba0b91f102385cda5b11f06"
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "defmt"
|
|
818
|
+
version = "1.1.1"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "e2953bfe4f93bbd20cc71198842756f77d161884c99ebbabc41d80231ded88d1"
|
|
821
|
+
dependencies = [
|
|
822
|
+
"bitflags 1.3.2",
|
|
823
|
+
"defmt-macros",
|
|
824
|
+
]
|
|
825
|
+
|
|
826
|
+
[[package]]
|
|
827
|
+
name = "defmt-macros"
|
|
828
|
+
version = "1.1.1"
|
|
829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
+
checksum = "bad9c72e7ca2137e0dc3813245a0d282fd6daad32fd800af018306a9169b5fe8"
|
|
831
|
+
dependencies = [
|
|
832
|
+
"defmt-parser",
|
|
833
|
+
"proc-macro2",
|
|
834
|
+
"quote",
|
|
835
|
+
"syn 2.0.119",
|
|
836
|
+
]
|
|
837
|
+
|
|
838
|
+
[[package]]
|
|
839
|
+
name = "defmt-parser"
|
|
840
|
+
version = "1.0.0"
|
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
+
checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
|
|
843
|
+
dependencies = [
|
|
844
|
+
"thiserror 2.0.20",
|
|
845
|
+
]
|
|
729
846
|
|
|
730
847
|
[[package]]
|
|
731
848
|
name = "delegate"
|
|
@@ -757,7 +874,7 @@ checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6"
|
|
|
757
874
|
dependencies = [
|
|
758
875
|
"asn1-rs",
|
|
759
876
|
"displaydoc",
|
|
760
|
-
"nom",
|
|
877
|
+
"nom 7.1.3",
|
|
761
878
|
"num-bigint",
|
|
762
879
|
"num-traits",
|
|
763
880
|
"rusticata-macros",
|
|
@@ -769,7 +886,6 @@ version = "0.5.8"
|
|
|
769
886
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
887
|
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
771
888
|
dependencies = [
|
|
772
|
-
"powerfmt",
|
|
773
889
|
"serde_core",
|
|
774
890
|
]
|
|
775
891
|
|
|
@@ -798,13 +914,13 @@ dependencies = [
|
|
|
798
914
|
|
|
799
915
|
[[package]]
|
|
800
916
|
name = "displaydoc"
|
|
801
|
-
version = "0.2.
|
|
917
|
+
version = "0.2.7"
|
|
802
918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
-
checksum = "
|
|
919
|
+
checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
|
|
804
920
|
dependencies = [
|
|
805
921
|
"proc-macro2",
|
|
806
922
|
"quote",
|
|
807
|
-
"syn
|
|
923
|
+
"syn 3.0.5",
|
|
808
924
|
]
|
|
809
925
|
|
|
810
926
|
[[package]]
|
|
@@ -813,6 +929,15 @@ version = "1.0.20"
|
|
|
813
929
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
930
|
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
815
931
|
|
|
932
|
+
[[package]]
|
|
933
|
+
name = "ecb"
|
|
934
|
+
version = "0.2.1"
|
|
935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
+
checksum = "26f2a8b3e564eba0877223dc343703ad0385794e882e6d13f3a4dd5c6b1f41ac"
|
|
937
|
+
dependencies = [
|
|
938
|
+
"cipher",
|
|
939
|
+
]
|
|
940
|
+
|
|
816
941
|
[[package]]
|
|
817
942
|
name = "ecdsa"
|
|
818
943
|
version = "0.16.9"
|
|
@@ -856,9 +981,9 @@ dependencies = [
|
|
|
856
981
|
|
|
857
982
|
[[package]]
|
|
858
983
|
name = "either"
|
|
859
|
-
version = "1.
|
|
984
|
+
version = "1.18.0"
|
|
860
985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
-
checksum = "
|
|
986
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
862
987
|
|
|
863
988
|
[[package]]
|
|
864
989
|
name = "elliptic-curve"
|
|
@@ -881,6 +1006,21 @@ dependencies = [
|
|
|
881
1006
|
"zeroize",
|
|
882
1007
|
]
|
|
883
1008
|
|
|
1009
|
+
[[package]]
|
|
1010
|
+
name = "encoding_rs"
|
|
1011
|
+
version = "0.8.41"
|
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
+
checksum = "7b5ef0006ac9ab233c38522f5ae99cae3625151de8f706cacee1cba4b8e2832a"
|
|
1014
|
+
dependencies = [
|
|
1015
|
+
"cfg-if",
|
|
1016
|
+
"core_detect",
|
|
1017
|
+
"multiversion",
|
|
1018
|
+
"multiversion_no_op",
|
|
1019
|
+
"rustversion",
|
|
1020
|
+
"scopeguard",
|
|
1021
|
+
"simdutf8",
|
|
1022
|
+
]
|
|
1023
|
+
|
|
884
1024
|
[[package]]
|
|
885
1025
|
name = "equivalent"
|
|
886
1026
|
version = "1.0.2"
|
|
@@ -905,9 +1045,9 @@ checksum = "4a61bffc6f807b136c3efeeac295edde2c65b1e345de7ea777e75f63de7436c6"
|
|
|
905
1045
|
|
|
906
1046
|
[[package]]
|
|
907
1047
|
name = "fastrand"
|
|
908
|
-
version = "2.
|
|
1048
|
+
version = "2.5.0"
|
|
909
1049
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
-
checksum = "
|
|
1050
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
911
1051
|
|
|
912
1052
|
[[package]]
|
|
913
1053
|
name = "ff"
|
|
@@ -927,18 +1067,19 @@ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
|
|
|
927
1067
|
|
|
928
1068
|
[[package]]
|
|
929
1069
|
name = "find-msvc-tools"
|
|
930
|
-
version = "0.1.
|
|
1070
|
+
version = "0.1.12"
|
|
931
1071
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
932
|
-
checksum = "
|
|
1072
|
+
checksum = "3e0f1c7c3a72c66fd80abe965175f7523475c0489a87d3ff9d6e8c87d87a9d2d"
|
|
933
1073
|
|
|
934
1074
|
[[package]]
|
|
935
1075
|
name = "flate2"
|
|
936
|
-
version = "1.1.
|
|
1076
|
+
version = "1.1.10"
|
|
937
1077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
-
checksum = "
|
|
1078
|
+
checksum = "6e634e2e0ebac1ee034020da1ca582e17ffe4e0f5e985823721e168928136dcb"
|
|
939
1079
|
dependencies = [
|
|
940
1080
|
"crc32fast",
|
|
941
|
-
"miniz_oxide 0.
|
|
1081
|
+
"miniz_oxide 0.9.1",
|
|
1082
|
+
"zlib-rs",
|
|
942
1083
|
]
|
|
943
1084
|
|
|
944
1085
|
[[package]]
|
|
@@ -947,12 +1088,6 @@ version = "1.0.7"
|
|
|
947
1088
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
1089
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
949
1090
|
|
|
950
|
-
[[package]]
|
|
951
|
-
name = "foldhash"
|
|
952
|
-
version = "0.1.5"
|
|
953
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
-
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
955
|
-
|
|
956
1091
|
[[package]]
|
|
957
1092
|
name = "foreign-types"
|
|
958
1093
|
version = "0.3.2"
|
|
@@ -985,36 +1120,36 @@ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
|
985
1120
|
|
|
986
1121
|
[[package]]
|
|
987
1122
|
name = "futures-channel"
|
|
988
|
-
version = "0.3.
|
|
1123
|
+
version = "0.3.34"
|
|
989
1124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
990
|
-
checksum = "
|
|
1125
|
+
checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4"
|
|
991
1126
|
dependencies = [
|
|
992
1127
|
"futures-core",
|
|
993
1128
|
]
|
|
994
1129
|
|
|
995
1130
|
[[package]]
|
|
996
1131
|
name = "futures-core"
|
|
997
|
-
version = "0.3.
|
|
1132
|
+
version = "0.3.34"
|
|
998
1133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
-
checksum = "
|
|
1134
|
+
checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
|
|
1000
1135
|
|
|
1001
1136
|
[[package]]
|
|
1002
1137
|
name = "futures-sink"
|
|
1003
|
-
version = "0.3.
|
|
1138
|
+
version = "0.3.34"
|
|
1004
1139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
-
checksum = "
|
|
1140
|
+
checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d"
|
|
1006
1141
|
|
|
1007
1142
|
[[package]]
|
|
1008
1143
|
name = "futures-task"
|
|
1009
|
-
version = "0.3.
|
|
1144
|
+
version = "0.3.34"
|
|
1010
1145
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
-
checksum = "
|
|
1146
|
+
checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
|
|
1012
1147
|
|
|
1013
1148
|
[[package]]
|
|
1014
1149
|
name = "futures-util"
|
|
1015
|
-
version = "0.3.
|
|
1150
|
+
version = "0.3.34"
|
|
1016
1151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
-
checksum = "
|
|
1152
|
+
checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
|
|
1018
1153
|
dependencies = [
|
|
1019
1154
|
"futures-core",
|
|
1020
1155
|
"futures-task",
|
|
@@ -1062,22 +1197,23 @@ dependencies = [
|
|
|
1062
1197
|
|
|
1063
1198
|
[[package]]
|
|
1064
1199
|
name = "getrandom"
|
|
1065
|
-
version = "0.4.
|
|
1200
|
+
version = "0.4.3"
|
|
1066
1201
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1067
|
-
checksum = "
|
|
1202
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
1068
1203
|
dependencies = [
|
|
1069
1204
|
"cfg-if",
|
|
1205
|
+
"js-sys",
|
|
1070
1206
|
"libc",
|
|
1071
1207
|
"r-efi 6.0.0",
|
|
1072
|
-
"
|
|
1073
|
-
"
|
|
1208
|
+
"rand_core 0.10.1",
|
|
1209
|
+
"wasm-bindgen",
|
|
1074
1210
|
]
|
|
1075
1211
|
|
|
1076
1212
|
[[package]]
|
|
1077
1213
|
name = "glob"
|
|
1078
|
-
version = "0.3.
|
|
1214
|
+
version = "0.3.4"
|
|
1079
1215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
-
checksum = "
|
|
1216
|
+
checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
|
|
1081
1217
|
|
|
1082
1218
|
[[package]]
|
|
1083
1219
|
name = "group"
|
|
@@ -1092,9 +1228,9 @@ dependencies = [
|
|
|
1092
1228
|
|
|
1093
1229
|
[[package]]
|
|
1094
1230
|
name = "h2"
|
|
1095
|
-
version = "0.4.
|
|
1231
|
+
version = "0.4.19"
|
|
1096
1232
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1097
|
-
checksum = "
|
|
1233
|
+
checksum = "ef8e5e5a340588f4452631496976cf8636d4a7ecf600239fdc27615d2530bc16"
|
|
1098
1234
|
dependencies = [
|
|
1099
1235
|
"atomic-waker",
|
|
1100
1236
|
"bytes",
|
|
@@ -1102,7 +1238,7 @@ dependencies = [
|
|
|
1102
1238
|
"futures-core",
|
|
1103
1239
|
"futures-sink",
|
|
1104
1240
|
"http",
|
|
1105
|
-
"indexmap 2.
|
|
1241
|
+
"indexmap 2.14.2",
|
|
1106
1242
|
"slab",
|
|
1107
1243
|
"tokio",
|
|
1108
1244
|
"tokio-util",
|
|
@@ -1128,18 +1264,9 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
|
1128
1264
|
|
|
1129
1265
|
[[package]]
|
|
1130
1266
|
name = "hashbrown"
|
|
1131
|
-
version = "0.
|
|
1132
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
-
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1134
|
-
dependencies = [
|
|
1135
|
-
"foldhash",
|
|
1136
|
-
]
|
|
1137
|
-
|
|
1138
|
-
[[package]]
|
|
1139
|
-
name = "hashbrown"
|
|
1140
|
-
version = "0.16.1"
|
|
1267
|
+
version = "0.17.1"
|
|
1141
1268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
-
checksum = "
|
|
1269
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
1143
1270
|
|
|
1144
1271
|
[[package]]
|
|
1145
1272
|
name = "heck"
|
|
@@ -1189,9 +1316,9 @@ dependencies = [
|
|
|
1189
1316
|
|
|
1190
1317
|
[[package]]
|
|
1191
1318
|
name = "http-body"
|
|
1192
|
-
version = "1.0
|
|
1319
|
+
version = "1.1.0"
|
|
1193
1320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1194
|
-
checksum = "
|
|
1321
|
+
checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
|
|
1195
1322
|
dependencies = [
|
|
1196
1323
|
"bytes",
|
|
1197
1324
|
"http",
|
|
@@ -1199,9 +1326,9 @@ dependencies = [
|
|
|
1199
1326
|
|
|
1200
1327
|
[[package]]
|
|
1201
1328
|
name = "http-body-util"
|
|
1202
|
-
version = "0.1.
|
|
1329
|
+
version = "0.1.5"
|
|
1203
1330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1204
|
-
checksum = "
|
|
1331
|
+
checksum = "23169fe34a5fbcdd3f3862e78fb9b6fccd5f02a6dc6f732547005d45631ce71c"
|
|
1205
1332
|
dependencies = [
|
|
1206
1333
|
"bytes",
|
|
1207
1334
|
"futures-core",
|
|
@@ -1218,18 +1345,18 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
|
1218
1345
|
|
|
1219
1346
|
[[package]]
|
|
1220
1347
|
name = "hybrid-array"
|
|
1221
|
-
version = "0.4.
|
|
1348
|
+
version = "0.4.15"
|
|
1222
1349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1223
|
-
checksum = "
|
|
1350
|
+
checksum = "27f864f10dfb56725ce5ce5472bc52252c8f93a4ab86327122cebf62c5f59a17"
|
|
1224
1351
|
dependencies = [
|
|
1225
1352
|
"typenum",
|
|
1226
1353
|
]
|
|
1227
1354
|
|
|
1228
1355
|
[[package]]
|
|
1229
1356
|
name = "hyper"
|
|
1230
|
-
version = "1.
|
|
1357
|
+
version = "1.11.1"
|
|
1231
1358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1232
|
-
checksum = "
|
|
1359
|
+
checksum = "27b501faa50e7a26c3d3560ca625132f4078a17771f4810baf70475ae48cbe43"
|
|
1233
1360
|
dependencies = [
|
|
1234
1361
|
"atomic-waker",
|
|
1235
1362
|
"bytes",
|
|
@@ -1241,7 +1368,6 @@ dependencies = [
|
|
|
1241
1368
|
"httparse",
|
|
1242
1369
|
"itoa",
|
|
1243
1370
|
"pin-project-lite",
|
|
1244
|
-
"pin-utils",
|
|
1245
1371
|
"smallvec",
|
|
1246
1372
|
"tokio",
|
|
1247
1373
|
"want",
|
|
@@ -1249,15 +1375,14 @@ dependencies = [
|
|
|
1249
1375
|
|
|
1250
1376
|
[[package]]
|
|
1251
1377
|
name = "hyper-rustls"
|
|
1252
|
-
version = "0.27.
|
|
1378
|
+
version = "0.27.9"
|
|
1253
1379
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1254
|
-
checksum = "
|
|
1380
|
+
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
1255
1381
|
dependencies = [
|
|
1256
1382
|
"http",
|
|
1257
1383
|
"hyper",
|
|
1258
1384
|
"hyper-util",
|
|
1259
1385
|
"rustls",
|
|
1260
|
-
"rustls-pki-types",
|
|
1261
1386
|
"tokio",
|
|
1262
1387
|
"tokio-rustls",
|
|
1263
1388
|
"tower-service",
|
|
@@ -1315,12 +1440,13 @@ dependencies = [
|
|
|
1315
1440
|
|
|
1316
1441
|
[[package]]
|
|
1317
1442
|
name = "icu_collections"
|
|
1318
|
-
version = "2.
|
|
1443
|
+
version = "2.3.0"
|
|
1319
1444
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
-
checksum = "
|
|
1445
|
+
checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"
|
|
1321
1446
|
dependencies = [
|
|
1322
1447
|
"displaydoc",
|
|
1323
1448
|
"potential_utf",
|
|
1449
|
+
"utf8_iter",
|
|
1324
1450
|
"yoke",
|
|
1325
1451
|
"zerofrom",
|
|
1326
1452
|
"zerovec",
|
|
@@ -1328,9 +1454,9 @@ dependencies = [
|
|
|
1328
1454
|
|
|
1329
1455
|
[[package]]
|
|
1330
1456
|
name = "icu_locale_core"
|
|
1331
|
-
version = "2.
|
|
1457
|
+
version = "2.3.0"
|
|
1332
1458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1333
|
-
checksum = "
|
|
1459
|
+
checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"
|
|
1334
1460
|
dependencies = [
|
|
1335
1461
|
"displaydoc",
|
|
1336
1462
|
"litemap",
|
|
@@ -1341,9 +1467,9 @@ dependencies = [
|
|
|
1341
1467
|
|
|
1342
1468
|
[[package]]
|
|
1343
1469
|
name = "icu_normalizer"
|
|
1344
|
-
version = "2.
|
|
1470
|
+
version = "2.3.0"
|
|
1345
1471
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1346
|
-
checksum = "
|
|
1472
|
+
checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f"
|
|
1347
1473
|
dependencies = [
|
|
1348
1474
|
"icu_collections",
|
|
1349
1475
|
"icu_normalizer_data",
|
|
@@ -1355,16 +1481,17 @@ dependencies = [
|
|
|
1355
1481
|
|
|
1356
1482
|
[[package]]
|
|
1357
1483
|
name = "icu_normalizer_data"
|
|
1358
|
-
version = "2.
|
|
1484
|
+
version = "2.3.0"
|
|
1359
1485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1360
|
-
checksum = "
|
|
1486
|
+
checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0"
|
|
1361
1487
|
|
|
1362
1488
|
[[package]]
|
|
1363
1489
|
name = "icu_properties"
|
|
1364
|
-
version = "2.
|
|
1490
|
+
version = "2.3.0"
|
|
1365
1491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1366
|
-
checksum = "
|
|
1492
|
+
checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148"
|
|
1367
1493
|
dependencies = [
|
|
1494
|
+
"displaydoc",
|
|
1368
1495
|
"icu_collections",
|
|
1369
1496
|
"icu_locale_core",
|
|
1370
1497
|
"icu_properties_data",
|
|
@@ -1375,15 +1502,15 @@ dependencies = [
|
|
|
1375
1502
|
|
|
1376
1503
|
[[package]]
|
|
1377
1504
|
name = "icu_properties_data"
|
|
1378
|
-
version = "2.
|
|
1505
|
+
version = "2.3.0"
|
|
1379
1506
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
-
checksum = "
|
|
1507
|
+
checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"
|
|
1381
1508
|
|
|
1382
1509
|
[[package]]
|
|
1383
1510
|
name = "icu_provider"
|
|
1384
|
-
version = "2.
|
|
1511
|
+
version = "2.3.1"
|
|
1385
1512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1386
|
-
checksum = "
|
|
1513
|
+
checksum = "d27bbb9d3abbefac45d55f647c9de1d44aafcd1186eb91879afef17c396c3e73"
|
|
1387
1514
|
dependencies = [
|
|
1388
1515
|
"displaydoc",
|
|
1389
1516
|
"icu_locale_core",
|
|
@@ -1394,19 +1521,13 @@ dependencies = [
|
|
|
1394
1521
|
"zerovec",
|
|
1395
1522
|
]
|
|
1396
1523
|
|
|
1397
|
-
[[package]]
|
|
1398
|
-
name = "id-arena"
|
|
1399
|
-
version = "2.3.0"
|
|
1400
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
-
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
1402
|
-
|
|
1403
1524
|
[[package]]
|
|
1404
1525
|
name = "id3"
|
|
1405
1526
|
version = "1.17.1"
|
|
1406
1527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1407
1528
|
checksum = "24993fcabcbc07c8ac076a8e62db8593d1a5c4dbe81d57e531d2b7cb7f737380"
|
|
1408
1529
|
dependencies = [
|
|
1409
|
-
"bitflags",
|
|
1530
|
+
"bitflags 2.13.2",
|
|
1410
1531
|
"byteorder",
|
|
1411
1532
|
"flate2",
|
|
1412
1533
|
]
|
|
@@ -1430,9 +1551,9 @@ dependencies = [
|
|
|
1430
1551
|
|
|
1431
1552
|
[[package]]
|
|
1432
1553
|
name = "idna_adapter"
|
|
1433
|
-
version = "1.2.
|
|
1554
|
+
version = "1.2.2"
|
|
1434
1555
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
-
checksum = "
|
|
1556
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
1436
1557
|
dependencies = [
|
|
1437
1558
|
"icu_normalizer",
|
|
1438
1559
|
"icu_properties",
|
|
@@ -1462,12 +1583,12 @@ dependencies = [
|
|
|
1462
1583
|
|
|
1463
1584
|
[[package]]
|
|
1464
1585
|
name = "indexmap"
|
|
1465
|
-
version = "2.
|
|
1586
|
+
version = "2.14.2"
|
|
1466
1587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1467
|
-
checksum = "
|
|
1588
|
+
checksum = "cc4e190f5d26ca7051642629da2c52fc03bde85a03197c99408dcd291734c855"
|
|
1468
1589
|
dependencies = [
|
|
1469
1590
|
"equivalent",
|
|
1470
|
-
"hashbrown 0.
|
|
1591
|
+
"hashbrown 0.17.1",
|
|
1471
1592
|
"serde",
|
|
1472
1593
|
"serde_core",
|
|
1473
1594
|
]
|
|
@@ -1481,11 +1602,21 @@ dependencies = [
|
|
|
1481
1602
|
"rustversion",
|
|
1482
1603
|
]
|
|
1483
1604
|
|
|
1605
|
+
[[package]]
|
|
1606
|
+
name = "inout"
|
|
1607
|
+
version = "0.2.2"
|
|
1608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1609
|
+
checksum = "4250ce6452e92010fdf7268ccc5d14faa80bb12fc741938534c58f16804e03c7"
|
|
1610
|
+
dependencies = [
|
|
1611
|
+
"block-padding",
|
|
1612
|
+
"hybrid-array",
|
|
1613
|
+
]
|
|
1614
|
+
|
|
1484
1615
|
[[package]]
|
|
1485
1616
|
name = "ipnet"
|
|
1486
|
-
version = "2.12.
|
|
1617
|
+
version = "2.12.2"
|
|
1487
1618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1488
|
-
checksum = "
|
|
1619
|
+
checksum = "791930b43c0d5973160d90a8f3894509f2b273430f5c5c73b668636d0287c5c0"
|
|
1489
1620
|
|
|
1490
1621
|
[[package]]
|
|
1491
1622
|
name = "iref"
|
|
@@ -1509,25 +1640,6 @@ dependencies = [
|
|
|
1509
1640
|
"thiserror 1.0.69",
|
|
1510
1641
|
]
|
|
1511
1642
|
|
|
1512
|
-
[[package]]
|
|
1513
|
-
name = "iri-string"
|
|
1514
|
-
version = "0.7.10"
|
|
1515
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1516
|
-
checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
|
|
1517
|
-
dependencies = [
|
|
1518
|
-
"memchr",
|
|
1519
|
-
"serde",
|
|
1520
|
-
]
|
|
1521
|
-
|
|
1522
|
-
[[package]]
|
|
1523
|
-
name = "itertools"
|
|
1524
|
-
version = "0.12.1"
|
|
1525
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1526
|
-
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
1527
|
-
dependencies = [
|
|
1528
|
-
"either",
|
|
1529
|
-
]
|
|
1530
|
-
|
|
1531
1643
|
[[package]]
|
|
1532
1644
|
name = "itertools"
|
|
1533
1645
|
version = "0.13.0"
|
|
@@ -1539,9 +1651,9 @@ dependencies = [
|
|
|
1539
1651
|
|
|
1540
1652
|
[[package]]
|
|
1541
1653
|
name = "itoa"
|
|
1542
|
-
version = "1.0.
|
|
1654
|
+
version = "1.0.18"
|
|
1543
1655
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1544
|
-
checksum = "
|
|
1656
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1545
1657
|
|
|
1546
1658
|
[[package]]
|
|
1547
1659
|
name = "jfifdump"
|
|
@@ -1551,28 +1663,40 @@ checksum = "68cf72bc7b75b6615ffd06bfe6840f3c57e7e4ea615558a2a452f458ebf5551e"
|
|
|
1551
1663
|
|
|
1552
1664
|
[[package]]
|
|
1553
1665
|
name = "jiff"
|
|
1554
|
-
version = "0.2.
|
|
1666
|
+
version = "0.2.35"
|
|
1555
1667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1556
|
-
checksum = "
|
|
1668
|
+
checksum = "668b7183bd07af9a4885f5c35b0cc5c83c4607a913c16b7e17291832910d2dcc"
|
|
1557
1669
|
dependencies = [
|
|
1670
|
+
"defmt",
|
|
1671
|
+
"jiff-core",
|
|
1558
1672
|
"jiff-static",
|
|
1559
1673
|
"jiff-tzdb-platform",
|
|
1560
1674
|
"log",
|
|
1561
1675
|
"portable-atomic",
|
|
1562
1676
|
"portable-atomic-util",
|
|
1563
1677
|
"serde_core",
|
|
1564
|
-
"windows-
|
|
1678
|
+
"windows-link",
|
|
1679
|
+
]
|
|
1680
|
+
|
|
1681
|
+
[[package]]
|
|
1682
|
+
name = "jiff-core"
|
|
1683
|
+
version = "0.1.0"
|
|
1684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1685
|
+
checksum = "7feca88439efe53da3754500c1851dedf3cb36c524dd5cf8225cc0794de95d09"
|
|
1686
|
+
dependencies = [
|
|
1687
|
+
"defmt",
|
|
1565
1688
|
]
|
|
1566
1689
|
|
|
1567
1690
|
[[package]]
|
|
1568
1691
|
name = "jiff-static"
|
|
1569
|
-
version = "0.2.
|
|
1692
|
+
version = "0.2.35"
|
|
1570
1693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1571
|
-
checksum = "
|
|
1694
|
+
checksum = "3a69dcb3a21cfb32ce1cd056169337ca284af0766dd766e7878819b251a49204"
|
|
1572
1695
|
dependencies = [
|
|
1696
|
+
"jiff-core",
|
|
1573
1697
|
"proc-macro2",
|
|
1574
1698
|
"quote",
|
|
1575
|
-
"syn 2.0.
|
|
1699
|
+
"syn 2.0.119",
|
|
1576
1700
|
]
|
|
1577
1701
|
|
|
1578
1702
|
[[package]]
|
|
@@ -1592,9 +1716,9 @@ dependencies = [
|
|
|
1592
1716
|
|
|
1593
1717
|
[[package]]
|
|
1594
1718
|
name = "js-sys"
|
|
1595
|
-
version = "0.3.
|
|
1719
|
+
version = "0.3.105"
|
|
1596
1720
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1597
|
-
checksum = "
|
|
1721
|
+
checksum = "ce57d20d1ea864ce2ac172ab472d409214f4fd359f0b2a2775abdf522e2af99e"
|
|
1598
1722
|
dependencies = [
|
|
1599
1723
|
"cfg-if",
|
|
1600
1724
|
"futures-util",
|
|
@@ -1610,23 +1734,11 @@ dependencies = [
|
|
|
1610
1734
|
"spin",
|
|
1611
1735
|
]
|
|
1612
1736
|
|
|
1613
|
-
[[package]]
|
|
1614
|
-
name = "lazycell"
|
|
1615
|
-
version = "1.3.0"
|
|
1616
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1617
|
-
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
1618
|
-
|
|
1619
|
-
[[package]]
|
|
1620
|
-
name = "leb128fmt"
|
|
1621
|
-
version = "0.1.0"
|
|
1622
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1623
|
-
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1624
|
-
|
|
1625
1737
|
[[package]]
|
|
1626
1738
|
name = "libc"
|
|
1627
|
-
version = "0.2.
|
|
1739
|
+
version = "0.2.189"
|
|
1628
1740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1629
|
-
checksum = "
|
|
1741
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
1630
1742
|
|
|
1631
1743
|
[[package]]
|
|
1632
1744
|
name = "libloading"
|
|
@@ -1652,9 +1764,9 @@ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
|
1652
1764
|
|
|
1653
1765
|
[[package]]
|
|
1654
1766
|
name = "litemap"
|
|
1655
|
-
version = "0.8.
|
|
1767
|
+
version = "0.8.3"
|
|
1656
1768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1657
|
-
checksum = "
|
|
1769
|
+
checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
|
|
1658
1770
|
|
|
1659
1771
|
[[package]]
|
|
1660
1772
|
name = "log"
|
|
@@ -1662,6 +1774,36 @@ version = "0.4.34"
|
|
|
1662
1774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1663
1775
|
checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
|
|
1664
1776
|
|
|
1777
|
+
[[package]]
|
|
1778
|
+
name = "lopdf"
|
|
1779
|
+
version = "0.44.0"
|
|
1780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1781
|
+
checksum = "5e2ec995d822e05cabc3f06d196ee43650af3fe4fe38012cacb35e0c3d113b68"
|
|
1782
|
+
dependencies = [
|
|
1783
|
+
"aes",
|
|
1784
|
+
"bitflags 2.13.2",
|
|
1785
|
+
"cbc",
|
|
1786
|
+
"chrono",
|
|
1787
|
+
"ecb",
|
|
1788
|
+
"encoding_rs",
|
|
1789
|
+
"flate2",
|
|
1790
|
+
"getrandom 0.4.3",
|
|
1791
|
+
"indexmap 2.14.2",
|
|
1792
|
+
"itoa",
|
|
1793
|
+
"jiff",
|
|
1794
|
+
"log",
|
|
1795
|
+
"md-5",
|
|
1796
|
+
"nom 8.0.0",
|
|
1797
|
+
"rand 0.10.2",
|
|
1798
|
+
"rangemap",
|
|
1799
|
+
"rayon",
|
|
1800
|
+
"sha2 0.11.0",
|
|
1801
|
+
"stringprep",
|
|
1802
|
+
"thiserror 2.0.20",
|
|
1803
|
+
"time",
|
|
1804
|
+
"weezl",
|
|
1805
|
+
]
|
|
1806
|
+
|
|
1665
1807
|
[[package]]
|
|
1666
1808
|
name = "lru-slab"
|
|
1667
1809
|
version = "0.1.2"
|
|
@@ -1688,7 +1830,17 @@ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
|
1688
1830
|
dependencies = [
|
|
1689
1831
|
"proc-macro2",
|
|
1690
1832
|
"quote",
|
|
1691
|
-
"syn 2.0.
|
|
1833
|
+
"syn 2.0.119",
|
|
1834
|
+
]
|
|
1835
|
+
|
|
1836
|
+
[[package]]
|
|
1837
|
+
name = "md-5"
|
|
1838
|
+
version = "0.11.0"
|
|
1839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1840
|
+
checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
|
|
1841
|
+
dependencies = [
|
|
1842
|
+
"cfg-if",
|
|
1843
|
+
"digest 0.11.3",
|
|
1692
1844
|
]
|
|
1693
1845
|
|
|
1694
1846
|
[[package]]
|
|
@@ -1710,7 +1862,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1710
1862
|
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1711
1863
|
dependencies = [
|
|
1712
1864
|
"adler2",
|
|
1713
|
-
"simd-adler32",
|
|
1714
1865
|
]
|
|
1715
1866
|
|
|
1716
1867
|
[[package]]
|
|
@@ -1725,15 +1876,42 @@ dependencies = [
|
|
|
1725
1876
|
|
|
1726
1877
|
[[package]]
|
|
1727
1878
|
name = "mio"
|
|
1728
|
-
version = "1.
|
|
1879
|
+
version = "1.2.3"
|
|
1729
1880
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1730
|
-
checksum = "
|
|
1881
|
+
checksum = "4b18443e9c262bfe8fa82f51666e2642c53393f7e5c27b3e1aeab922cff5b9d8"
|
|
1731
1882
|
dependencies = [
|
|
1732
1883
|
"libc",
|
|
1733
1884
|
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
1734
1885
|
"windows-sys 0.61.2",
|
|
1735
1886
|
]
|
|
1736
1887
|
|
|
1888
|
+
[[package]]
|
|
1889
|
+
name = "multiversion"
|
|
1890
|
+
version = "0.9.0"
|
|
1891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1892
|
+
checksum = "b4ca4bea16ffc3f443cf7d866912118196bfef4c6a1556ca00f9f9b00bb43f7c"
|
|
1893
|
+
dependencies = [
|
|
1894
|
+
"multiversion-macros",
|
|
1895
|
+
]
|
|
1896
|
+
|
|
1897
|
+
[[package]]
|
|
1898
|
+
name = "multiversion-macros"
|
|
1899
|
+
version = "0.9.0"
|
|
1900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1901
|
+
checksum = "0d416831a7317ef4b08bee00b69cbbb9c8763da7959a7026244d6266869f9c83"
|
|
1902
|
+
dependencies = [
|
|
1903
|
+
"proc-macro2",
|
|
1904
|
+
"quote",
|
|
1905
|
+
"rustversion",
|
|
1906
|
+
"syn 3.0.5",
|
|
1907
|
+
]
|
|
1908
|
+
|
|
1909
|
+
[[package]]
|
|
1910
|
+
name = "multiversion_no_op"
|
|
1911
|
+
version = "1.0.0"
|
|
1912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1913
|
+
checksum = "743fb55ba31b18fb1ecef6bdc9aa2743314978ac084044301a7eee33fb99a20d"
|
|
1914
|
+
|
|
1737
1915
|
[[package]]
|
|
1738
1916
|
name = "nom"
|
|
1739
1917
|
version = "7.1.3"
|
|
@@ -1744,6 +1922,15 @@ dependencies = [
|
|
|
1744
1922
|
"minimal-lexical",
|
|
1745
1923
|
]
|
|
1746
1924
|
|
|
1925
|
+
[[package]]
|
|
1926
|
+
name = "nom"
|
|
1927
|
+
version = "8.0.0"
|
|
1928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1929
|
+
checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
|
|
1930
|
+
dependencies = [
|
|
1931
|
+
"memchr",
|
|
1932
|
+
]
|
|
1933
|
+
|
|
1747
1934
|
[[package]]
|
|
1748
1935
|
name = "non-empty-string"
|
|
1749
1936
|
version = "0.2.6"
|
|
@@ -1756,18 +1943,18 @@ dependencies = [
|
|
|
1756
1943
|
|
|
1757
1944
|
[[package]]
|
|
1758
1945
|
name = "nonempty-collections"
|
|
1759
|
-
version = "1.
|
|
1946
|
+
version = "1.4.0"
|
|
1760
1947
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1761
|
-
checksum = "
|
|
1948
|
+
checksum = "988fb92b275335f315a9bddf7a8881a02c79c6084e9a626f656f12c50776a045"
|
|
1762
1949
|
dependencies = [
|
|
1763
1950
|
"serde",
|
|
1764
1951
|
]
|
|
1765
1952
|
|
|
1766
1953
|
[[package]]
|
|
1767
1954
|
name = "num-bigint"
|
|
1768
|
-
version = "0.4.
|
|
1955
|
+
version = "0.4.8"
|
|
1769
1956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1770
|
-
checksum = "
|
|
1957
|
+
checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
|
|
1771
1958
|
dependencies = [
|
|
1772
1959
|
"num-integer",
|
|
1773
1960
|
"num-traits",
|
|
@@ -1784,7 +1971,7 @@ dependencies = [
|
|
|
1784
1971
|
"num-integer",
|
|
1785
1972
|
"num-iter",
|
|
1786
1973
|
"num-traits",
|
|
1787
|
-
"rand 0.8.
|
|
1974
|
+
"rand 0.8.8",
|
|
1788
1975
|
"serde",
|
|
1789
1976
|
"smallvec",
|
|
1790
1977
|
"zeroize",
|
|
@@ -1792,26 +1979,25 @@ dependencies = [
|
|
|
1792
1979
|
|
|
1793
1980
|
[[package]]
|
|
1794
1981
|
name = "num-conv"
|
|
1795
|
-
version = "0.2.
|
|
1982
|
+
version = "0.2.2"
|
|
1796
1983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1797
|
-
checksum = "
|
|
1984
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
1798
1985
|
|
|
1799
1986
|
[[package]]
|
|
1800
1987
|
name = "num-integer"
|
|
1801
|
-
version = "0.1.
|
|
1988
|
+
version = "0.1.47"
|
|
1802
1989
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1803
|
-
checksum = "
|
|
1990
|
+
checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
|
|
1804
1991
|
dependencies = [
|
|
1805
1992
|
"num-traits",
|
|
1806
1993
|
]
|
|
1807
1994
|
|
|
1808
1995
|
[[package]]
|
|
1809
1996
|
name = "num-iter"
|
|
1810
|
-
version = "0.1.
|
|
1997
|
+
version = "0.1.46"
|
|
1811
1998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1812
|
-
checksum = "
|
|
1999
|
+
checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b"
|
|
1813
2000
|
dependencies = [
|
|
1814
|
-
"autocfg",
|
|
1815
2001
|
"num-integer",
|
|
1816
2002
|
"num-traits",
|
|
1817
2003
|
]
|
|
@@ -1847,7 +2033,7 @@ version = "0.10.81"
|
|
|
1847
2033
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1848
2034
|
checksum = "77823a27f0babb03091cb9ed9ef80af3b39dbc82f97e8fa530374b7dafd87a45"
|
|
1849
2035
|
dependencies = [
|
|
1850
|
-
"bitflags",
|
|
2036
|
+
"bitflags 2.13.2",
|
|
1851
2037
|
"cfg-if",
|
|
1852
2038
|
"foreign-types",
|
|
1853
2039
|
"libc",
|
|
@@ -1863,14 +2049,14 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
|
1863
2049
|
dependencies = [
|
|
1864
2050
|
"proc-macro2",
|
|
1865
2051
|
"quote",
|
|
1866
|
-
"syn 2.0.
|
|
2052
|
+
"syn 2.0.119",
|
|
1867
2053
|
]
|
|
1868
2054
|
|
|
1869
2055
|
[[package]]
|
|
1870
2056
|
name = "openssl-src"
|
|
1871
|
-
version = "300.
|
|
2057
|
+
version = "300.6.1+3.6.3"
|
|
1872
2058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1873
|
-
checksum = "
|
|
2059
|
+
checksum = "46eb8fb9fb3b61ce1c0f8a026c4c1a0714d3a9e138e7fbde78753ce2babc3846"
|
|
1874
2060
|
dependencies = [
|
|
1875
2061
|
"cc",
|
|
1876
2062
|
]
|
|
@@ -1976,12 +2162,6 @@ version = "0.2.17"
|
|
|
1976
2162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1977
2163
|
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1978
2164
|
|
|
1979
|
-
[[package]]
|
|
1980
|
-
name = "pin-utils"
|
|
1981
|
-
version = "0.1.0"
|
|
1982
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1983
|
-
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1984
|
-
|
|
1985
2165
|
[[package]]
|
|
1986
2166
|
name = "pix"
|
|
1987
2167
|
version = "0.14.0"
|
|
@@ -2011,9 +2191,9 @@ dependencies = [
|
|
|
2011
2191
|
|
|
2012
2192
|
[[package]]
|
|
2013
2193
|
name = "pkg-config"
|
|
2014
|
-
version = "0.3.
|
|
2194
|
+
version = "0.3.34"
|
|
2015
2195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2016
|
-
checksum = "
|
|
2196
|
+
checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
|
|
2017
2197
|
|
|
2018
2198
|
[[package]]
|
|
2019
2199
|
name = "png_pong"
|
|
@@ -2030,24 +2210,24 @@ dependencies = [
|
|
|
2030
2210
|
|
|
2031
2211
|
[[package]]
|
|
2032
2212
|
name = "portable-atomic"
|
|
2033
|
-
version = "1.
|
|
2213
|
+
version = "1.15.0"
|
|
2034
2214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2035
|
-
checksum = "
|
|
2215
|
+
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
2036
2216
|
|
|
2037
2217
|
[[package]]
|
|
2038
2218
|
name = "portable-atomic-util"
|
|
2039
|
-
version = "0.2.
|
|
2219
|
+
version = "0.2.8"
|
|
2040
2220
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2041
|
-
checksum = "
|
|
2221
|
+
checksum = "10ab3eb7f3becc3a1cbc4f2c6f20267996cfc1a6467a873763411b136a122715"
|
|
2042
2222
|
dependencies = [
|
|
2043
2223
|
"portable-atomic",
|
|
2044
2224
|
]
|
|
2045
2225
|
|
|
2046
2226
|
[[package]]
|
|
2047
2227
|
name = "potential_utf"
|
|
2048
|
-
version = "0.1.
|
|
2228
|
+
version = "0.1.6"
|
|
2049
2229
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2050
|
-
checksum = "
|
|
2230
|
+
checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
|
|
2051
2231
|
dependencies = [
|
|
2052
2232
|
"zerovec",
|
|
2053
2233
|
]
|
|
@@ -2067,16 +2247,6 @@ dependencies = [
|
|
|
2067
2247
|
"zerocopy",
|
|
2068
2248
|
]
|
|
2069
2249
|
|
|
2070
|
-
[[package]]
|
|
2071
|
-
name = "prettyplease"
|
|
2072
|
-
version = "0.2.37"
|
|
2073
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2074
|
-
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
2075
|
-
dependencies = [
|
|
2076
|
-
"proc-macro2",
|
|
2077
|
-
"syn 2.0.117",
|
|
2078
|
-
]
|
|
2079
|
-
|
|
2080
2250
|
[[package]]
|
|
2081
2251
|
name = "primeorder"
|
|
2082
2252
|
version = "0.13.6"
|
|
@@ -2112,22 +2282,22 @@ dependencies = [
|
|
|
2112
2282
|
|
|
2113
2283
|
[[package]]
|
|
2114
2284
|
name = "proc-macro2"
|
|
2115
|
-
version = "1.0.
|
|
2285
|
+
version = "1.0.107"
|
|
2116
2286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2117
|
-
checksum = "
|
|
2287
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
2118
2288
|
dependencies = [
|
|
2119
2289
|
"unicode-ident",
|
|
2120
2290
|
]
|
|
2121
2291
|
|
|
2122
2292
|
[[package]]
|
|
2123
2293
|
name = "proptest"
|
|
2124
|
-
version = "1.
|
|
2294
|
+
version = "1.11.0"
|
|
2125
2295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2126
|
-
checksum = "
|
|
2296
|
+
checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
|
|
2127
2297
|
dependencies = [
|
|
2128
|
-
"bitflags",
|
|
2298
|
+
"bitflags 2.13.2",
|
|
2129
2299
|
"num-traits",
|
|
2130
|
-
"rand 0.9.
|
|
2300
|
+
"rand 0.9.5",
|
|
2131
2301
|
"rand_chacha 0.9.0",
|
|
2132
2302
|
"rand_xorshift",
|
|
2133
2303
|
"regex-syntax",
|
|
@@ -2145,19 +2315,19 @@ dependencies = [
|
|
|
2145
2315
|
|
|
2146
2316
|
[[package]]
|
|
2147
2317
|
name = "quinn"
|
|
2148
|
-
version = "0.11.
|
|
2318
|
+
version = "0.11.11"
|
|
2149
2319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2150
|
-
checksum = "
|
|
2320
|
+
checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
|
|
2151
2321
|
dependencies = [
|
|
2152
2322
|
"bytes",
|
|
2153
2323
|
"cfg_aliases",
|
|
2154
2324
|
"pin-project-lite",
|
|
2155
2325
|
"quinn-proto",
|
|
2156
2326
|
"quinn-udp",
|
|
2157
|
-
"rustc-hash
|
|
2327
|
+
"rustc-hash",
|
|
2158
2328
|
"rustls",
|
|
2159
2329
|
"socket2",
|
|
2160
|
-
"thiserror 2.0.
|
|
2330
|
+
"thiserror 2.0.20",
|
|
2161
2331
|
"tokio",
|
|
2162
2332
|
"tracing",
|
|
2163
2333
|
"web-time",
|
|
@@ -2165,20 +2335,21 @@ dependencies = [
|
|
|
2165
2335
|
|
|
2166
2336
|
[[package]]
|
|
2167
2337
|
name = "quinn-proto"
|
|
2168
|
-
version = "0.11.
|
|
2338
|
+
version = "0.11.17"
|
|
2169
2339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2170
|
-
checksum = "
|
|
2340
|
+
checksum = "04759210543be93709136e28212294a659ef5001836ff4eab4d663e4529bba83"
|
|
2171
2341
|
dependencies = [
|
|
2172
2342
|
"bytes",
|
|
2173
|
-
"getrandom 0.3
|
|
2343
|
+
"getrandom 0.4.3",
|
|
2174
2344
|
"lru-slab",
|
|
2175
|
-
"rand 0.
|
|
2345
|
+
"rand 0.10.2",
|
|
2346
|
+
"rand_pcg",
|
|
2176
2347
|
"ring",
|
|
2177
|
-
"rustc-hash
|
|
2348
|
+
"rustc-hash",
|
|
2178
2349
|
"rustls",
|
|
2179
2350
|
"rustls-pki-types",
|
|
2180
2351
|
"slab",
|
|
2181
|
-
"thiserror 2.0.
|
|
2352
|
+
"thiserror 2.0.20",
|
|
2182
2353
|
"tinyvec",
|
|
2183
2354
|
"tracing",
|
|
2184
2355
|
"web-time",
|
|
@@ -2186,23 +2357,23 @@ dependencies = [
|
|
|
2186
2357
|
|
|
2187
2358
|
[[package]]
|
|
2188
2359
|
name = "quinn-udp"
|
|
2189
|
-
version = "0.5.
|
|
2360
|
+
version = "0.5.15"
|
|
2190
2361
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2191
|
-
checksum = "
|
|
2362
|
+
checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
|
|
2192
2363
|
dependencies = [
|
|
2193
2364
|
"cfg_aliases",
|
|
2194
2365
|
"libc",
|
|
2195
2366
|
"once_cell",
|
|
2196
2367
|
"socket2",
|
|
2197
2368
|
"tracing",
|
|
2198
|
-
"windows-sys 0.
|
|
2369
|
+
"windows-sys 0.61.2",
|
|
2199
2370
|
]
|
|
2200
2371
|
|
|
2201
2372
|
[[package]]
|
|
2202
2373
|
name = "quote"
|
|
2203
|
-
version = "1.0.
|
|
2374
|
+
version = "1.0.47"
|
|
2204
2375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2205
|
-
checksum = "
|
|
2376
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
2206
2377
|
dependencies = [
|
|
2207
2378
|
"proc-macro2",
|
|
2208
2379
|
]
|
|
@@ -2227,9 +2398,9 @@ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
|
|
2227
2398
|
|
|
2228
2399
|
[[package]]
|
|
2229
2400
|
name = "rand"
|
|
2230
|
-
version = "0.8.
|
|
2401
|
+
version = "0.8.8"
|
|
2231
2402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2232
|
-
checksum = "
|
|
2403
|
+
checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c"
|
|
2233
2404
|
dependencies = [
|
|
2234
2405
|
"libc",
|
|
2235
2406
|
"rand_chacha 0.3.1",
|
|
@@ -2238,14 +2409,25 @@ dependencies = [
|
|
|
2238
2409
|
|
|
2239
2410
|
[[package]]
|
|
2240
2411
|
name = "rand"
|
|
2241
|
-
version = "0.9.
|
|
2412
|
+
version = "0.9.5"
|
|
2242
2413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2243
|
-
checksum = "
|
|
2414
|
+
checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
|
|
2244
2415
|
dependencies = [
|
|
2245
2416
|
"rand_chacha 0.9.0",
|
|
2246
2417
|
"rand_core 0.9.5",
|
|
2247
2418
|
]
|
|
2248
2419
|
|
|
2420
|
+
[[package]]
|
|
2421
|
+
name = "rand"
|
|
2422
|
+
version = "0.10.2"
|
|
2423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2424
|
+
checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
2425
|
+
dependencies = [
|
|
2426
|
+
"chacha20",
|
|
2427
|
+
"getrandom 0.4.3",
|
|
2428
|
+
"rand_core 0.10.1",
|
|
2429
|
+
]
|
|
2430
|
+
|
|
2249
2431
|
[[package]]
|
|
2250
2432
|
name = "rand_chacha"
|
|
2251
2433
|
version = "0.3.1"
|
|
@@ -2284,6 +2466,21 @@ dependencies = [
|
|
|
2284
2466
|
"getrandom 0.3.4",
|
|
2285
2467
|
]
|
|
2286
2468
|
|
|
2469
|
+
[[package]]
|
|
2470
|
+
name = "rand_core"
|
|
2471
|
+
version = "0.10.1"
|
|
2472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2473
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
2474
|
+
|
|
2475
|
+
[[package]]
|
|
2476
|
+
name = "rand_pcg"
|
|
2477
|
+
version = "0.10.2"
|
|
2478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2479
|
+
checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
|
|
2480
|
+
dependencies = [
|
|
2481
|
+
"rand_core 0.10.1",
|
|
2482
|
+
]
|
|
2483
|
+
|
|
2287
2484
|
[[package]]
|
|
2288
2485
|
name = "rand_xorshift"
|
|
2289
2486
|
version = "0.4.0"
|
|
@@ -2295,9 +2492,9 @@ dependencies = [
|
|
|
2295
2492
|
|
|
2296
2493
|
[[package]]
|
|
2297
2494
|
name = "range-set"
|
|
2298
|
-
version = "0.1.
|
|
2495
|
+
version = "0.1.1"
|
|
2299
2496
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2300
|
-
checksum = "
|
|
2497
|
+
checksum = "393b6d845a7f7b955dba8621ad2998590eaa470c1d9a4ee6df0f65354e0ffc31"
|
|
2301
2498
|
dependencies = [
|
|
2302
2499
|
"num-traits",
|
|
2303
2500
|
"smallvec",
|
|
@@ -2309,6 +2506,12 @@ version = "0.3.2"
|
|
|
2309
2506
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2310
2507
|
checksum = "d20581732dd76fa913c7dff1a2412b714afe3573e94d41c34719de73337cc8ab"
|
|
2311
2508
|
|
|
2509
|
+
[[package]]
|
|
2510
|
+
name = "rangemap"
|
|
2511
|
+
version = "1.8.0"
|
|
2512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2513
|
+
checksum = "a611d15b50743feb4c76b7d03edcb0e64f399c26961e4efe6975bc398be6aa3d"
|
|
2514
|
+
|
|
2312
2515
|
[[package]]
|
|
2313
2516
|
name = "rasn"
|
|
2314
2517
|
version = "0.28.14"
|
|
@@ -2321,7 +2524,7 @@ dependencies = [
|
|
|
2321
2524
|
"cfg-if",
|
|
2322
2525
|
"chrono",
|
|
2323
2526
|
"either",
|
|
2324
|
-
"nom",
|
|
2527
|
+
"nom 7.1.3",
|
|
2325
2528
|
"num-bigint",
|
|
2326
2529
|
"num-integer",
|
|
2327
2530
|
"num-traits",
|
|
@@ -2344,26 +2547,26 @@ dependencies = [
|
|
|
2344
2547
|
|
|
2345
2548
|
[[package]]
|
|
2346
2549
|
name = "rasn-derive"
|
|
2347
|
-
version = "0.28.
|
|
2550
|
+
version = "0.28.14"
|
|
2348
2551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2349
|
-
checksum = "
|
|
2552
|
+
checksum = "979eafa601d351f7f6490f1d2f4decc168e8e51cb6517c6c6ff80111951129d5"
|
|
2350
2553
|
dependencies = [
|
|
2351
2554
|
"proc-macro2",
|
|
2352
2555
|
"rasn-derive-impl",
|
|
2353
|
-
"syn 2.0.
|
|
2556
|
+
"syn 2.0.119",
|
|
2354
2557
|
]
|
|
2355
2558
|
|
|
2356
2559
|
[[package]]
|
|
2357
2560
|
name = "rasn-derive-impl"
|
|
2358
|
-
version = "0.28.
|
|
2561
|
+
version = "0.28.14"
|
|
2359
2562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2360
|
-
checksum = "
|
|
2563
|
+
checksum = "eee3136c97d6f2553c0d9f84d2c2555bb87ae9b365c5c9274e8bc5c366174431"
|
|
2361
2564
|
dependencies = [
|
|
2362
2565
|
"either",
|
|
2363
|
-
"itertools
|
|
2566
|
+
"itertools",
|
|
2364
2567
|
"proc-macro2",
|
|
2365
2568
|
"quote",
|
|
2366
|
-
"syn 2.0.
|
|
2569
|
+
"syn 2.0.119",
|
|
2367
2570
|
"uuid",
|
|
2368
2571
|
]
|
|
2369
2572
|
|
|
@@ -2386,20 +2589,40 @@ dependencies = [
|
|
|
2386
2589
|
"rasn",
|
|
2387
2590
|
]
|
|
2388
2591
|
|
|
2592
|
+
[[package]]
|
|
2593
|
+
name = "rayon"
|
|
2594
|
+
version = "1.12.0"
|
|
2595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2596
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
2597
|
+
dependencies = [
|
|
2598
|
+
"either",
|
|
2599
|
+
"rayon-core",
|
|
2600
|
+
]
|
|
2601
|
+
|
|
2602
|
+
[[package]]
|
|
2603
|
+
name = "rayon-core"
|
|
2604
|
+
version = "1.13.0"
|
|
2605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2606
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
2607
|
+
dependencies = [
|
|
2608
|
+
"crossbeam-deque",
|
|
2609
|
+
"crossbeam-utils",
|
|
2610
|
+
]
|
|
2611
|
+
|
|
2389
2612
|
[[package]]
|
|
2390
2613
|
name = "rb-sys"
|
|
2391
|
-
version = "0.9.
|
|
2614
|
+
version = "0.9.130"
|
|
2392
2615
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2393
|
-
checksum = "
|
|
2616
|
+
checksum = "02faf625bb10ba893e3ae620f19c9fb1b5f8fcae0fe4eb86bb3f2230fad75edb"
|
|
2394
2617
|
dependencies = [
|
|
2395
2618
|
"rb-sys-build",
|
|
2396
2619
|
]
|
|
2397
2620
|
|
|
2398
2621
|
[[package]]
|
|
2399
2622
|
name = "rb-sys-build"
|
|
2400
|
-
version = "0.9.
|
|
2623
|
+
version = "0.9.130"
|
|
2401
2624
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2402
|
-
checksum = "
|
|
2625
|
+
checksum = "05be6f9c86fe5482808162826f6c047d093b3670582296c770de1d94f8066694"
|
|
2403
2626
|
dependencies = [
|
|
2404
2627
|
"bindgen",
|
|
2405
2628
|
"lazy_static",
|
|
@@ -2407,7 +2630,7 @@ dependencies = [
|
|
|
2407
2630
|
"quote",
|
|
2408
2631
|
"regex",
|
|
2409
2632
|
"shell-words",
|
|
2410
|
-
"syn 2.0.
|
|
2633
|
+
"syn 2.0.119",
|
|
2411
2634
|
]
|
|
2412
2635
|
|
|
2413
2636
|
[[package]]
|
|
@@ -2418,29 +2641,29 @@ checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
|
2418
2641
|
|
|
2419
2642
|
[[package]]
|
|
2420
2643
|
name = "ref-cast"
|
|
2421
|
-
version = "1.0.
|
|
2644
|
+
version = "1.0.27"
|
|
2422
2645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2423
|
-
checksum = "
|
|
2646
|
+
checksum = "7e440fb4e4b4147295338efb76001ab9e4efc0e5839df2c47fc5ac2381d365c3"
|
|
2424
2647
|
dependencies = [
|
|
2425
2648
|
"ref-cast-impl",
|
|
2426
2649
|
]
|
|
2427
2650
|
|
|
2428
2651
|
[[package]]
|
|
2429
2652
|
name = "ref-cast-impl"
|
|
2430
|
-
version = "1.0.
|
|
2653
|
+
version = "1.0.27"
|
|
2431
2654
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2432
|
-
checksum = "
|
|
2655
|
+
checksum = "92ecd8964f8453721699a1ed72037b0db49ce2f5a5138486ee89bed6f67cdf3a"
|
|
2433
2656
|
dependencies = [
|
|
2434
2657
|
"proc-macro2",
|
|
2435
2658
|
"quote",
|
|
2436
|
-
"syn
|
|
2659
|
+
"syn 3.0.5",
|
|
2437
2660
|
]
|
|
2438
2661
|
|
|
2439
2662
|
[[package]]
|
|
2440
2663
|
name = "regex"
|
|
2441
|
-
version = "1.
|
|
2664
|
+
version = "1.13.1"
|
|
2442
2665
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2443
|
-
checksum = "
|
|
2666
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
2444
2667
|
dependencies = [
|
|
2445
2668
|
"aho-corasick",
|
|
2446
2669
|
"memchr",
|
|
@@ -2450,9 +2673,9 @@ dependencies = [
|
|
|
2450
2673
|
|
|
2451
2674
|
[[package]]
|
|
2452
2675
|
name = "regex-automata"
|
|
2453
|
-
version = "0.4.
|
|
2676
|
+
version = "0.4.18"
|
|
2454
2677
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2455
|
-
checksum = "
|
|
2678
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
2456
2679
|
dependencies = [
|
|
2457
2680
|
"aho-corasick",
|
|
2458
2681
|
"memchr",
|
|
@@ -2461,9 +2684,9 @@ dependencies = [
|
|
|
2461
2684
|
|
|
2462
2685
|
[[package]]
|
|
2463
2686
|
name = "regex-syntax"
|
|
2464
|
-
version = "0.8.
|
|
2687
|
+
version = "0.8.11"
|
|
2465
2688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2466
|
-
checksum = "
|
|
2689
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
2467
2690
|
|
|
2468
2691
|
[[package]]
|
|
2469
2692
|
name = "reqwest"
|
|
@@ -2557,15 +2780,9 @@ dependencies = [
|
|
|
2557
2780
|
|
|
2558
2781
|
[[package]]
|
|
2559
2782
|
name = "rustc-hash"
|
|
2560
|
-
version = "
|
|
2561
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2562
|
-
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
2563
|
-
|
|
2564
|
-
[[package]]
|
|
2565
|
-
name = "rustc-hash"
|
|
2566
|
-
version = "2.1.1"
|
|
2783
|
+
version = "2.1.3"
|
|
2567
2784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2568
|
-
checksum = "
|
|
2785
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
2569
2786
|
|
|
2570
2787
|
[[package]]
|
|
2571
2788
|
name = "rustc_version"
|
|
@@ -2582,7 +2799,7 @@ version = "4.1.0"
|
|
|
2582
2799
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2583
2800
|
checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
|
|
2584
2801
|
dependencies = [
|
|
2585
|
-
"nom",
|
|
2802
|
+
"nom 7.1.3",
|
|
2586
2803
|
]
|
|
2587
2804
|
|
|
2588
2805
|
[[package]]
|
|
@@ -2591,7 +2808,7 @@ version = "1.1.4"
|
|
|
2591
2808
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2592
2809
|
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
2593
2810
|
dependencies = [
|
|
2594
|
-
"bitflags",
|
|
2811
|
+
"bitflags 2.13.2",
|
|
2595
2812
|
"errno",
|
|
2596
2813
|
"libc",
|
|
2597
2814
|
"linux-raw-sys",
|
|
@@ -2600,9 +2817,9 @@ dependencies = [
|
|
|
2600
2817
|
|
|
2601
2818
|
[[package]]
|
|
2602
2819
|
name = "rustls"
|
|
2603
|
-
version = "0.23.
|
|
2820
|
+
version = "0.23.44"
|
|
2604
2821
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2605
|
-
checksum = "
|
|
2822
|
+
checksum = "6725596c3f2c3a0aef021139e145d4eafe314a6623e4680ca83852b2c67ab2ba"
|
|
2606
2823
|
dependencies = [
|
|
2607
2824
|
"log",
|
|
2608
2825
|
"once_cell",
|
|
@@ -2615,9 +2832,9 @@ dependencies = [
|
|
|
2615
2832
|
|
|
2616
2833
|
[[package]]
|
|
2617
2834
|
name = "rustls-pki-types"
|
|
2618
|
-
version = "1.
|
|
2835
|
+
version = "1.15.1"
|
|
2619
2836
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2620
|
-
checksum = "
|
|
2837
|
+
checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
|
|
2621
2838
|
dependencies = [
|
|
2622
2839
|
"web-time",
|
|
2623
2840
|
"zeroize",
|
|
@@ -2625,9 +2842,9 @@ dependencies = [
|
|
|
2625
2842
|
|
|
2626
2843
|
[[package]]
|
|
2627
2844
|
name = "rustls-webpki"
|
|
2628
|
-
version = "0.103.
|
|
2845
|
+
version = "0.103.15"
|
|
2629
2846
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2630
|
-
checksum = "
|
|
2847
|
+
checksum = "f3c3cf1d8b1e7d4927e2d154c3fcb02979afb9939629c62cd9048d4f07b60ac2"
|
|
2631
2848
|
dependencies = [
|
|
2632
2849
|
"ring",
|
|
2633
2850
|
"rustls-pki-types",
|
|
@@ -2636,9 +2853,9 @@ dependencies = [
|
|
|
2636
2853
|
|
|
2637
2854
|
[[package]]
|
|
2638
2855
|
name = "rustversion"
|
|
2639
|
-
version = "1.0.
|
|
2856
|
+
version = "1.0.23"
|
|
2640
2857
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2641
|
-
checksum = "
|
|
2858
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
2642
2859
|
|
|
2643
2860
|
[[package]]
|
|
2644
2861
|
name = "ryu"
|
|
@@ -2660,9 +2877,9 @@ dependencies = [
|
|
|
2660
2877
|
|
|
2661
2878
|
[[package]]
|
|
2662
2879
|
name = "schemars"
|
|
2663
|
-
version = "1.2.
|
|
2880
|
+
version = "1.2.2"
|
|
2664
2881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2665
|
-
checksum = "
|
|
2882
|
+
checksum = "687274d293b6cdc6e73e0fee520bf2049650090d7164f87672d212a3c530cf4a"
|
|
2666
2883
|
dependencies = [
|
|
2667
2884
|
"dyn-clone",
|
|
2668
2885
|
"ref-cast",
|
|
@@ -2670,6 +2887,12 @@ dependencies = [
|
|
|
2670
2887
|
"serde_json",
|
|
2671
2888
|
]
|
|
2672
2889
|
|
|
2890
|
+
[[package]]
|
|
2891
|
+
name = "scopeguard"
|
|
2892
|
+
version = "1.2.0"
|
|
2893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2894
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2895
|
+
|
|
2673
2896
|
[[package]]
|
|
2674
2897
|
name = "sec1"
|
|
2675
2898
|
version = "0.7.3"
|
|
@@ -2686,9 +2909,9 @@ dependencies = [
|
|
|
2686
2909
|
|
|
2687
2910
|
[[package]]
|
|
2688
2911
|
name = "semver"
|
|
2689
|
-
version = "1.0.
|
|
2912
|
+
version = "1.0.28"
|
|
2690
2913
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2691
|
-
checksum = "
|
|
2914
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
2692
2915
|
|
|
2693
2916
|
[[package]]
|
|
2694
2917
|
name = "seq-macro"
|
|
@@ -2698,9 +2921,9 @@ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
|
2698
2921
|
|
|
2699
2922
|
[[package]]
|
|
2700
2923
|
name = "serde"
|
|
2701
|
-
version = "1.0.
|
|
2924
|
+
version = "1.0.229"
|
|
2702
2925
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2703
|
-
checksum = "
|
|
2926
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
2704
2927
|
dependencies = [
|
|
2705
2928
|
"serde_core",
|
|
2706
2929
|
"serde_derive",
|
|
@@ -2738,22 +2961,22 @@ dependencies = [
|
|
|
2738
2961
|
|
|
2739
2962
|
[[package]]
|
|
2740
2963
|
name = "serde_core"
|
|
2741
|
-
version = "1.0.
|
|
2964
|
+
version = "1.0.229"
|
|
2742
2965
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2743
|
-
checksum = "
|
|
2966
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
2744
2967
|
dependencies = [
|
|
2745
2968
|
"serde_derive",
|
|
2746
2969
|
]
|
|
2747
2970
|
|
|
2748
2971
|
[[package]]
|
|
2749
2972
|
name = "serde_derive"
|
|
2750
|
-
version = "1.0.
|
|
2973
|
+
version = "1.0.229"
|
|
2751
2974
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2752
|
-
checksum = "
|
|
2975
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
2753
2976
|
dependencies = [
|
|
2754
2977
|
"proc-macro2",
|
|
2755
2978
|
"quote",
|
|
2756
|
-
"syn
|
|
2979
|
+
"syn 3.0.5",
|
|
2757
2980
|
]
|
|
2758
2981
|
|
|
2759
2982
|
[[package]]
|
|
@@ -2762,7 +2985,7 @@ version = "1.0.151"
|
|
|
2762
2985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2763
2986
|
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
2764
2987
|
dependencies = [
|
|
2765
|
-
"indexmap 2.
|
|
2988
|
+
"indexmap 2.14.2",
|
|
2766
2989
|
"itoa",
|
|
2767
2990
|
"memchr",
|
|
2768
2991
|
"serde",
|
|
@@ -2793,19 +3016,19 @@ dependencies = [
|
|
|
2793
3016
|
|
|
2794
3017
|
[[package]]
|
|
2795
3018
|
name = "serde_with"
|
|
2796
|
-
version = "3.
|
|
3019
|
+
version = "3.23.0"
|
|
2797
3020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2798
|
-
checksum = "
|
|
3021
|
+
checksum = "935177bb8c0cd8ca1a4e6d1a2ac8988bea69cab4f9d3a31311e012ad27868ea4"
|
|
2799
3022
|
dependencies = [
|
|
2800
|
-
"base64 0.
|
|
3023
|
+
"base64 0.23.1",
|
|
2801
3024
|
"bs58",
|
|
2802
3025
|
"chrono",
|
|
2803
3026
|
"hex",
|
|
2804
3027
|
"indexmap 1.9.3",
|
|
2805
|
-
"indexmap 2.
|
|
3028
|
+
"indexmap 2.14.2",
|
|
2806
3029
|
"jiff",
|
|
2807
3030
|
"schemars 0.9.0",
|
|
2808
|
-
"schemars 1.2.
|
|
3031
|
+
"schemars 1.2.2",
|
|
2809
3032
|
"serde_core",
|
|
2810
3033
|
"serde_json",
|
|
2811
3034
|
"serde_with_macros",
|
|
@@ -2814,14 +3037,14 @@ dependencies = [
|
|
|
2814
3037
|
|
|
2815
3038
|
[[package]]
|
|
2816
3039
|
name = "serde_with_macros"
|
|
2817
|
-
version = "3.
|
|
3040
|
+
version = "3.23.0"
|
|
2818
3041
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2819
|
-
checksum = "
|
|
3042
|
+
checksum = "1d607aa01a3cb0ad757d6fd216136910db3c97b102fe686585689615a02dbcdc"
|
|
2820
3043
|
dependencies = [
|
|
2821
3044
|
"darling",
|
|
2822
3045
|
"proc-macro2",
|
|
2823
3046
|
"quote",
|
|
2824
|
-
"syn
|
|
3047
|
+
"syn 3.0.5",
|
|
2825
3048
|
]
|
|
2826
3049
|
|
|
2827
3050
|
[[package]]
|
|
@@ -2831,7 +3054,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2831
3054
|
checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214"
|
|
2832
3055
|
dependencies = [
|
|
2833
3056
|
"cfg-if",
|
|
2834
|
-
"cpufeatures 0.3.
|
|
3057
|
+
"cpufeatures 0.3.1",
|
|
2835
3058
|
"digest 0.11.3",
|
|
2836
3059
|
]
|
|
2837
3060
|
|
|
@@ -2853,7 +3076,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2853
3076
|
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
2854
3077
|
dependencies = [
|
|
2855
3078
|
"cfg-if",
|
|
2856
|
-
"cpufeatures 0.3.
|
|
3079
|
+
"cpufeatures 0.3.1",
|
|
2857
3080
|
"digest 0.11.3",
|
|
2858
3081
|
]
|
|
2859
3082
|
|
|
@@ -2869,6 +3092,12 @@ version = "1.3.0"
|
|
|
2869
3092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2870
3093
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2871
3094
|
|
|
3095
|
+
[[package]]
|
|
3096
|
+
name = "shlex"
|
|
3097
|
+
version = "2.0.1"
|
|
3098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3099
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
3100
|
+
|
|
2872
3101
|
[[package]]
|
|
2873
3102
|
name = "signature"
|
|
2874
3103
|
version = "2.2.0"
|
|
@@ -2881,9 +3110,15 @@ dependencies = [
|
|
|
2881
3110
|
|
|
2882
3111
|
[[package]]
|
|
2883
3112
|
name = "simd-adler32"
|
|
2884
|
-
version = "0.3.
|
|
3113
|
+
version = "0.3.10"
|
|
3114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3115
|
+
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
|
|
3116
|
+
|
|
3117
|
+
[[package]]
|
|
3118
|
+
name = "simdutf8"
|
|
3119
|
+
version = "0.1.5"
|
|
2885
3120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2886
|
-
checksum = "
|
|
3121
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
2887
3122
|
|
|
2888
3123
|
[[package]]
|
|
2889
3124
|
name = "slab"
|
|
@@ -2893,9 +3128,9 @@ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
|
2893
3128
|
|
|
2894
3129
|
[[package]]
|
|
2895
3130
|
name = "smallvec"
|
|
2896
|
-
version = "1.
|
|
3131
|
+
version = "1.16.1"
|
|
2897
3132
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2898
|
-
checksum = "
|
|
3133
|
+
checksum = "ba467056f1b547ed52077911161fc86985becbc60e8e1857c8a144dab0def891"
|
|
2899
3134
|
|
|
2900
3135
|
[[package]]
|
|
2901
3136
|
name = "snafu"
|
|
@@ -2915,14 +3150,14 @@ dependencies = [
|
|
|
2915
3150
|
"heck",
|
|
2916
3151
|
"proc-macro2",
|
|
2917
3152
|
"quote",
|
|
2918
|
-
"syn 2.0.
|
|
3153
|
+
"syn 2.0.119",
|
|
2919
3154
|
]
|
|
2920
3155
|
|
|
2921
3156
|
[[package]]
|
|
2922
3157
|
name = "socket2"
|
|
2923
|
-
version = "0.6.
|
|
3158
|
+
version = "0.6.5"
|
|
2924
3159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2925
|
-
checksum = "
|
|
3160
|
+
checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
|
|
2926
3161
|
dependencies = [
|
|
2927
3162
|
"libc",
|
|
2928
3163
|
"windows-sys 0.61.2",
|
|
@@ -2930,9 +3165,9 @@ dependencies = [
|
|
|
2930
3165
|
|
|
2931
3166
|
[[package]]
|
|
2932
3167
|
name = "spin"
|
|
2933
|
-
version = "0.9.
|
|
3168
|
+
version = "0.9.9"
|
|
2934
3169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2935
|
-
checksum = "
|
|
3170
|
+
checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e"
|
|
2936
3171
|
|
|
2937
3172
|
[[package]]
|
|
2938
3173
|
name = "spki"
|
|
@@ -2958,7 +3193,7 @@ checksum = "3cc4068497ae43896d41174586dcdc2153a1af2c82856fb308bfaaddc28e5549"
|
|
|
2958
3193
|
dependencies = [
|
|
2959
3194
|
"iref",
|
|
2960
3195
|
"quote",
|
|
2961
|
-
"syn 2.0.
|
|
3196
|
+
"syn 2.0.119",
|
|
2962
3197
|
]
|
|
2963
3198
|
|
|
2964
3199
|
[[package]]
|
|
@@ -2977,10 +3212,21 @@ dependencies = [
|
|
|
2977
3212
|
"quote",
|
|
2978
3213
|
"serde",
|
|
2979
3214
|
"sha2 0.10.9",
|
|
2980
|
-
"syn 2.0.
|
|
3215
|
+
"syn 2.0.119",
|
|
2981
3216
|
"thiserror 1.0.69",
|
|
2982
3217
|
]
|
|
2983
3218
|
|
|
3219
|
+
[[package]]
|
|
3220
|
+
name = "stringprep"
|
|
3221
|
+
version = "0.1.5"
|
|
3222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3223
|
+
checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
|
|
3224
|
+
dependencies = [
|
|
3225
|
+
"unicode-bidi",
|
|
3226
|
+
"unicode-normalization",
|
|
3227
|
+
"unicode-properties",
|
|
3228
|
+
]
|
|
3229
|
+
|
|
2984
3230
|
[[package]]
|
|
2985
3231
|
name = "strsim"
|
|
2986
3232
|
version = "0.11.1"
|
|
@@ -3006,9 +3252,20 @@ dependencies = [
|
|
|
3006
3252
|
|
|
3007
3253
|
[[package]]
|
|
3008
3254
|
name = "syn"
|
|
3009
|
-
version = "2.0.
|
|
3255
|
+
version = "2.0.119"
|
|
3010
3256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3011
|
-
checksum = "
|
|
3257
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
3258
|
+
dependencies = [
|
|
3259
|
+
"proc-macro2",
|
|
3260
|
+
"quote",
|
|
3261
|
+
"unicode-ident",
|
|
3262
|
+
]
|
|
3263
|
+
|
|
3264
|
+
[[package]]
|
|
3265
|
+
name = "syn"
|
|
3266
|
+
version = "3.0.5"
|
|
3267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3268
|
+
checksum = "12df2e0110f65b775f769bb17ef989067a1d931b2eb822bd4346631eeada89f9"
|
|
3012
3269
|
dependencies = [
|
|
3013
3270
|
"proc-macro2",
|
|
3014
3271
|
"quote",
|
|
@@ -3032,7 +3289,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
|
3032
3289
|
dependencies = [
|
|
3033
3290
|
"proc-macro2",
|
|
3034
3291
|
"quote",
|
|
3035
|
-
"syn 2.0.
|
|
3292
|
+
"syn 2.0.119",
|
|
3036
3293
|
]
|
|
3037
3294
|
|
|
3038
3295
|
[[package]]
|
|
@@ -3041,7 +3298,7 @@ version = "0.7.0"
|
|
|
3041
3298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3042
3299
|
checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
|
|
3043
3300
|
dependencies = [
|
|
3044
|
-
"bitflags",
|
|
3301
|
+
"bitflags 2.13.2",
|
|
3045
3302
|
"core-foundation",
|
|
3046
3303
|
"system-configuration-sys",
|
|
3047
3304
|
]
|
|
@@ -3069,7 +3326,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3069
3326
|
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
3070
3327
|
dependencies = [
|
|
3071
3328
|
"fastrand",
|
|
3072
|
-
"getrandom 0.4.
|
|
3329
|
+
"getrandom 0.4.3",
|
|
3073
3330
|
"once_cell",
|
|
3074
3331
|
"rustix",
|
|
3075
3332
|
"windows-sys 0.61.2",
|
|
@@ -3086,11 +3343,11 @@ dependencies = [
|
|
|
3086
3343
|
|
|
3087
3344
|
[[package]]
|
|
3088
3345
|
name = "thiserror"
|
|
3089
|
-
version = "2.0.
|
|
3346
|
+
version = "2.0.20"
|
|
3090
3347
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3091
|
-
checksum = "
|
|
3348
|
+
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
3092
3349
|
dependencies = [
|
|
3093
|
-
"thiserror-impl 2.0.
|
|
3350
|
+
"thiserror-impl 2.0.20",
|
|
3094
3351
|
]
|
|
3095
3352
|
|
|
3096
3353
|
[[package]]
|
|
@@ -3101,28 +3358,27 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
3101
3358
|
dependencies = [
|
|
3102
3359
|
"proc-macro2",
|
|
3103
3360
|
"quote",
|
|
3104
|
-
"syn 2.0.
|
|
3361
|
+
"syn 2.0.119",
|
|
3105
3362
|
]
|
|
3106
3363
|
|
|
3107
3364
|
[[package]]
|
|
3108
3365
|
name = "thiserror-impl"
|
|
3109
|
-
version = "2.0.
|
|
3366
|
+
version = "2.0.20"
|
|
3110
3367
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3111
|
-
checksum = "
|
|
3368
|
+
checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
3112
3369
|
dependencies = [
|
|
3113
3370
|
"proc-macro2",
|
|
3114
3371
|
"quote",
|
|
3115
|
-
"syn
|
|
3372
|
+
"syn 3.0.5",
|
|
3116
3373
|
]
|
|
3117
3374
|
|
|
3118
3375
|
[[package]]
|
|
3119
3376
|
name = "time"
|
|
3120
|
-
version = "0.3.
|
|
3377
|
+
version = "0.3.55"
|
|
3121
3378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3122
|
-
checksum = "
|
|
3379
|
+
checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134"
|
|
3123
3380
|
dependencies = [
|
|
3124
3381
|
"deranged",
|
|
3125
|
-
"itoa",
|
|
3126
3382
|
"num-conv",
|
|
3127
3383
|
"powerfmt",
|
|
3128
3384
|
"serde_core",
|
|
@@ -3132,15 +3388,15 @@ dependencies = [
|
|
|
3132
3388
|
|
|
3133
3389
|
[[package]]
|
|
3134
3390
|
name = "time-core"
|
|
3135
|
-
version = "0.1.
|
|
3391
|
+
version = "0.1.9"
|
|
3136
3392
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3137
|
-
checksum = "
|
|
3393
|
+
checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
|
|
3138
3394
|
|
|
3139
3395
|
[[package]]
|
|
3140
3396
|
name = "time-macros"
|
|
3141
|
-
version = "0.2.
|
|
3397
|
+
version = "0.2.32"
|
|
3142
3398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3143
|
-
checksum = "
|
|
3399
|
+
checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85"
|
|
3144
3400
|
dependencies = [
|
|
3145
3401
|
"num-conv",
|
|
3146
3402
|
"time-core",
|
|
@@ -3148,9 +3404,9 @@ dependencies = [
|
|
|
3148
3404
|
|
|
3149
3405
|
[[package]]
|
|
3150
3406
|
name = "tinystr"
|
|
3151
|
-
version = "0.8.
|
|
3407
|
+
version = "0.8.4"
|
|
3152
3408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3153
|
-
checksum = "
|
|
3409
|
+
checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"
|
|
3154
3410
|
dependencies = [
|
|
3155
3411
|
"displaydoc",
|
|
3156
3412
|
"zerovec",
|
|
@@ -3158,9 +3414,9 @@ dependencies = [
|
|
|
3158
3414
|
|
|
3159
3415
|
[[package]]
|
|
3160
3416
|
name = "tinyvec"
|
|
3161
|
-
version = "1.
|
|
3417
|
+
version = "1.13.2"
|
|
3162
3418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3163
|
-
checksum = "
|
|
3419
|
+
checksum = "4cf0ded5c4e56918d8f8a339e1bb67d038d3bc6d144ac407904015ba2e4cde9b"
|
|
3164
3420
|
dependencies = [
|
|
3165
3421
|
"tinyvec_macros",
|
|
3166
3422
|
]
|
|
@@ -3173,9 +3429,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
3173
3429
|
|
|
3174
3430
|
[[package]]
|
|
3175
3431
|
name = "tokio"
|
|
3176
|
-
version = "1.
|
|
3432
|
+
version = "1.53.1"
|
|
3177
3433
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3178
|
-
checksum = "
|
|
3434
|
+
checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
|
|
3179
3435
|
dependencies = [
|
|
3180
3436
|
"bytes",
|
|
3181
3437
|
"libc",
|
|
@@ -3187,9 +3443,9 @@ dependencies = [
|
|
|
3187
3443
|
|
|
3188
3444
|
[[package]]
|
|
3189
3445
|
name = "tokio-rustls"
|
|
3190
|
-
version = "0.26.
|
|
3446
|
+
version = "0.26.5"
|
|
3191
3447
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3192
|
-
checksum = "
|
|
3448
|
+
checksum = "b0c85f2c3ef0b1cd58b36682f4b17aaa995f0e5db534d85692b4903abce21f67"
|
|
3193
3449
|
dependencies = [
|
|
3194
3450
|
"rustls",
|
|
3195
3451
|
"tokio",
|
|
@@ -3197,24 +3453,25 @@ dependencies = [
|
|
|
3197
3453
|
|
|
3198
3454
|
[[package]]
|
|
3199
3455
|
name = "tokio-util"
|
|
3200
|
-
version = "0.7.
|
|
3456
|
+
version = "0.7.19"
|
|
3201
3457
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3202
|
-
checksum = "
|
|
3458
|
+
checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
|
|
3203
3459
|
dependencies = [
|
|
3204
3460
|
"bytes",
|
|
3205
3461
|
"futures-core",
|
|
3206
3462
|
"futures-sink",
|
|
3463
|
+
"libc",
|
|
3207
3464
|
"pin-project-lite",
|
|
3208
3465
|
"tokio",
|
|
3209
3466
|
]
|
|
3210
3467
|
|
|
3211
3468
|
[[package]]
|
|
3212
3469
|
name = "toml"
|
|
3213
|
-
version = "1.1.
|
|
3470
|
+
version = "1.1.6+spec-1.1.0"
|
|
3214
3471
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3215
|
-
checksum = "
|
|
3472
|
+
checksum = "920602543f0911ab71da12c50d59701da54c196d1a2bf5cb4b75667f137a406a"
|
|
3216
3473
|
dependencies = [
|
|
3217
|
-
"indexmap 2.
|
|
3474
|
+
"indexmap 2.14.2",
|
|
3218
3475
|
"serde_core",
|
|
3219
3476
|
"serde_spanned",
|
|
3220
3477
|
"toml_datetime",
|
|
@@ -3264,20 +3521,20 @@ dependencies = [
|
|
|
3264
3521
|
|
|
3265
3522
|
[[package]]
|
|
3266
3523
|
name = "tower-http"
|
|
3267
|
-
version = "0.6.
|
|
3524
|
+
version = "0.6.11"
|
|
3268
3525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3269
|
-
checksum = "
|
|
3526
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
3270
3527
|
dependencies = [
|
|
3271
|
-
"bitflags",
|
|
3528
|
+
"bitflags 2.13.2",
|
|
3272
3529
|
"bytes",
|
|
3273
3530
|
"futures-util",
|
|
3274
3531
|
"http",
|
|
3275
3532
|
"http-body",
|
|
3276
|
-
"iri-string",
|
|
3277
3533
|
"pin-project-lite",
|
|
3278
3534
|
"tower",
|
|
3279
3535
|
"tower-layer",
|
|
3280
3536
|
"tower-service",
|
|
3537
|
+
"url",
|
|
3281
3538
|
]
|
|
3282
3539
|
|
|
3283
3540
|
[[package]]
|
|
@@ -3319,7 +3576,7 @@ checksum = "d856e22ead1fb79b9fc3cec63300086f680924f2f7b0e2701f6835a28b9c4425"
|
|
|
3319
3576
|
dependencies = [
|
|
3320
3577
|
"proc-macro2",
|
|
3321
3578
|
"quote",
|
|
3322
|
-
"syn 2.0.
|
|
3579
|
+
"syn 2.0.119",
|
|
3323
3580
|
]
|
|
3324
3581
|
|
|
3325
3582
|
[[package]]
|
|
@@ -3346,6 +3603,12 @@ version = "0.1.4"
|
|
|
3346
3603
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3347
3604
|
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
3348
3605
|
|
|
3606
|
+
[[package]]
|
|
3607
|
+
name = "unicode-bidi"
|
|
3608
|
+
version = "0.3.18"
|
|
3609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3610
|
+
checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
|
|
3611
|
+
|
|
3349
3612
|
[[package]]
|
|
3350
3613
|
name = "unicode-ident"
|
|
3351
3614
|
version = "1.0.24"
|
|
@@ -3353,10 +3616,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3353
3616
|
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
3354
3617
|
|
|
3355
3618
|
[[package]]
|
|
3356
|
-
name = "unicode-
|
|
3357
|
-
version = "0.
|
|
3619
|
+
name = "unicode-normalization"
|
|
3620
|
+
version = "0.1.25"
|
|
3358
3621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3359
|
-
checksum = "
|
|
3622
|
+
checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
|
|
3623
|
+
dependencies = [
|
|
3624
|
+
"tinyvec",
|
|
3625
|
+
]
|
|
3626
|
+
|
|
3627
|
+
[[package]]
|
|
3628
|
+
name = "unicode-properties"
|
|
3629
|
+
version = "0.1.4"
|
|
3630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3631
|
+
checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
|
|
3360
3632
|
|
|
3361
3633
|
[[package]]
|
|
3362
3634
|
name = "untrusted"
|
|
@@ -3366,9 +3638,9 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
|
3366
3638
|
|
|
3367
3639
|
[[package]]
|
|
3368
3640
|
name = "ureq"
|
|
3369
|
-
version = "3.4.
|
|
3641
|
+
version = "3.4.1"
|
|
3370
3642
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3371
|
-
checksum = "
|
|
3643
|
+
checksum = "af5546be8f5378d5414f83733f5c9a2526f4645829edbc1c41790aeef1b38e8b"
|
|
3372
3644
|
dependencies = [
|
|
3373
3645
|
"base64 0.23.1",
|
|
3374
3646
|
"log",
|
|
@@ -3382,9 +3654,9 @@ dependencies = [
|
|
|
3382
3654
|
|
|
3383
3655
|
[[package]]
|
|
3384
3656
|
name = "ureq-proto"
|
|
3385
|
-
version = "0.6.
|
|
3657
|
+
version = "0.6.2"
|
|
3386
3658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3387
|
-
checksum = "
|
|
3659
|
+
checksum = "fabc3e92916c89c95b20eef7b06b00b066bc217ef9ea3a4ac9bf1a7e35261e10"
|
|
3388
3660
|
dependencies = [
|
|
3389
3661
|
"base64 0.23.1",
|
|
3390
3662
|
"http",
|
|
@@ -3424,11 +3696,11 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
|
3424
3696
|
|
|
3425
3697
|
[[package]]
|
|
3426
3698
|
name = "uuid"
|
|
3427
|
-
version = "1.
|
|
3699
|
+
version = "1.26.1"
|
|
3428
3700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3429
|
-
checksum = "
|
|
3701
|
+
checksum = "2ef6dac1e96601b4fb3acccccff2139741fcb757cb9a36089bf5be91cfb285ce"
|
|
3430
3702
|
dependencies = [
|
|
3431
|
-
"getrandom 0.4.
|
|
3703
|
+
"getrandom 0.4.3",
|
|
3432
3704
|
"js-sys",
|
|
3433
3705
|
"serde_core",
|
|
3434
3706
|
"wasm-bindgen",
|
|
@@ -3472,27 +3744,18 @@ dependencies = [
|
|
|
3472
3744
|
|
|
3473
3745
|
[[package]]
|
|
3474
3746
|
name = "wasip2"
|
|
3475
|
-
version = "1.0.
|
|
3476
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3477
|
-
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
3478
|
-
dependencies = [
|
|
3479
|
-
"wit-bindgen",
|
|
3480
|
-
]
|
|
3481
|
-
|
|
3482
|
-
[[package]]
|
|
3483
|
-
name = "wasip3"
|
|
3484
|
-
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
3747
|
+
version = "1.0.4+wasi-0.2.12"
|
|
3485
3748
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3486
|
-
checksum = "
|
|
3749
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
3487
3750
|
dependencies = [
|
|
3488
3751
|
"wit-bindgen",
|
|
3489
3752
|
]
|
|
3490
3753
|
|
|
3491
3754
|
[[package]]
|
|
3492
3755
|
name = "wasm-bindgen"
|
|
3493
|
-
version = "0.2.
|
|
3756
|
+
version = "0.2.128"
|
|
3494
3757
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3495
|
-
checksum = "
|
|
3758
|
+
checksum = "aecb87a33d3b0c5e3b7aa46336eaf486cffafbd281b195e4c8b80d50df2351bf"
|
|
3496
3759
|
dependencies = [
|
|
3497
3760
|
"cfg-if",
|
|
3498
3761
|
"once_cell",
|
|
@@ -3503,9 +3766,9 @@ dependencies = [
|
|
|
3503
3766
|
|
|
3504
3767
|
[[package]]
|
|
3505
3768
|
name = "wasm-bindgen-futures"
|
|
3506
|
-
version = "0.4.
|
|
3769
|
+
version = "0.4.78"
|
|
3507
3770
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3508
|
-
checksum = "
|
|
3771
|
+
checksum = "6ef4c5d3d2cdf5c54f4231181768f5510842e350db025faf1f7163b1030ed928"
|
|
3509
3772
|
dependencies = [
|
|
3510
3773
|
"js-sys",
|
|
3511
3774
|
"wasm-bindgen",
|
|
@@ -3513,9 +3776,9 @@ dependencies = [
|
|
|
3513
3776
|
|
|
3514
3777
|
[[package]]
|
|
3515
3778
|
name = "wasm-bindgen-macro"
|
|
3516
|
-
version = "0.2.
|
|
3779
|
+
version = "0.2.128"
|
|
3517
3780
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3518
|
-
checksum = "
|
|
3781
|
+
checksum = "a690d511e3c1a8b3a55e33511e3c2c00c78415cd23650f32b808627f5696b9ed"
|
|
3519
3782
|
dependencies = [
|
|
3520
3783
|
"quote",
|
|
3521
3784
|
"wasm-bindgen-macro-support",
|
|
@@ -3523,65 +3786,31 @@ dependencies = [
|
|
|
3523
3786
|
|
|
3524
3787
|
[[package]]
|
|
3525
3788
|
name = "wasm-bindgen-macro-support"
|
|
3526
|
-
version = "0.2.
|
|
3789
|
+
version = "0.2.128"
|
|
3527
3790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3528
|
-
checksum = "
|
|
3791
|
+
checksum = "411e4887f0071ef2d2164a9d5fdf2d20efbef78fccd3a78b0c10a1dc5295e48a"
|
|
3529
3792
|
dependencies = [
|
|
3530
3793
|
"bumpalo",
|
|
3531
3794
|
"proc-macro2",
|
|
3532
3795
|
"quote",
|
|
3533
|
-
"syn
|
|
3796
|
+
"syn 3.0.5",
|
|
3534
3797
|
"wasm-bindgen-shared",
|
|
3535
3798
|
]
|
|
3536
3799
|
|
|
3537
3800
|
[[package]]
|
|
3538
3801
|
name = "wasm-bindgen-shared"
|
|
3539
|
-
version = "0.2.
|
|
3802
|
+
version = "0.2.128"
|
|
3540
3803
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3541
|
-
checksum = "
|
|
3804
|
+
checksum = "81941cd78d0c92026c33e5e01312845a4cb1e9af3407f9134b100dd03144103e"
|
|
3542
3805
|
dependencies = [
|
|
3543
3806
|
"unicode-ident",
|
|
3544
3807
|
]
|
|
3545
3808
|
|
|
3546
|
-
[[package]]
|
|
3547
|
-
name = "wasm-encoder"
|
|
3548
|
-
version = "0.244.0"
|
|
3549
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3550
|
-
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
3551
|
-
dependencies = [
|
|
3552
|
-
"leb128fmt",
|
|
3553
|
-
"wasmparser",
|
|
3554
|
-
]
|
|
3555
|
-
|
|
3556
|
-
[[package]]
|
|
3557
|
-
name = "wasm-metadata"
|
|
3558
|
-
version = "0.244.0"
|
|
3559
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3560
|
-
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
3561
|
-
dependencies = [
|
|
3562
|
-
"anyhow",
|
|
3563
|
-
"indexmap 2.13.0",
|
|
3564
|
-
"wasm-encoder",
|
|
3565
|
-
"wasmparser",
|
|
3566
|
-
]
|
|
3567
|
-
|
|
3568
|
-
[[package]]
|
|
3569
|
-
name = "wasmparser"
|
|
3570
|
-
version = "0.244.0"
|
|
3571
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3572
|
-
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
3573
|
-
dependencies = [
|
|
3574
|
-
"bitflags",
|
|
3575
|
-
"hashbrown 0.15.5",
|
|
3576
|
-
"indexmap 2.13.0",
|
|
3577
|
-
"semver",
|
|
3578
|
-
]
|
|
3579
|
-
|
|
3580
3809
|
[[package]]
|
|
3581
3810
|
name = "web-sys"
|
|
3582
|
-
version = "0.3.
|
|
3811
|
+
version = "0.3.105"
|
|
3583
3812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3584
|
-
checksum = "
|
|
3813
|
+
checksum = "9fbddc4a036f00ec4f18c83445bd3115cb306a91da554919a099d9222fe4a7f8"
|
|
3585
3814
|
dependencies = [
|
|
3586
3815
|
"js-sys",
|
|
3587
3816
|
"wasm-bindgen",
|
|
@@ -3599,13 +3828,19 @@ dependencies = [
|
|
|
3599
3828
|
|
|
3600
3829
|
[[package]]
|
|
3601
3830
|
name = "webpki-roots"
|
|
3602
|
-
version = "1.0.
|
|
3831
|
+
version = "1.0.9"
|
|
3603
3832
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3604
|
-
checksum = "
|
|
3833
|
+
checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a"
|
|
3605
3834
|
dependencies = [
|
|
3606
3835
|
"rustls-pki-types",
|
|
3607
3836
|
]
|
|
3608
3837
|
|
|
3838
|
+
[[package]]
|
|
3839
|
+
name = "weezl"
|
|
3840
|
+
version = "0.2.1"
|
|
3841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3842
|
+
checksum = "d4ca08e5ef825b65b056d9efbd95c8750683f0a6d0466d02e96dc2e4e360f3d2"
|
|
3843
|
+
|
|
3609
3844
|
[[package]]
|
|
3610
3845
|
name = "windows-core"
|
|
3611
3846
|
version = "0.62.2"
|
|
@@ -3627,7 +3862,7 @@ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
|
3627
3862
|
dependencies = [
|
|
3628
3863
|
"proc-macro2",
|
|
3629
3864
|
"quote",
|
|
3630
|
-
"syn 2.0.
|
|
3865
|
+
"syn 2.0.119",
|
|
3631
3866
|
]
|
|
3632
3867
|
|
|
3633
3868
|
[[package]]
|
|
@@ -3638,7 +3873,7 @@ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
|
3638
3873
|
dependencies = [
|
|
3639
3874
|
"proc-macro2",
|
|
3640
3875
|
"quote",
|
|
3641
|
-
"syn 2.0.
|
|
3876
|
+
"syn 2.0.119",
|
|
3642
3877
|
]
|
|
3643
3878
|
|
|
3644
3879
|
[[package]]
|
|
@@ -3682,16 +3917,7 @@ version = "0.52.0"
|
|
|
3682
3917
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3683
3918
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3684
3919
|
dependencies = [
|
|
3685
|
-
"windows-targets
|
|
3686
|
-
]
|
|
3687
|
-
|
|
3688
|
-
[[package]]
|
|
3689
|
-
name = "windows-sys"
|
|
3690
|
-
version = "0.60.2"
|
|
3691
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3692
|
-
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
3693
|
-
dependencies = [
|
|
3694
|
-
"windows-targets 0.53.5",
|
|
3920
|
+
"windows-targets",
|
|
3695
3921
|
]
|
|
3696
3922
|
|
|
3697
3923
|
[[package]]
|
|
@@ -3709,31 +3935,14 @@ version = "0.52.6"
|
|
|
3709
3935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3710
3936
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3711
3937
|
dependencies = [
|
|
3712
|
-
"windows_aarch64_gnullvm
|
|
3713
|
-
"windows_aarch64_msvc
|
|
3714
|
-
"windows_i686_gnu
|
|
3715
|
-
"windows_i686_gnullvm
|
|
3716
|
-
"windows_i686_msvc
|
|
3717
|
-
"windows_x86_64_gnu
|
|
3718
|
-
"windows_x86_64_gnullvm
|
|
3719
|
-
"windows_x86_64_msvc
|
|
3720
|
-
]
|
|
3721
|
-
|
|
3722
|
-
[[package]]
|
|
3723
|
-
name = "windows-targets"
|
|
3724
|
-
version = "0.53.5"
|
|
3725
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3726
|
-
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
3727
|
-
dependencies = [
|
|
3728
|
-
"windows-link",
|
|
3729
|
-
"windows_aarch64_gnullvm 0.53.1",
|
|
3730
|
-
"windows_aarch64_msvc 0.53.1",
|
|
3731
|
-
"windows_i686_gnu 0.53.1",
|
|
3732
|
-
"windows_i686_gnullvm 0.53.1",
|
|
3733
|
-
"windows_i686_msvc 0.53.1",
|
|
3734
|
-
"windows_x86_64_gnu 0.53.1",
|
|
3735
|
-
"windows_x86_64_gnullvm 0.53.1",
|
|
3736
|
-
"windows_x86_64_msvc 0.53.1",
|
|
3938
|
+
"windows_aarch64_gnullvm",
|
|
3939
|
+
"windows_aarch64_msvc",
|
|
3940
|
+
"windows_i686_gnu",
|
|
3941
|
+
"windows_i686_gnullvm",
|
|
3942
|
+
"windows_i686_msvc",
|
|
3943
|
+
"windows_x86_64_gnu",
|
|
3944
|
+
"windows_x86_64_gnullvm",
|
|
3945
|
+
"windows_x86_64_msvc",
|
|
3737
3946
|
]
|
|
3738
3947
|
|
|
3739
3948
|
[[package]]
|
|
@@ -3742,96 +3951,48 @@ version = "0.52.6"
|
|
|
3742
3951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3743
3952
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3744
3953
|
|
|
3745
|
-
[[package]]
|
|
3746
|
-
name = "windows_aarch64_gnullvm"
|
|
3747
|
-
version = "0.53.1"
|
|
3748
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3749
|
-
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
3750
|
-
|
|
3751
3954
|
[[package]]
|
|
3752
3955
|
name = "windows_aarch64_msvc"
|
|
3753
3956
|
version = "0.52.6"
|
|
3754
3957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3755
3958
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3756
3959
|
|
|
3757
|
-
[[package]]
|
|
3758
|
-
name = "windows_aarch64_msvc"
|
|
3759
|
-
version = "0.53.1"
|
|
3760
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3761
|
-
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
3762
|
-
|
|
3763
3960
|
[[package]]
|
|
3764
3961
|
name = "windows_i686_gnu"
|
|
3765
3962
|
version = "0.52.6"
|
|
3766
3963
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3767
3964
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3768
3965
|
|
|
3769
|
-
[[package]]
|
|
3770
|
-
name = "windows_i686_gnu"
|
|
3771
|
-
version = "0.53.1"
|
|
3772
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3773
|
-
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
3774
|
-
|
|
3775
3966
|
[[package]]
|
|
3776
3967
|
name = "windows_i686_gnullvm"
|
|
3777
3968
|
version = "0.52.6"
|
|
3778
3969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3779
3970
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3780
3971
|
|
|
3781
|
-
[[package]]
|
|
3782
|
-
name = "windows_i686_gnullvm"
|
|
3783
|
-
version = "0.53.1"
|
|
3784
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3785
|
-
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
3786
|
-
|
|
3787
3972
|
[[package]]
|
|
3788
3973
|
name = "windows_i686_msvc"
|
|
3789
3974
|
version = "0.52.6"
|
|
3790
3975
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3791
3976
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3792
3977
|
|
|
3793
|
-
[[package]]
|
|
3794
|
-
name = "windows_i686_msvc"
|
|
3795
|
-
version = "0.53.1"
|
|
3796
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3797
|
-
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
3798
|
-
|
|
3799
3978
|
[[package]]
|
|
3800
3979
|
name = "windows_x86_64_gnu"
|
|
3801
3980
|
version = "0.52.6"
|
|
3802
3981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3803
3982
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3804
3983
|
|
|
3805
|
-
[[package]]
|
|
3806
|
-
name = "windows_x86_64_gnu"
|
|
3807
|
-
version = "0.53.1"
|
|
3808
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3809
|
-
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
3810
|
-
|
|
3811
3984
|
[[package]]
|
|
3812
3985
|
name = "windows_x86_64_gnullvm"
|
|
3813
3986
|
version = "0.52.6"
|
|
3814
3987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3815
3988
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3816
3989
|
|
|
3817
|
-
[[package]]
|
|
3818
|
-
name = "windows_x86_64_gnullvm"
|
|
3819
|
-
version = "0.53.1"
|
|
3820
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3821
|
-
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
3822
|
-
|
|
3823
3990
|
[[package]]
|
|
3824
3991
|
name = "windows_x86_64_msvc"
|
|
3825
3992
|
version = "0.52.6"
|
|
3826
3993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3827
3994
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3828
3995
|
|
|
3829
|
-
[[package]]
|
|
3830
|
-
name = "windows_x86_64_msvc"
|
|
3831
|
-
version = "0.53.1"
|
|
3832
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3833
|
-
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
3834
|
-
|
|
3835
3996
|
[[package]]
|
|
3836
3997
|
name = "winnow"
|
|
3837
3998
|
version = "1.0.4"
|
|
@@ -3840,98 +4001,18 @@ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
|
|
|
3840
4001
|
|
|
3841
4002
|
[[package]]
|
|
3842
4003
|
name = "wit-bindgen"
|
|
3843
|
-
version = "0.
|
|
4004
|
+
version = "0.57.1"
|
|
3844
4005
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3845
|
-
checksum = "
|
|
4006
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
3846
4007
|
dependencies = [
|
|
3847
|
-
"bitflags",
|
|
3848
|
-
"wit-bindgen-rust-macro",
|
|
3849
|
-
]
|
|
3850
|
-
|
|
3851
|
-
[[package]]
|
|
3852
|
-
name = "wit-bindgen-core"
|
|
3853
|
-
version = "0.51.0"
|
|
3854
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3855
|
-
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
3856
|
-
dependencies = [
|
|
3857
|
-
"anyhow",
|
|
3858
|
-
"heck",
|
|
3859
|
-
"wit-parser",
|
|
3860
|
-
]
|
|
3861
|
-
|
|
3862
|
-
[[package]]
|
|
3863
|
-
name = "wit-bindgen-rust"
|
|
3864
|
-
version = "0.51.0"
|
|
3865
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3866
|
-
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
3867
|
-
dependencies = [
|
|
3868
|
-
"anyhow",
|
|
3869
|
-
"heck",
|
|
3870
|
-
"indexmap 2.13.0",
|
|
3871
|
-
"prettyplease",
|
|
3872
|
-
"syn 2.0.117",
|
|
3873
|
-
"wasm-metadata",
|
|
3874
|
-
"wit-bindgen-core",
|
|
3875
|
-
"wit-component",
|
|
3876
|
-
]
|
|
3877
|
-
|
|
3878
|
-
[[package]]
|
|
3879
|
-
name = "wit-bindgen-rust-macro"
|
|
3880
|
-
version = "0.51.0"
|
|
3881
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3882
|
-
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
3883
|
-
dependencies = [
|
|
3884
|
-
"anyhow",
|
|
3885
|
-
"prettyplease",
|
|
3886
|
-
"proc-macro2",
|
|
3887
|
-
"quote",
|
|
3888
|
-
"syn 2.0.117",
|
|
3889
|
-
"wit-bindgen-core",
|
|
3890
|
-
"wit-bindgen-rust",
|
|
3891
|
-
]
|
|
3892
|
-
|
|
3893
|
-
[[package]]
|
|
3894
|
-
name = "wit-component"
|
|
3895
|
-
version = "0.244.0"
|
|
3896
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3897
|
-
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
3898
|
-
dependencies = [
|
|
3899
|
-
"anyhow",
|
|
3900
|
-
"bitflags",
|
|
3901
|
-
"indexmap 2.13.0",
|
|
3902
|
-
"log",
|
|
3903
|
-
"serde",
|
|
3904
|
-
"serde_derive",
|
|
3905
|
-
"serde_json",
|
|
3906
|
-
"wasm-encoder",
|
|
3907
|
-
"wasm-metadata",
|
|
3908
|
-
"wasmparser",
|
|
3909
|
-
"wit-parser",
|
|
3910
|
-
]
|
|
3911
|
-
|
|
3912
|
-
[[package]]
|
|
3913
|
-
name = "wit-parser"
|
|
3914
|
-
version = "0.244.0"
|
|
3915
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3916
|
-
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
3917
|
-
dependencies = [
|
|
3918
|
-
"anyhow",
|
|
3919
|
-
"id-arena",
|
|
3920
|
-
"indexmap 2.13.0",
|
|
3921
|
-
"log",
|
|
3922
|
-
"semver",
|
|
3923
|
-
"serde",
|
|
3924
|
-
"serde_derive",
|
|
3925
|
-
"serde_json",
|
|
3926
|
-
"unicode-xid",
|
|
3927
|
-
"wasmparser",
|
|
4008
|
+
"bitflags 2.13.2",
|
|
3928
4009
|
]
|
|
3929
4010
|
|
|
3930
4011
|
[[package]]
|
|
3931
4012
|
name = "writeable"
|
|
3932
|
-
version = "0.6.
|
|
4013
|
+
version = "0.6.4"
|
|
3933
4014
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3934
|
-
checksum = "
|
|
4015
|
+
checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
|
|
3935
4016
|
|
|
3936
4017
|
[[package]]
|
|
3937
4018
|
name = "wstd"
|
|
@@ -3957,7 +4038,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3957
4038
|
checksum = "cb142608f932022fa7d155d8ed99649d02c56a50532e71913a5a03c7c4e288d3"
|
|
3958
4039
|
dependencies = [
|
|
3959
4040
|
"quote",
|
|
3960
|
-
"syn 2.0.
|
|
4041
|
+
"syn 2.0.119",
|
|
3961
4042
|
]
|
|
3962
4043
|
|
|
3963
4044
|
[[package]]
|
|
@@ -3979,10 +4060,10 @@ dependencies = [
|
|
|
3979
4060
|
"data-encoding",
|
|
3980
4061
|
"der-parser",
|
|
3981
4062
|
"lazy_static",
|
|
3982
|
-
"nom",
|
|
4063
|
+
"nom 7.1.3",
|
|
3983
4064
|
"oid-registry",
|
|
3984
4065
|
"rusticata-macros",
|
|
3985
|
-
"thiserror 2.0.
|
|
4066
|
+
"thiserror 2.0.20",
|
|
3986
4067
|
"time",
|
|
3987
4068
|
]
|
|
3988
4069
|
|
|
@@ -3994,9 +4075,9 @@ checksum = "cd223bc94c615fc02bf2f4bbc22a4a9bfe489c2add3ec10b1038df3aca44cac7"
|
|
|
3994
4075
|
|
|
3995
4076
|
[[package]]
|
|
3996
4077
|
name = "yoke"
|
|
3997
|
-
version = "0.8.
|
|
4078
|
+
version = "0.8.3"
|
|
3998
4079
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3999
|
-
checksum = "
|
|
4080
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
4000
4081
|
dependencies = [
|
|
4001
4082
|
"stable_deref_trait",
|
|
4002
4083
|
"yoke-derive",
|
|
@@ -4005,82 +4086,82 @@ dependencies = [
|
|
|
4005
4086
|
|
|
4006
4087
|
[[package]]
|
|
4007
4088
|
name = "yoke-derive"
|
|
4008
|
-
version = "0.8.
|
|
4089
|
+
version = "0.8.2"
|
|
4009
4090
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4010
|
-
checksum = "
|
|
4091
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
4011
4092
|
dependencies = [
|
|
4012
4093
|
"proc-macro2",
|
|
4013
4094
|
"quote",
|
|
4014
|
-
"syn 2.0.
|
|
4095
|
+
"syn 2.0.119",
|
|
4015
4096
|
"synstructure",
|
|
4016
4097
|
]
|
|
4017
4098
|
|
|
4018
4099
|
[[package]]
|
|
4019
4100
|
name = "zerocopy"
|
|
4020
|
-
version = "0.8.
|
|
4101
|
+
version = "0.8.57"
|
|
4021
4102
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4022
|
-
checksum = "
|
|
4103
|
+
checksum = "d35102a9f36d089ccae9e4c6802bc118be4487b80aaffc0ab4e0cf5ce92d2873"
|
|
4023
4104
|
dependencies = [
|
|
4024
4105
|
"zerocopy-derive",
|
|
4025
4106
|
]
|
|
4026
4107
|
|
|
4027
4108
|
[[package]]
|
|
4028
4109
|
name = "zerocopy-derive"
|
|
4029
|
-
version = "0.8.
|
|
4110
|
+
version = "0.8.57"
|
|
4030
4111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4031
|
-
checksum = "
|
|
4112
|
+
checksum = "146c01f5ab44258da43cf276c74a2763db2ff3969c9c652c3f2de07041d0b2bc"
|
|
4032
4113
|
dependencies = [
|
|
4033
4114
|
"proc-macro2",
|
|
4034
4115
|
"quote",
|
|
4035
|
-
"syn 2.0.
|
|
4116
|
+
"syn 2.0.119",
|
|
4036
4117
|
]
|
|
4037
4118
|
|
|
4038
4119
|
[[package]]
|
|
4039
4120
|
name = "zerofrom"
|
|
4040
|
-
version = "0.1.
|
|
4121
|
+
version = "0.1.8"
|
|
4041
4122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4042
|
-
checksum = "
|
|
4123
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
4043
4124
|
dependencies = [
|
|
4044
4125
|
"zerofrom-derive",
|
|
4045
4126
|
]
|
|
4046
4127
|
|
|
4047
4128
|
[[package]]
|
|
4048
4129
|
name = "zerofrom-derive"
|
|
4049
|
-
version = "0.1.
|
|
4130
|
+
version = "0.1.7"
|
|
4050
4131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4051
|
-
checksum = "
|
|
4132
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
4052
4133
|
dependencies = [
|
|
4053
4134
|
"proc-macro2",
|
|
4054
4135
|
"quote",
|
|
4055
|
-
"syn 2.0.
|
|
4136
|
+
"syn 2.0.119",
|
|
4056
4137
|
"synstructure",
|
|
4057
4138
|
]
|
|
4058
4139
|
|
|
4059
4140
|
[[package]]
|
|
4060
4141
|
name = "zeroize"
|
|
4061
|
-
version = "1.
|
|
4142
|
+
version = "1.9.0"
|
|
4062
4143
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4063
|
-
checksum = "
|
|
4144
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
4064
4145
|
dependencies = [
|
|
4065
4146
|
"zeroize_derive",
|
|
4066
4147
|
]
|
|
4067
4148
|
|
|
4068
4149
|
[[package]]
|
|
4069
4150
|
name = "zeroize_derive"
|
|
4070
|
-
version = "1.
|
|
4151
|
+
version = "1.5.0"
|
|
4071
4152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4072
|
-
checksum = "
|
|
4153
|
+
checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
|
|
4073
4154
|
dependencies = [
|
|
4074
4155
|
"proc-macro2",
|
|
4075
4156
|
"quote",
|
|
4076
|
-
"syn 2.0.
|
|
4157
|
+
"syn 2.0.119",
|
|
4077
4158
|
]
|
|
4078
4159
|
|
|
4079
4160
|
[[package]]
|
|
4080
4161
|
name = "zerotrie"
|
|
4081
|
-
version = "0.2.
|
|
4162
|
+
version = "0.2.5"
|
|
4082
4163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4083
|
-
checksum = "
|
|
4164
|
+
checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"
|
|
4084
4165
|
dependencies = [
|
|
4085
4166
|
"displaydoc",
|
|
4086
4167
|
"yoke",
|
|
@@ -4089,9 +4170,9 @@ dependencies = [
|
|
|
4089
4170
|
|
|
4090
4171
|
[[package]]
|
|
4091
4172
|
name = "zerovec"
|
|
4092
|
-
version = "0.11.
|
|
4173
|
+
version = "0.11.8"
|
|
4093
4174
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4094
|
-
checksum = "
|
|
4175
|
+
checksum = "bb0464e17806c1d976d5cba29399c7f08e516e279e2ba493f63123b5fca67dd8"
|
|
4095
4176
|
dependencies = [
|
|
4096
4177
|
"yoke",
|
|
4097
4178
|
"zerofrom",
|
|
@@ -4100,13 +4181,13 @@ dependencies = [
|
|
|
4100
4181
|
|
|
4101
4182
|
[[package]]
|
|
4102
4183
|
name = "zerovec-derive"
|
|
4103
|
-
version = "0.11.
|
|
4184
|
+
version = "0.11.6"
|
|
4104
4185
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4105
|
-
checksum = "
|
|
4186
|
+
checksum = "34df6fc39dbd26ddc9c10e6a2984476e13acce22e64e4487636ef494369225da"
|
|
4106
4187
|
dependencies = [
|
|
4107
4188
|
"proc-macro2",
|
|
4108
4189
|
"quote",
|
|
4109
|
-
"syn
|
|
4190
|
+
"syn 3.0.5",
|
|
4110
4191
|
]
|
|
4111
4192
|
|
|
4112
4193
|
[[package]]
|
|
@@ -4116,13 +4197,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4116
4197
|
checksum = "2d04a6b5381502aa6087c94c669499eb1602eb9c5e8198e534de571f7154809b"
|
|
4117
4198
|
dependencies = [
|
|
4118
4199
|
"crc32fast",
|
|
4119
|
-
"indexmap 2.
|
|
4200
|
+
"indexmap 2.14.2",
|
|
4120
4201
|
"memchr",
|
|
4121
4202
|
"typed-path",
|
|
4122
4203
|
]
|
|
4123
4204
|
|
|
4205
|
+
[[package]]
|
|
4206
|
+
name = "zlib-rs"
|
|
4207
|
+
version = "0.6.7"
|
|
4208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4209
|
+
checksum = "34b31d188d9d685a4f9c7b46d6e36631b07058d2cfe190267adce54dc230bf12"
|
|
4210
|
+
|
|
4124
4211
|
[[package]]
|
|
4125
4212
|
name = "zmij"
|
|
4126
|
-
version = "1.0.
|
|
4213
|
+
version = "1.0.23"
|
|
4127
4214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4128
|
-
checksum = "
|
|
4215
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|