act-cli 0.7.3__tar.gz → 0.7.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {act_cli-0.7.3 → act_cli-0.7.5}/Cargo.lock +403 -495
- {act_cli-0.7.3 → act_cli-0.7.5}/Cargo.toml +2 -2
- {act_cli-0.7.3 → act_cli-0.7.5}/PKG-INFO +1 -1
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/Cargo.toml +13 -13
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/src/config.rs +247 -0
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/src/main.rs +40 -5
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/src/resolve.rs +67 -11
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/src/rmcp_bridge.rs +221 -27
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/src/runtime/effective.rs +219 -0
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/src/runtime/http_client.rs +0 -3
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/src/runtime/http_policy.rs +0 -2
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/src/runtime/mod.rs +13 -2
- act_cli-0.7.5/act-cli/src/runtime/sockets_policy.rs +385 -0
- {act_cli-0.7.3 → act_cli-0.7.5}/README.md +0 -0
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/README.md +0 -0
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/build.rs +0 -0
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/src/format.rs +0 -0
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/src/http.rs +15 -15
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/src/runtime/bindings/mod.rs +0 -0
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/src/runtime/fs_matcher.rs +0 -0
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/src/runtime/fs_policy.rs +0 -0
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/src/runtime/network.rs +0 -0
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/src/runtime/sessions.rs +0 -0
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/wit/deps/act-core/act-core.wit +0 -0
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/wit/deps/act-tools/act-tools.wit +0 -0
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/wit/deps.lock +0 -0
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/wit/deps.toml +0 -0
- {act_cli-0.7.3 → act_cli-0.7.5}/act-cli/wit/world.wit +0 -0
- {act_cli-0.7.3 → act_cli-0.7.5}/pyproject.toml +0 -0
|
@@ -4,7 +4,7 @@ version = 4
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "act-build"
|
|
7
|
-
version = "0.7.
|
|
7
|
+
version = "0.7.5"
|
|
8
8
|
dependencies = [
|
|
9
9
|
"act-types",
|
|
10
10
|
"anyhow",
|
|
@@ -12,9 +12,13 @@ dependencies = [
|
|
|
12
12
|
"ciborium",
|
|
13
13
|
"clap",
|
|
14
14
|
"dirs",
|
|
15
|
+
"flate2",
|
|
15
16
|
"globset",
|
|
17
|
+
"include_dir",
|
|
16
18
|
"json-patch",
|
|
19
|
+
"minijinja",
|
|
17
20
|
"oci-client",
|
|
21
|
+
"reqwest",
|
|
18
22
|
"serde",
|
|
19
23
|
"serde_json",
|
|
20
24
|
"sha2 0.11.0",
|
|
@@ -24,13 +28,14 @@ dependencies = [
|
|
|
24
28
|
"toml 1.1.2+spec-1.1.0",
|
|
25
29
|
"tracing",
|
|
26
30
|
"tracing-subscriber",
|
|
27
|
-
"
|
|
28
|
-
"
|
|
31
|
+
"walkdir",
|
|
32
|
+
"wasm-encoder 0.250.0",
|
|
33
|
+
"wasmparser 0.250.0",
|
|
29
34
|
]
|
|
30
35
|
|
|
31
36
|
[[package]]
|
|
32
37
|
name = "act-cli"
|
|
33
|
-
version = "0.7.
|
|
38
|
+
version = "0.7.5"
|
|
34
39
|
dependencies = [
|
|
35
40
|
"act-types",
|
|
36
41
|
"anyhow",
|
|
@@ -67,7 +72,7 @@ dependencies = [
|
|
|
67
72
|
"tracing",
|
|
68
73
|
"tracing-subscriber",
|
|
69
74
|
"url",
|
|
70
|
-
"wasmparser 0.
|
|
75
|
+
"wasmparser 0.250.0",
|
|
71
76
|
"wasmtime",
|
|
72
77
|
"wasmtime-wasi",
|
|
73
78
|
"wasmtime-wasi-http",
|
|
@@ -75,9 +80,9 @@ dependencies = [
|
|
|
75
80
|
|
|
76
81
|
[[package]]
|
|
77
82
|
name = "act-types"
|
|
78
|
-
version = "0.7.
|
|
83
|
+
version = "0.7.1"
|
|
79
84
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
-
checksum = "
|
|
85
|
+
checksum = "40744091fc7b75e2f694d0df62476f5dea36c72fc6bf3bed86364ffb1a52c691"
|
|
81
86
|
dependencies = [
|
|
82
87
|
"base64",
|
|
83
88
|
"ciborium",
|
|
@@ -95,6 +100,12 @@ dependencies = [
|
|
|
95
100
|
"gimli",
|
|
96
101
|
]
|
|
97
102
|
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "adler2"
|
|
105
|
+
version = "2.0.1"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
108
|
+
|
|
98
109
|
[[package]]
|
|
99
110
|
name = "aho-corasick"
|
|
100
111
|
version = "1.1.4"
|
|
@@ -206,25 +217,26 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
|
206
217
|
|
|
207
218
|
[[package]]
|
|
208
219
|
name = "autocfg"
|
|
209
|
-
version = "1.5.
|
|
220
|
+
version = "1.5.1"
|
|
210
221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
-
checksum = "
|
|
222
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
212
223
|
|
|
213
224
|
[[package]]
|
|
214
225
|
name = "aws-lc-rs"
|
|
215
|
-
version = "1.
|
|
226
|
+
version = "1.17.0"
|
|
216
227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
-
checksum = "
|
|
228
|
+
checksum = "5ec2f1fc3ec205783a5da9a7e6c1509cc69dedf09a1949e412c1e18469326d00"
|
|
218
229
|
dependencies = [
|
|
219
230
|
"aws-lc-sys",
|
|
231
|
+
"untrusted 0.7.1",
|
|
220
232
|
"zeroize",
|
|
221
233
|
]
|
|
222
234
|
|
|
223
235
|
[[package]]
|
|
224
236
|
name = "aws-lc-sys"
|
|
225
|
-
version = "0.
|
|
237
|
+
version = "0.41.0"
|
|
226
238
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
-
checksum = "
|
|
239
|
+
checksum = "1a2f9779ce85b93ab6170dd940ad0169b5766ff848247aff13bb788b832fe3f4"
|
|
228
240
|
dependencies = [
|
|
229
241
|
"cc",
|
|
230
242
|
"cmake",
|
|
@@ -296,15 +308,6 @@ version = "2.11.1"
|
|
|
296
308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
309
|
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
298
310
|
|
|
299
|
-
[[package]]
|
|
300
|
-
name = "bitmaps"
|
|
301
|
-
version = "2.1.0"
|
|
302
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
-
checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2"
|
|
304
|
-
dependencies = [
|
|
305
|
-
"typenum",
|
|
306
|
-
]
|
|
307
|
-
|
|
308
311
|
[[package]]
|
|
309
312
|
name = "block-buffer"
|
|
310
313
|
version = "0.10.4"
|
|
@@ -323,6 +326,15 @@ dependencies = [
|
|
|
323
326
|
"hybrid-array",
|
|
324
327
|
]
|
|
325
328
|
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "bs58"
|
|
331
|
+
version = "0.5.1"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"tinyvec",
|
|
336
|
+
]
|
|
337
|
+
|
|
326
338
|
[[package]]
|
|
327
339
|
name = "bstr"
|
|
328
340
|
version = "1.12.1"
|
|
@@ -335,9 +347,9 @@ dependencies = [
|
|
|
335
347
|
|
|
336
348
|
[[package]]
|
|
337
349
|
name = "bumpalo"
|
|
338
|
-
version = "3.20.
|
|
350
|
+
version = "3.20.3"
|
|
339
351
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
-
checksum = "
|
|
352
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
341
353
|
dependencies = [
|
|
342
354
|
"allocator-api2",
|
|
343
355
|
]
|
|
@@ -368,7 +380,7 @@ checksum = "20a158160765c6a7d0d8c072a53d772e4cb243f38b04bfcf6b4939cfbe7482e7"
|
|
|
368
380
|
dependencies = [
|
|
369
381
|
"cap-primitives",
|
|
370
382
|
"cap-std",
|
|
371
|
-
"rustix
|
|
383
|
+
"rustix",
|
|
372
384
|
"smallvec",
|
|
373
385
|
]
|
|
374
386
|
|
|
@@ -384,22 +396,12 @@ dependencies = [
|
|
|
384
396
|
"io-lifetimes",
|
|
385
397
|
"ipnet",
|
|
386
398
|
"maybe-owned",
|
|
387
|
-
"rustix
|
|
399
|
+
"rustix",
|
|
388
400
|
"rustix-linux-procfs",
|
|
389
401
|
"windows-sys 0.59.0",
|
|
390
402
|
"winx",
|
|
391
403
|
]
|
|
392
404
|
|
|
393
|
-
[[package]]
|
|
394
|
-
name = "cap-rand"
|
|
395
|
-
version = "3.4.5"
|
|
396
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
-
checksum = "d8144c22e24bbcf26ade86cb6501a0916c46b7e4787abdb0045a467eb1645a1d"
|
|
398
|
-
dependencies = [
|
|
399
|
-
"ambient-authority",
|
|
400
|
-
"rand 0.8.6",
|
|
401
|
-
]
|
|
402
|
-
|
|
403
405
|
[[package]]
|
|
404
406
|
name = "cap-std"
|
|
405
407
|
version = "3.4.5"
|
|
@@ -409,7 +411,7 @@ dependencies = [
|
|
|
409
411
|
"cap-primitives",
|
|
410
412
|
"io-extras",
|
|
411
413
|
"io-lifetimes",
|
|
412
|
-
"rustix
|
|
414
|
+
"rustix",
|
|
413
415
|
]
|
|
414
416
|
|
|
415
417
|
[[package]]
|
|
@@ -422,15 +424,15 @@ dependencies = [
|
|
|
422
424
|
"cap-primitives",
|
|
423
425
|
"iana-time-zone",
|
|
424
426
|
"once_cell",
|
|
425
|
-
"rustix
|
|
427
|
+
"rustix",
|
|
426
428
|
"winx",
|
|
427
429
|
]
|
|
428
430
|
|
|
429
431
|
[[package]]
|
|
430
432
|
name = "cc"
|
|
431
|
-
version = "1.2.
|
|
433
|
+
version = "1.2.62"
|
|
432
434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
-
checksum = "
|
|
435
|
+
checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
|
|
434
436
|
dependencies = [
|
|
435
437
|
"find-msvc-tools",
|
|
436
438
|
"jobserver",
|
|
@@ -438,12 +440,6 @@ dependencies = [
|
|
|
438
440
|
"shlex",
|
|
439
441
|
]
|
|
440
442
|
|
|
441
|
-
[[package]]
|
|
442
|
-
name = "cesu8"
|
|
443
|
-
version = "1.1.0"
|
|
444
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
-
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
446
|
-
|
|
447
443
|
[[package]]
|
|
448
444
|
name = "cfg-if"
|
|
449
445
|
version = "1.0.4"
|
|
@@ -456,6 +452,17 @@ version = "0.2.1"
|
|
|
456
452
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
457
453
|
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
458
454
|
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "chacha20"
|
|
457
|
+
version = "0.10.0"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"cfg-if",
|
|
462
|
+
"cpufeatures 0.3.0",
|
|
463
|
+
"rand_core 0.10.1",
|
|
464
|
+
]
|
|
465
|
+
|
|
459
466
|
[[package]]
|
|
460
467
|
name = "chrono"
|
|
461
468
|
version = "0.4.44"
|
|
@@ -661,27 +668,27 @@ dependencies = [
|
|
|
661
668
|
|
|
662
669
|
[[package]]
|
|
663
670
|
name = "cranelift-assembler-x64"
|
|
664
|
-
version = "0.
|
|
671
|
+
version = "0.132.0"
|
|
665
672
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
-
checksum = "
|
|
673
|
+
checksum = "8c80cf55a351448317210f26c434be761bcb25e7b36116ec92f89540b73e2833"
|
|
667
674
|
dependencies = [
|
|
668
675
|
"cranelift-assembler-x64-meta",
|
|
669
676
|
]
|
|
670
677
|
|
|
671
678
|
[[package]]
|
|
672
679
|
name = "cranelift-assembler-x64-meta"
|
|
673
|
-
version = "0.
|
|
680
|
+
version = "0.132.0"
|
|
674
681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
-
checksum = "
|
|
682
|
+
checksum = "07937ca8617b340162fe3a4716be885b5847e9b56d6c7a89abbe4d42340fdc91"
|
|
676
683
|
dependencies = [
|
|
677
684
|
"cranelift-srcgen",
|
|
678
685
|
]
|
|
679
686
|
|
|
680
687
|
[[package]]
|
|
681
688
|
name = "cranelift-bforest"
|
|
682
|
-
version = "0.
|
|
689
|
+
version = "0.132.0"
|
|
683
690
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
-
checksum = "
|
|
691
|
+
checksum = "88217b08180882436d54c0133274885c590698ae854e352bede1cda041230800"
|
|
685
692
|
dependencies = [
|
|
686
693
|
"cranelift-entity",
|
|
687
694
|
"wasmtime-internal-core",
|
|
@@ -689,9 +696,9 @@ dependencies = [
|
|
|
689
696
|
|
|
690
697
|
[[package]]
|
|
691
698
|
name = "cranelift-bitset"
|
|
692
|
-
version = "0.
|
|
699
|
+
version = "0.132.0"
|
|
693
700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
-
checksum = "
|
|
701
|
+
checksum = "d5c3cf7ba29fa56e56040848e34835d4e45988b2760ef212413409af95ffd8c1"
|
|
695
702
|
dependencies = [
|
|
696
703
|
"serde",
|
|
697
704
|
"serde_derive",
|
|
@@ -700,9 +707,9 @@ dependencies = [
|
|
|
700
707
|
|
|
701
708
|
[[package]]
|
|
702
709
|
name = "cranelift-codegen"
|
|
703
|
-
version = "0.
|
|
710
|
+
version = "0.132.0"
|
|
704
711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
-
checksum = "
|
|
712
|
+
checksum = "ebe1aac2efd4cba2047845fce38a68519935a30e20c8a6294ba7e2f448fe722d"
|
|
706
713
|
dependencies = [
|
|
707
714
|
"bumpalo",
|
|
708
715
|
"cranelift-assembler-x64",
|
|
@@ -714,7 +721,7 @@ dependencies = [
|
|
|
714
721
|
"cranelift-entity",
|
|
715
722
|
"cranelift-isle",
|
|
716
723
|
"gimli",
|
|
717
|
-
"hashbrown 0.
|
|
724
|
+
"hashbrown 0.17.1",
|
|
718
725
|
"libm",
|
|
719
726
|
"log",
|
|
720
727
|
"pulley-interpreter",
|
|
@@ -728,9 +735,9 @@ dependencies = [
|
|
|
728
735
|
|
|
729
736
|
[[package]]
|
|
730
737
|
name = "cranelift-codegen-meta"
|
|
731
|
-
version = "0.
|
|
738
|
+
version = "0.132.0"
|
|
732
739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
-
checksum = "
|
|
740
|
+
checksum = "0909eaf9d6f18f5bf802d50608cb4368ac340fbd03cc44f2888d1cfcc3faa64e"
|
|
734
741
|
dependencies = [
|
|
735
742
|
"cranelift-assembler-x64-meta",
|
|
736
743
|
"cranelift-codegen-shared",
|
|
@@ -741,24 +748,24 @@ dependencies = [
|
|
|
741
748
|
|
|
742
749
|
[[package]]
|
|
743
750
|
name = "cranelift-codegen-shared"
|
|
744
|
-
version = "0.
|
|
751
|
+
version = "0.132.0"
|
|
745
752
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
746
|
-
checksum = "
|
|
753
|
+
checksum = "c95a8da8be283f49cda7d0ef228c94f10d791e517b27b0c7e282dadd2e79ce45"
|
|
747
754
|
|
|
748
755
|
[[package]]
|
|
749
756
|
name = "cranelift-control"
|
|
750
|
-
version = "0.
|
|
757
|
+
version = "0.132.0"
|
|
751
758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
-
checksum = "
|
|
759
|
+
checksum = "f5b19c81145146da1f7afda2e7f52111842fe6793512e740ad5cf3f5639e6212"
|
|
753
760
|
dependencies = [
|
|
754
761
|
"arbitrary",
|
|
755
762
|
]
|
|
756
763
|
|
|
757
764
|
[[package]]
|
|
758
765
|
name = "cranelift-entity"
|
|
759
|
-
version = "0.
|
|
766
|
+
version = "0.132.0"
|
|
760
767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
-
checksum = "
|
|
768
|
+
checksum = "4a55309b47e6633ab05821304206cb1e92952e845b1224985562bb7ac1e92323"
|
|
762
769
|
dependencies = [
|
|
763
770
|
"cranelift-bitset",
|
|
764
771
|
"serde",
|
|
@@ -768,9 +775,9 @@ dependencies = [
|
|
|
768
775
|
|
|
769
776
|
[[package]]
|
|
770
777
|
name = "cranelift-frontend"
|
|
771
|
-
version = "0.
|
|
778
|
+
version = "0.132.0"
|
|
772
779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
-
checksum = "
|
|
780
|
+
checksum = "064d2d3533d9608f1cf44c8899cf2f7f33feb70300b0fb83e687b0d9e7b91147"
|
|
774
781
|
dependencies = [
|
|
775
782
|
"cranelift-codegen",
|
|
776
783
|
"log",
|
|
@@ -780,15 +787,15 @@ dependencies = [
|
|
|
780
787
|
|
|
781
788
|
[[package]]
|
|
782
789
|
name = "cranelift-isle"
|
|
783
|
-
version = "0.
|
|
790
|
+
version = "0.132.0"
|
|
784
791
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
-
checksum = "
|
|
792
|
+
checksum = "1ac4e0bc095b2dab2212d1e99d7a74b62afc1485db023f1c0cb34a68758f7bd1"
|
|
786
793
|
|
|
787
794
|
[[package]]
|
|
788
795
|
name = "cranelift-native"
|
|
789
|
-
version = "0.
|
|
796
|
+
version = "0.132.0"
|
|
790
797
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
-
checksum = "
|
|
798
|
+
checksum = "09a40053f5cb925451dd1d57393d14ad3145c8e0786701c27b5415ebb9a3ba4f"
|
|
792
799
|
dependencies = [
|
|
793
800
|
"cranelift-codegen",
|
|
794
801
|
"libc",
|
|
@@ -797,9 +804,9 @@ dependencies = [
|
|
|
797
804
|
|
|
798
805
|
[[package]]
|
|
799
806
|
name = "cranelift-srcgen"
|
|
800
|
-
version = "0.
|
|
807
|
+
version = "0.132.0"
|
|
801
808
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
-
checksum = "
|
|
809
|
+
checksum = "a3ceab9a53f7d362c89841fbaa8e63e44d47c40e91dc96ee6f777fca5d6b323b"
|
|
803
810
|
|
|
804
811
|
[[package]]
|
|
805
812
|
name = "crc32fast"
|
|
@@ -853,9 +860,9 @@ dependencies = [
|
|
|
853
860
|
|
|
854
861
|
[[package]]
|
|
855
862
|
name = "crypto-common"
|
|
856
|
-
version = "0.2.
|
|
863
|
+
version = "0.2.2"
|
|
857
864
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
-
checksum = "
|
|
865
|
+
checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
|
|
859
866
|
dependencies = [
|
|
860
867
|
"hybrid-array",
|
|
861
868
|
]
|
|
@@ -991,13 +998,13 @@ dependencies = [
|
|
|
991
998
|
|
|
992
999
|
[[package]]
|
|
993
1000
|
name = "digest"
|
|
994
|
-
version = "0.11.
|
|
1001
|
+
version = "0.11.3"
|
|
995
1002
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
996
|
-
checksum = "
|
|
1003
|
+
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
997
1004
|
dependencies = [
|
|
998
1005
|
"block-buffer 0.12.0",
|
|
999
1006
|
"const-oid",
|
|
1000
|
-
"crypto-common 0.2.
|
|
1007
|
+
"crypto-common 0.2.2",
|
|
1001
1008
|
]
|
|
1002
1009
|
|
|
1003
1010
|
[[package]]
|
|
@@ -1067,9 +1074,9 @@ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
|
1067
1074
|
|
|
1068
1075
|
[[package]]
|
|
1069
1076
|
name = "either"
|
|
1070
|
-
version = "1.
|
|
1077
|
+
version = "1.16.0"
|
|
1071
1078
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1072
|
-
checksum = "
|
|
1079
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
1073
1080
|
|
|
1074
1081
|
[[package]]
|
|
1075
1082
|
name = "embed-manifest"
|
|
@@ -1126,26 +1133,14 @@ version = "2.4.1"
|
|
|
1126
1133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
1134
|
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
1128
1135
|
|
|
1129
|
-
[[package]]
|
|
1130
|
-
name = "fd-lock"
|
|
1131
|
-
version = "4.0.4"
|
|
1132
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
-
checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
|
|
1134
|
-
dependencies = [
|
|
1135
|
-
"cfg-if",
|
|
1136
|
-
"rustix 1.1.4",
|
|
1137
|
-
"windows-sys 0.59.0",
|
|
1138
|
-
]
|
|
1139
|
-
|
|
1140
1136
|
[[package]]
|
|
1141
1137
|
name = "filetime"
|
|
1142
|
-
version = "0.2.
|
|
1138
|
+
version = "0.2.29"
|
|
1143
1139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
|
-
checksum = "
|
|
1140
|
+
checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
|
|
1145
1141
|
dependencies = [
|
|
1146
1142
|
"cfg-if",
|
|
1147
1143
|
"libc",
|
|
1148
|
-
"libredox",
|
|
1149
1144
|
]
|
|
1150
1145
|
|
|
1151
1146
|
[[package]]
|
|
@@ -1160,6 +1155,16 @@ version = "0.4.2"
|
|
|
1160
1155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
1156
|
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
1162
1157
|
|
|
1158
|
+
[[package]]
|
|
1159
|
+
name = "flate2"
|
|
1160
|
+
version = "1.1.9"
|
|
1161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1162
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
1163
|
+
dependencies = [
|
|
1164
|
+
"crc32fast",
|
|
1165
|
+
"miniz_oxide",
|
|
1166
|
+
]
|
|
1167
|
+
|
|
1163
1168
|
[[package]]
|
|
1164
1169
|
name = "fnv"
|
|
1165
1170
|
version = "1.0.7"
|
|
@@ -1194,7 +1199,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1194
1199
|
checksum = "94e7099f6313ecacbe1256e8ff9d617b75d1bcb16a6fddef94866d225a01a14a"
|
|
1195
1200
|
dependencies = [
|
|
1196
1201
|
"io-lifetimes",
|
|
1197
|
-
"rustix
|
|
1202
|
+
"rustix",
|
|
1198
1203
|
"windows-sys 0.59.0",
|
|
1199
1204
|
]
|
|
1200
1205
|
|
|
@@ -1352,6 +1357,7 @@ dependencies = [
|
|
|
1352
1357
|
"cfg-if",
|
|
1353
1358
|
"libc",
|
|
1354
1359
|
"r-efi 6.0.0",
|
|
1360
|
+
"rand_core 0.10.1",
|
|
1355
1361
|
"wasip2",
|
|
1356
1362
|
"wasip3",
|
|
1357
1363
|
]
|
|
@@ -1395,9 +1401,9 @@ dependencies = [
|
|
|
1395
1401
|
|
|
1396
1402
|
[[package]]
|
|
1397
1403
|
name = "h2"
|
|
1398
|
-
version = "0.4.
|
|
1404
|
+
version = "0.4.14"
|
|
1399
1405
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1400
|
-
checksum = "
|
|
1406
|
+
checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
|
|
1401
1407
|
dependencies = [
|
|
1402
1408
|
"atomic-waker",
|
|
1403
1409
|
"bytes",
|
|
@@ -1412,34 +1418,6 @@ dependencies = [
|
|
|
1412
1418
|
"tracing",
|
|
1413
1419
|
]
|
|
1414
1420
|
|
|
1415
|
-
[[package]]
|
|
1416
|
-
name = "h3"
|
|
1417
|
-
version = "0.0.8"
|
|
1418
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1419
|
-
checksum = "10872b55cfb02a821b69dc7cf8dc6a71d6af25eb9a79662bec4a9d016056b3be"
|
|
1420
|
-
dependencies = [
|
|
1421
|
-
"bytes",
|
|
1422
|
-
"fastrand",
|
|
1423
|
-
"futures-util",
|
|
1424
|
-
"http",
|
|
1425
|
-
"pin-project-lite",
|
|
1426
|
-
"tokio",
|
|
1427
|
-
]
|
|
1428
|
-
|
|
1429
|
-
[[package]]
|
|
1430
|
-
name = "h3-quinn"
|
|
1431
|
-
version = "0.0.10"
|
|
1432
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1433
|
-
checksum = "8b2e732c8d91a74731663ac8479ab505042fbf547b9a207213ab7fbcbfc4f8b4"
|
|
1434
|
-
dependencies = [
|
|
1435
|
-
"bytes",
|
|
1436
|
-
"futures",
|
|
1437
|
-
"h3",
|
|
1438
|
-
"quinn",
|
|
1439
|
-
"tokio",
|
|
1440
|
-
"tokio-util",
|
|
1441
|
-
]
|
|
1442
|
-
|
|
1443
1421
|
[[package]]
|
|
1444
1422
|
name = "half"
|
|
1445
1423
|
version = "2.7.1"
|
|
@@ -1471,17 +1449,12 @@ name = "hashbrown"
|
|
|
1471
1449
|
version = "0.16.1"
|
|
1472
1450
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1473
1451
|
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1474
|
-
dependencies = [
|
|
1475
|
-
"foldhash 0.2.0",
|
|
1476
|
-
"serde",
|
|
1477
|
-
"serde_core",
|
|
1478
|
-
]
|
|
1479
1452
|
|
|
1480
1453
|
[[package]]
|
|
1481
1454
|
name = "hashbrown"
|
|
1482
|
-
version = "0.17.
|
|
1455
|
+
version = "0.17.1"
|
|
1483
1456
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1484
|
-
checksum = "
|
|
1457
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
1485
1458
|
dependencies = [
|
|
1486
1459
|
"foldhash 0.2.0",
|
|
1487
1460
|
"serde",
|
|
@@ -1562,9 +1535,9 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
|
1562
1535
|
|
|
1563
1536
|
[[package]]
|
|
1564
1537
|
name = "hybrid-array"
|
|
1565
|
-
version = "0.4.
|
|
1538
|
+
version = "0.4.12"
|
|
1566
1539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1567
|
-
checksum = "
|
|
1540
|
+
checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da"
|
|
1568
1541
|
dependencies = [
|
|
1569
1542
|
"typenum",
|
|
1570
1543
|
]
|
|
@@ -1760,26 +1733,31 @@ dependencies = [
|
|
|
1760
1733
|
|
|
1761
1734
|
[[package]]
|
|
1762
1735
|
name = "idna_adapter"
|
|
1763
|
-
version = "1.2.
|
|
1736
|
+
version = "1.2.2"
|
|
1764
1737
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1765
|
-
checksum = "
|
|
1738
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
1766
1739
|
dependencies = [
|
|
1767
1740
|
"icu_normalizer",
|
|
1768
1741
|
"icu_properties",
|
|
1769
1742
|
]
|
|
1770
1743
|
|
|
1771
1744
|
[[package]]
|
|
1772
|
-
name = "
|
|
1773
|
-
version = "
|
|
1745
|
+
name = "include_dir"
|
|
1746
|
+
version = "0.7.4"
|
|
1774
1747
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1775
|
-
checksum = "
|
|
1748
|
+
checksum = "923d117408f1e49d914f1a379a309cffe4f18c05cf4e3d12e613a15fc81bd0dd"
|
|
1776
1749
|
dependencies = [
|
|
1777
|
-
"
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
"
|
|
1782
|
-
"
|
|
1750
|
+
"include_dir_macros",
|
|
1751
|
+
]
|
|
1752
|
+
|
|
1753
|
+
[[package]]
|
|
1754
|
+
name = "include_dir_macros"
|
|
1755
|
+
version = "0.7.4"
|
|
1756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1757
|
+
checksum = "7cab85a7ed0bd5f0e76d93846e0147172bed2e2d3f859bcc33a8d9699cad1a75"
|
|
1758
|
+
dependencies = [
|
|
1759
|
+
"proc-macro2",
|
|
1760
|
+
"quote",
|
|
1783
1761
|
]
|
|
1784
1762
|
|
|
1785
1763
|
[[package]]
|
|
@@ -1800,7 +1778,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1800
1778
|
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1801
1779
|
dependencies = [
|
|
1802
1780
|
"equivalent",
|
|
1803
|
-
"hashbrown 0.17.
|
|
1781
|
+
"hashbrown 0.17.1",
|
|
1804
1782
|
"serde",
|
|
1805
1783
|
"serde_core",
|
|
1806
1784
|
]
|
|
@@ -1840,16 +1818,6 @@ version = "2.12.0"
|
|
|
1840
1818
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
1819
|
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
1842
1820
|
|
|
1843
|
-
[[package]]
|
|
1844
|
-
name = "iri-string"
|
|
1845
|
-
version = "0.7.12"
|
|
1846
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1847
|
-
checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
|
|
1848
|
-
dependencies = [
|
|
1849
|
-
"memchr",
|
|
1850
|
-
"serde",
|
|
1851
|
-
]
|
|
1852
|
-
|
|
1853
1821
|
[[package]]
|
|
1854
1822
|
name = "is-terminal"
|
|
1855
1823
|
version = "0.4.17"
|
|
@@ -1910,27 +1878,32 @@ dependencies = [
|
|
|
1910
1878
|
|
|
1911
1879
|
[[package]]
|
|
1912
1880
|
name = "jni"
|
|
1913
|
-
version = "0.
|
|
1881
|
+
version = "0.22.4"
|
|
1914
1882
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1915
|
-
checksum = "
|
|
1883
|
+
checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
|
|
1916
1884
|
dependencies = [
|
|
1917
|
-
"cesu8",
|
|
1918
1885
|
"cfg-if",
|
|
1919
1886
|
"combine",
|
|
1920
|
-
"jni-
|
|
1887
|
+
"jni-macros",
|
|
1888
|
+
"jni-sys",
|
|
1921
1889
|
"log",
|
|
1922
|
-
"
|
|
1890
|
+
"simd_cesu8",
|
|
1891
|
+
"thiserror 2.0.18",
|
|
1923
1892
|
"walkdir",
|
|
1924
|
-
"windows-
|
|
1893
|
+
"windows-link",
|
|
1925
1894
|
]
|
|
1926
1895
|
|
|
1927
1896
|
[[package]]
|
|
1928
|
-
name = "jni-
|
|
1929
|
-
version = "0.
|
|
1897
|
+
name = "jni-macros"
|
|
1898
|
+
version = "0.22.4"
|
|
1930
1899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1931
|
-
checksum = "
|
|
1900
|
+
checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
|
|
1932
1901
|
dependencies = [
|
|
1933
|
-
"
|
|
1902
|
+
"proc-macro2",
|
|
1903
|
+
"quote",
|
|
1904
|
+
"rustc_version",
|
|
1905
|
+
"simd_cesu8",
|
|
1906
|
+
"syn",
|
|
1934
1907
|
]
|
|
1935
1908
|
|
|
1936
1909
|
[[package]]
|
|
@@ -1964,9 +1937,9 @@ dependencies = [
|
|
|
1964
1937
|
|
|
1965
1938
|
[[package]]
|
|
1966
1939
|
name = "js-sys"
|
|
1967
|
-
version = "0.3.
|
|
1940
|
+
version = "0.3.99"
|
|
1968
1941
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1969
|
-
checksum = "
|
|
1942
|
+
checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
|
|
1970
1943
|
dependencies = [
|
|
1971
1944
|
"cfg-if",
|
|
1972
1945
|
"futures-util",
|
|
@@ -1976,14 +1949,14 @@ dependencies = [
|
|
|
1976
1949
|
|
|
1977
1950
|
[[package]]
|
|
1978
1951
|
name = "json-patch"
|
|
1979
|
-
version = "4.
|
|
1952
|
+
version = "4.2.0"
|
|
1980
1953
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1981
|
-
checksum = "
|
|
1954
|
+
checksum = "7421438de105a0827e44fadd05377727847d717c80ce29a229f85fd04c427b72"
|
|
1982
1955
|
dependencies = [
|
|
1983
1956
|
"jsonptr",
|
|
1984
1957
|
"serde",
|
|
1985
1958
|
"serde_json",
|
|
1986
|
-
"thiserror
|
|
1959
|
+
"thiserror 2.0.18",
|
|
1987
1960
|
]
|
|
1988
1961
|
|
|
1989
1962
|
[[package]]
|
|
@@ -1998,16 +1971,18 @@ dependencies = [
|
|
|
1998
1971
|
|
|
1999
1972
|
[[package]]
|
|
2000
1973
|
name = "jsonwebtoken"
|
|
2001
|
-
version = "10.
|
|
1974
|
+
version = "10.4.0"
|
|
2002
1975
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2003
|
-
checksum = "
|
|
1976
|
+
checksum = "eba32bfb4ffdeaca3e34431072faf01745c9b26d25504aa7a6cf5684334fc4fc"
|
|
2004
1977
|
dependencies = [
|
|
1978
|
+
"aws-lc-rs",
|
|
2005
1979
|
"base64",
|
|
2006
1980
|
"getrandom 0.2.17",
|
|
2007
1981
|
"js-sys",
|
|
2008
1982
|
"serde",
|
|
2009
1983
|
"serde_json",
|
|
2010
1984
|
"signature",
|
|
1985
|
+
"zeroize",
|
|
2011
1986
|
]
|
|
2012
1987
|
|
|
2013
1988
|
[[package]]
|
|
@@ -2039,9 +2014,9 @@ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
|
2039
2014
|
|
|
2040
2015
|
[[package]]
|
|
2041
2016
|
name = "libc"
|
|
2042
|
-
version = "0.2.
|
|
2017
|
+
version = "0.2.186"
|
|
2043
2018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2044
|
-
checksum = "
|
|
2019
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
2045
2020
|
|
|
2046
2021
|
[[package]]
|
|
2047
2022
|
name = "libm"
|
|
@@ -2055,18 +2030,9 @@ version = "0.1.16"
|
|
|
2055
2030
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2056
2031
|
checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
|
|
2057
2032
|
dependencies = [
|
|
2058
|
-
"bitflags",
|
|
2059
2033
|
"libc",
|
|
2060
|
-
"plain",
|
|
2061
|
-
"redox_syscall 0.7.4",
|
|
2062
2034
|
]
|
|
2063
2035
|
|
|
2064
|
-
[[package]]
|
|
2065
|
-
name = "linux-raw-sys"
|
|
2066
|
-
version = "0.4.15"
|
|
2067
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2068
|
-
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
2069
|
-
|
|
2070
2036
|
[[package]]
|
|
2071
2037
|
name = "linux-raw-sys"
|
|
2072
2038
|
version = "0.12.1"
|
|
@@ -2142,15 +2108,41 @@ version = "0.6.5"
|
|
|
2142
2108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2143
2109
|
checksum = "ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227"
|
|
2144
2110
|
dependencies = [
|
|
2145
|
-
"rustix
|
|
2111
|
+
"rustix",
|
|
2146
2112
|
]
|
|
2147
2113
|
|
|
2114
|
+
[[package]]
|
|
2115
|
+
name = "memo-map"
|
|
2116
|
+
version = "0.3.3"
|
|
2117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2118
|
+
checksum = "38d1115007560874e373613744c6fba374c17688327a71c1476d1a5954cc857b"
|
|
2119
|
+
|
|
2148
2120
|
[[package]]
|
|
2149
2121
|
name = "mime"
|
|
2150
2122
|
version = "0.3.17"
|
|
2151
2123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2152
2124
|
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
2153
2125
|
|
|
2126
|
+
[[package]]
|
|
2127
|
+
name = "minijinja"
|
|
2128
|
+
version = "2.20.0"
|
|
2129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2130
|
+
checksum = "2929e494b2280e1e18959bb2e121da03347ae896896fdfaceaab43c88a02803f"
|
|
2131
|
+
dependencies = [
|
|
2132
|
+
"memo-map",
|
|
2133
|
+
"serde",
|
|
2134
|
+
]
|
|
2135
|
+
|
|
2136
|
+
[[package]]
|
|
2137
|
+
name = "miniz_oxide"
|
|
2138
|
+
version = "0.8.9"
|
|
2139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2140
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
2141
|
+
dependencies = [
|
|
2142
|
+
"adler2",
|
|
2143
|
+
"simd-adler32",
|
|
2144
|
+
]
|
|
2145
|
+
|
|
2154
2146
|
[[package]]
|
|
2155
2147
|
name = "mio"
|
|
2156
2148
|
version = "1.2.0"
|
|
@@ -2164,9 +2156,9 @@ dependencies = [
|
|
|
2164
2156
|
|
|
2165
2157
|
[[package]]
|
|
2166
2158
|
name = "nix"
|
|
2167
|
-
version = "0.31.
|
|
2159
|
+
version = "0.31.3"
|
|
2168
2160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2169
|
-
checksum = "
|
|
2161
|
+
checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
|
|
2170
2162
|
dependencies = [
|
|
2171
2163
|
"bitflags",
|
|
2172
2164
|
"cfg-if",
|
|
@@ -2185,9 +2177,9 @@ dependencies = [
|
|
|
2185
2177
|
|
|
2186
2178
|
[[package]]
|
|
2187
2179
|
name = "num-conv"
|
|
2188
|
-
version = "0.2.
|
|
2180
|
+
version = "0.2.2"
|
|
2189
2181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2190
|
-
checksum = "
|
|
2182
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
2191
2183
|
|
|
2192
2184
|
[[package]]
|
|
2193
2185
|
name = "num-traits"
|
|
@@ -2200,25 +2192,26 @@ dependencies = [
|
|
|
2200
2192
|
|
|
2201
2193
|
[[package]]
|
|
2202
2194
|
name = "object"
|
|
2203
|
-
version = "0.
|
|
2195
|
+
version = "0.39.1"
|
|
2204
2196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2205
|
-
checksum = "
|
|
2197
|
+
checksum = "2e5a6c098c7a3b6547378093f5cc30bc54fd361ce711e05293a5cc589562739b"
|
|
2206
2198
|
dependencies = [
|
|
2207
2199
|
"crc32fast",
|
|
2208
|
-
"hashbrown 0.
|
|
2200
|
+
"hashbrown 0.17.1",
|
|
2209
2201
|
"indexmap 2.14.0",
|
|
2210
2202
|
"memchr",
|
|
2211
2203
|
]
|
|
2212
2204
|
|
|
2213
2205
|
[[package]]
|
|
2214
2206
|
name = "oci-client"
|
|
2215
|
-
version = "0.
|
|
2207
|
+
version = "0.17.0"
|
|
2216
2208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2217
|
-
checksum = "
|
|
2209
|
+
checksum = "5261a7fb43d9c53b8e63e6d5e86860719dad253d015d022066c72d585125aed8"
|
|
2218
2210
|
dependencies = [
|
|
2219
2211
|
"bytes",
|
|
2220
2212
|
"chrono",
|
|
2221
2213
|
"futures-util",
|
|
2214
|
+
"hex",
|
|
2222
2215
|
"http",
|
|
2223
2216
|
"http-auth",
|
|
2224
2217
|
"jsonwebtoken",
|
|
@@ -2229,7 +2222,7 @@ dependencies = [
|
|
|
2229
2222
|
"reqwest",
|
|
2230
2223
|
"serde",
|
|
2231
2224
|
"serde_json",
|
|
2232
|
-
"sha2 0.
|
|
2225
|
+
"sha2 0.11.0",
|
|
2233
2226
|
"thiserror 2.0.18",
|
|
2234
2227
|
"tokio",
|
|
2235
2228
|
"tracing",
|
|
@@ -2316,16 +2309,16 @@ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
|
2316
2309
|
dependencies = [
|
|
2317
2310
|
"cfg-if",
|
|
2318
2311
|
"libc",
|
|
2319
|
-
"redox_syscall
|
|
2312
|
+
"redox_syscall",
|
|
2320
2313
|
"smallvec",
|
|
2321
2314
|
"windows-link",
|
|
2322
2315
|
]
|
|
2323
2316
|
|
|
2324
2317
|
[[package]]
|
|
2325
2318
|
name = "pastey"
|
|
2326
|
-
version = "0.2.
|
|
2319
|
+
version = "0.2.3"
|
|
2327
2320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2328
|
-
checksum = "
|
|
2321
|
+
checksum = "2ee67f1008b1ba2321834326597b8e186293b049a023cdef258527550b9935b4"
|
|
2329
2322
|
|
|
2330
2323
|
[[package]]
|
|
2331
2324
|
name = "path-clean"
|
|
@@ -2361,12 +2354,6 @@ version = "0.3.33"
|
|
|
2361
2354
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2362
2355
|
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
2363
2356
|
|
|
2364
|
-
[[package]]
|
|
2365
|
-
name = "plain"
|
|
2366
|
-
version = "0.2.3"
|
|
2367
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2368
|
-
checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
|
|
2369
|
-
|
|
2370
2357
|
[[package]]
|
|
2371
2358
|
name = "portable-atomic"
|
|
2372
2359
|
version = "1.13.1"
|
|
@@ -2466,9 +2453,9 @@ dependencies = [
|
|
|
2466
2453
|
|
|
2467
2454
|
[[package]]
|
|
2468
2455
|
name = "pulley-interpreter"
|
|
2469
|
-
version = "
|
|
2456
|
+
version = "45.0.0"
|
|
2470
2457
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2471
|
-
checksum = "
|
|
2458
|
+
checksum = "e9204ad9435f2a6fe3bd13bba52389fb8488fa20ba497e35c5d2db638166019d"
|
|
2472
2459
|
dependencies = [
|
|
2473
2460
|
"cranelift-bitset",
|
|
2474
2461
|
"log",
|
|
@@ -2478,9 +2465,9 @@ dependencies = [
|
|
|
2478
2465
|
|
|
2479
2466
|
[[package]]
|
|
2480
2467
|
name = "pulley-macros"
|
|
2481
|
-
version = "
|
|
2468
|
+
version = "45.0.0"
|
|
2482
2469
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2483
|
-
checksum = "
|
|
2470
|
+
checksum = "53009b033747e0d79a76549a744da58e84c9da8076492c7e6d491fdc6cc41b95"
|
|
2484
2471
|
dependencies = [
|
|
2485
2472
|
"proc-macro2",
|
|
2486
2473
|
"quote",
|
|
@@ -2495,7 +2482,6 @@ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
|
2495
2482
|
dependencies = [
|
|
2496
2483
|
"bytes",
|
|
2497
2484
|
"cfg_aliases",
|
|
2498
|
-
"futures-io",
|
|
2499
2485
|
"pin-project-lite",
|
|
2500
2486
|
"quinn-proto",
|
|
2501
2487
|
"quinn-udp",
|
|
@@ -2565,35 +2551,25 @@ version = "6.0.0"
|
|
|
2565
2551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2566
2552
|
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
2567
2553
|
|
|
2568
|
-
[[package]]
|
|
2569
|
-
name = "rand"
|
|
2570
|
-
version = "0.8.6"
|
|
2571
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2572
|
-
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
2573
|
-
dependencies = [
|
|
2574
|
-
"libc",
|
|
2575
|
-
"rand_chacha 0.3.1",
|
|
2576
|
-
"rand_core 0.6.4",
|
|
2577
|
-
]
|
|
2578
|
-
|
|
2579
2554
|
[[package]]
|
|
2580
2555
|
name = "rand"
|
|
2581
2556
|
version = "0.9.4"
|
|
2582
2557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2583
2558
|
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
2584
2559
|
dependencies = [
|
|
2585
|
-
"rand_chacha
|
|
2560
|
+
"rand_chacha",
|
|
2586
2561
|
"rand_core 0.9.5",
|
|
2587
2562
|
]
|
|
2588
2563
|
|
|
2589
2564
|
[[package]]
|
|
2590
|
-
name = "
|
|
2591
|
-
version = "0.
|
|
2565
|
+
name = "rand"
|
|
2566
|
+
version = "0.10.1"
|
|
2592
2567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2593
|
-
checksum = "
|
|
2568
|
+
checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
|
|
2594
2569
|
dependencies = [
|
|
2595
|
-
"
|
|
2596
|
-
"
|
|
2570
|
+
"chacha20",
|
|
2571
|
+
"getrandom 0.4.2",
|
|
2572
|
+
"rand_core 0.10.1",
|
|
2597
2573
|
]
|
|
2598
2574
|
|
|
2599
2575
|
[[package]]
|
|
@@ -2625,13 +2601,10 @@ dependencies = [
|
|
|
2625
2601
|
]
|
|
2626
2602
|
|
|
2627
2603
|
[[package]]
|
|
2628
|
-
name = "
|
|
2629
|
-
version = "0.
|
|
2604
|
+
name = "rand_core"
|
|
2605
|
+
version = "0.10.1"
|
|
2630
2606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2631
|
-
checksum = "
|
|
2632
|
-
dependencies = [
|
|
2633
|
-
"rand_core 0.6.4",
|
|
2634
|
-
]
|
|
2607
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
2635
2608
|
|
|
2636
2609
|
[[package]]
|
|
2637
2610
|
name = "rayon"
|
|
@@ -2662,15 +2635,6 @@ dependencies = [
|
|
|
2662
2635
|
"bitflags",
|
|
2663
2636
|
]
|
|
2664
2637
|
|
|
2665
|
-
[[package]]
|
|
2666
|
-
name = "redox_syscall"
|
|
2667
|
-
version = "0.7.4"
|
|
2668
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2669
|
-
checksum = "f450ad9c3b1da563fb6948a8e0fb0fb9269711c9c73d9ea1de5058c79c8d643a"
|
|
2670
|
-
dependencies = [
|
|
2671
|
-
"bitflags",
|
|
2672
|
-
]
|
|
2673
|
-
|
|
2674
2638
|
[[package]]
|
|
2675
2639
|
name = "redox_users"
|
|
2676
2640
|
version = "0.4.6"
|
|
@@ -2721,7 +2685,7 @@ checksum = "de2c52737737f8609e94f975dee22854a2d5c125772d4b1cf292120f4d45c186"
|
|
|
2721
2685
|
dependencies = [
|
|
2722
2686
|
"allocator-api2",
|
|
2723
2687
|
"bumpalo",
|
|
2724
|
-
"hashbrown 0.17.
|
|
2688
|
+
"hashbrown 0.17.1",
|
|
2725
2689
|
"log",
|
|
2726
2690
|
"rustc-hash",
|
|
2727
2691
|
"smallvec",
|
|
@@ -2758,17 +2722,15 @@ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
|
2758
2722
|
|
|
2759
2723
|
[[package]]
|
|
2760
2724
|
name = "reqwest"
|
|
2761
|
-
version = "0.13.
|
|
2725
|
+
version = "0.13.3"
|
|
2762
2726
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2763
|
-
checksum = "
|
|
2727
|
+
checksum = "62e0021ea2c22aed41653bc7e1419abb2c97e038ff2c33d0e1309e49a97deec0"
|
|
2764
2728
|
dependencies = [
|
|
2765
2729
|
"base64",
|
|
2766
2730
|
"bytes",
|
|
2767
2731
|
"futures-core",
|
|
2768
2732
|
"futures-util",
|
|
2769
2733
|
"h2",
|
|
2770
|
-
"h3",
|
|
2771
|
-
"h3-quinn",
|
|
2772
2734
|
"http",
|
|
2773
2735
|
"http-body",
|
|
2774
2736
|
"http-body-util",
|
|
@@ -2810,39 +2772,47 @@ dependencies = [
|
|
|
2810
2772
|
"cfg-if",
|
|
2811
2773
|
"getrandom 0.2.17",
|
|
2812
2774
|
"libc",
|
|
2813
|
-
"untrusted",
|
|
2775
|
+
"untrusted 0.9.0",
|
|
2814
2776
|
"windows-sys 0.52.0",
|
|
2815
2777
|
]
|
|
2816
2778
|
|
|
2817
2779
|
[[package]]
|
|
2818
2780
|
name = "rmcp"
|
|
2819
|
-
version = "1.
|
|
2781
|
+
version = "1.7.0"
|
|
2820
2782
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2821
|
-
checksum = "
|
|
2783
|
+
checksum = "0810a9f717d9828f475fe1f629f4c305c8464b7f496c3a854b58d29e65f4058e"
|
|
2822
2784
|
dependencies = [
|
|
2823
2785
|
"async-trait",
|
|
2824
2786
|
"base64",
|
|
2787
|
+
"bytes",
|
|
2825
2788
|
"chrono",
|
|
2826
2789
|
"futures",
|
|
2790
|
+
"http",
|
|
2791
|
+
"http-body",
|
|
2792
|
+
"http-body-util",
|
|
2827
2793
|
"pastey",
|
|
2828
2794
|
"pin-project-lite",
|
|
2829
2795
|
"process-wrap",
|
|
2796
|
+
"rand 0.10.1",
|
|
2830
2797
|
"rmcp-macros",
|
|
2831
2798
|
"schemars 1.2.1",
|
|
2832
2799
|
"serde",
|
|
2833
2800
|
"serde_json",
|
|
2801
|
+
"sse-stream",
|
|
2834
2802
|
"thiserror 2.0.18",
|
|
2835
2803
|
"tokio",
|
|
2836
2804
|
"tokio-stream",
|
|
2837
2805
|
"tokio-util",
|
|
2806
|
+
"tower-service",
|
|
2838
2807
|
"tracing",
|
|
2808
|
+
"uuid",
|
|
2839
2809
|
]
|
|
2840
2810
|
|
|
2841
2811
|
[[package]]
|
|
2842
2812
|
name = "rmcp-macros"
|
|
2843
|
-
version = "1.
|
|
2813
|
+
version = "1.7.0"
|
|
2844
2814
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2845
|
-
checksum = "
|
|
2815
|
+
checksum = "6aefac48c364756e97f04c0401ba3231e8607882c7c1d92da0437dc16307904d"
|
|
2846
2816
|
dependencies = [
|
|
2847
2817
|
"darling 0.23.0",
|
|
2848
2818
|
"proc-macro2",
|
|
@@ -2864,16 +2834,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2864
2834
|
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
2865
2835
|
|
|
2866
2836
|
[[package]]
|
|
2867
|
-
name = "
|
|
2868
|
-
version = "0.
|
|
2837
|
+
name = "rustc_version"
|
|
2838
|
+
version = "0.4.1"
|
|
2869
2839
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2870
|
-
checksum = "
|
|
2840
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2871
2841
|
dependencies = [
|
|
2872
|
-
"
|
|
2873
|
-
"errno",
|
|
2874
|
-
"libc",
|
|
2875
|
-
"linux-raw-sys 0.4.15",
|
|
2876
|
-
"windows-sys 0.59.0",
|
|
2842
|
+
"semver",
|
|
2877
2843
|
]
|
|
2878
2844
|
|
|
2879
2845
|
[[package]]
|
|
@@ -2885,7 +2851,7 @@ dependencies = [
|
|
|
2885
2851
|
"bitflags",
|
|
2886
2852
|
"errno",
|
|
2887
2853
|
"libc",
|
|
2888
|
-
"linux-raw-sys
|
|
2854
|
+
"linux-raw-sys",
|
|
2889
2855
|
"windows-sys 0.61.2",
|
|
2890
2856
|
]
|
|
2891
2857
|
|
|
@@ -2896,14 +2862,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2896
2862
|
checksum = "2fc84bf7e9aa16c4f2c758f27412dc9841341e16aa682d9c7ac308fe3ee12056"
|
|
2897
2863
|
dependencies = [
|
|
2898
2864
|
"once_cell",
|
|
2899
|
-
"rustix
|
|
2865
|
+
"rustix",
|
|
2900
2866
|
]
|
|
2901
2867
|
|
|
2902
2868
|
[[package]]
|
|
2903
2869
|
name = "rustls"
|
|
2904
|
-
version = "0.23.
|
|
2870
|
+
version = "0.23.40"
|
|
2905
2871
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2906
|
-
checksum = "
|
|
2872
|
+
checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
|
|
2907
2873
|
dependencies = [
|
|
2908
2874
|
"aws-lc-rs",
|
|
2909
2875
|
"once_cell",
|
|
@@ -2927,9 +2893,9 @@ dependencies = [
|
|
|
2927
2893
|
|
|
2928
2894
|
[[package]]
|
|
2929
2895
|
name = "rustls-pki-types"
|
|
2930
|
-
version = "1.14.
|
|
2896
|
+
version = "1.14.1"
|
|
2931
2897
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2932
|
-
checksum = "
|
|
2898
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
2933
2899
|
dependencies = [
|
|
2934
2900
|
"web-time",
|
|
2935
2901
|
"zeroize",
|
|
@@ -2937,9 +2903,9 @@ dependencies = [
|
|
|
2937
2903
|
|
|
2938
2904
|
[[package]]
|
|
2939
2905
|
name = "rustls-platform-verifier"
|
|
2940
|
-
version = "0.
|
|
2906
|
+
version = "0.7.0"
|
|
2941
2907
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2942
|
-
checksum = "
|
|
2908
|
+
checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
|
|
2943
2909
|
dependencies = [
|
|
2944
2910
|
"core-foundation",
|
|
2945
2911
|
"core-foundation-sys",
|
|
@@ -2964,14 +2930,14 @@ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
|
2964
2930
|
|
|
2965
2931
|
[[package]]
|
|
2966
2932
|
name = "rustls-webpki"
|
|
2967
|
-
version = "0.103.
|
|
2933
|
+
version = "0.103.13"
|
|
2968
2934
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2969
|
-
checksum = "
|
|
2935
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
2970
2936
|
dependencies = [
|
|
2971
2937
|
"aws-lc-rs",
|
|
2972
2938
|
"ring",
|
|
2973
2939
|
"rustls-pki-types",
|
|
2974
|
-
"untrusted",
|
|
2940
|
+
"untrusted 0.9.0",
|
|
2975
2941
|
]
|
|
2976
2942
|
|
|
2977
2943
|
[[package]]
|
|
@@ -3124,9 +3090,9 @@ dependencies = [
|
|
|
3124
3090
|
|
|
3125
3091
|
[[package]]
|
|
3126
3092
|
name = "serde_json"
|
|
3127
|
-
version = "1.0.
|
|
3093
|
+
version = "1.0.150"
|
|
3128
3094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3129
|
-
checksum = "
|
|
3095
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
3130
3096
|
dependencies = [
|
|
3131
3097
|
"itoa",
|
|
3132
3098
|
"memchr",
|
|
@@ -3169,11 +3135,12 @@ dependencies = [
|
|
|
3169
3135
|
|
|
3170
3136
|
[[package]]
|
|
3171
3137
|
name = "serde_with"
|
|
3172
|
-
version = "3.
|
|
3138
|
+
version = "3.20.0"
|
|
3173
3139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3174
|
-
checksum = "
|
|
3140
|
+
checksum = "e72c1c2cb7b223fafb600a619537a871c2818583d619401b785e7c0b746ccde2"
|
|
3175
3141
|
dependencies = [
|
|
3176
3142
|
"base64",
|
|
3143
|
+
"bs58",
|
|
3177
3144
|
"chrono",
|
|
3178
3145
|
"hex",
|
|
3179
3146
|
"indexmap 1.9.3",
|
|
@@ -3188,9 +3155,9 @@ dependencies = [
|
|
|
3188
3155
|
|
|
3189
3156
|
[[package]]
|
|
3190
3157
|
name = "serde_with_macros"
|
|
3191
|
-
version = "3.
|
|
3158
|
+
version = "3.20.0"
|
|
3192
3159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3193
|
-
checksum = "
|
|
3160
|
+
checksum = "b90c488738ecb4fb0262f41f43bc40efc5868d9fb744319ddf5f5317f417bfac"
|
|
3194
3161
|
dependencies = [
|
|
3195
3162
|
"darling 0.23.0",
|
|
3196
3163
|
"proc-macro2",
|
|
@@ -3198,19 +3165,6 @@ dependencies = [
|
|
|
3198
3165
|
"syn",
|
|
3199
3166
|
]
|
|
3200
3167
|
|
|
3201
|
-
[[package]]
|
|
3202
|
-
name = "serde_yaml"
|
|
3203
|
-
version = "0.9.34+deprecated"
|
|
3204
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3205
|
-
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
3206
|
-
dependencies = [
|
|
3207
|
-
"indexmap 2.14.0",
|
|
3208
|
-
"itoa",
|
|
3209
|
-
"ryu",
|
|
3210
|
-
"serde",
|
|
3211
|
-
"unsafe-libyaml",
|
|
3212
|
-
]
|
|
3213
|
-
|
|
3214
3168
|
[[package]]
|
|
3215
3169
|
name = "sha2"
|
|
3216
3170
|
version = "0.10.9"
|
|
@@ -3230,7 +3184,7 @@ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
|
3230
3184
|
dependencies = [
|
|
3231
3185
|
"cfg-if",
|
|
3232
3186
|
"cpufeatures 0.3.0",
|
|
3233
|
-
"digest 0.11.
|
|
3187
|
+
"digest 0.11.3",
|
|
3234
3188
|
]
|
|
3235
3189
|
|
|
3236
3190
|
[[package]]
|
|
@@ -3277,15 +3231,27 @@ dependencies = [
|
|
|
3277
3231
|
]
|
|
3278
3232
|
|
|
3279
3233
|
[[package]]
|
|
3280
|
-
name = "
|
|
3281
|
-
version = "0.
|
|
3234
|
+
name = "simd-adler32"
|
|
3235
|
+
version = "0.3.9"
|
|
3236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3237
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
3238
|
+
|
|
3239
|
+
[[package]]
|
|
3240
|
+
name = "simd_cesu8"
|
|
3241
|
+
version = "1.1.1"
|
|
3282
3242
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3283
|
-
checksum = "
|
|
3243
|
+
checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
|
|
3284
3244
|
dependencies = [
|
|
3285
|
-
"
|
|
3286
|
-
"
|
|
3245
|
+
"rustc_version",
|
|
3246
|
+
"simdutf8",
|
|
3287
3247
|
]
|
|
3288
3248
|
|
|
3249
|
+
[[package]]
|
|
3250
|
+
name = "simdutf8"
|
|
3251
|
+
version = "0.1.5"
|
|
3252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3253
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
3254
|
+
|
|
3289
3255
|
[[package]]
|
|
3290
3256
|
name = "slab"
|
|
3291
3257
|
version = "0.4.12"
|
|
@@ -3311,6 +3277,19 @@ dependencies = [
|
|
|
3311
3277
|
"windows-sys 0.61.2",
|
|
3312
3278
|
]
|
|
3313
3279
|
|
|
3280
|
+
[[package]]
|
|
3281
|
+
name = "sse-stream"
|
|
3282
|
+
version = "0.2.3"
|
|
3283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3284
|
+
checksum = "f3962b63f038885f15bce2c6e02c0e7925c072f1ac86bb60fd44c5c6b762fb72"
|
|
3285
|
+
dependencies = [
|
|
3286
|
+
"bytes",
|
|
3287
|
+
"futures-util",
|
|
3288
|
+
"http-body",
|
|
3289
|
+
"http-body-util",
|
|
3290
|
+
"pin-project-lite",
|
|
3291
|
+
]
|
|
3292
|
+
|
|
3314
3293
|
[[package]]
|
|
3315
3294
|
name = "stable_deref_trait"
|
|
3316
3295
|
version = "1.2.1"
|
|
@@ -3397,27 +3376,11 @@ dependencies = [
|
|
|
3397
3376
|
"syn",
|
|
3398
3377
|
]
|
|
3399
3378
|
|
|
3400
|
-
[[package]]
|
|
3401
|
-
name = "system-interface"
|
|
3402
|
-
version = "0.27.3"
|
|
3403
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3404
|
-
checksum = "cc4592f674ce18521c2a81483873a49596655b179f71c5e05d10c1fe66c78745"
|
|
3405
|
-
dependencies = [
|
|
3406
|
-
"bitflags",
|
|
3407
|
-
"cap-fs-ext",
|
|
3408
|
-
"cap-std",
|
|
3409
|
-
"fd-lock",
|
|
3410
|
-
"io-lifetimes",
|
|
3411
|
-
"rustix 0.38.44",
|
|
3412
|
-
"windows-sys 0.59.0",
|
|
3413
|
-
"winx",
|
|
3414
|
-
]
|
|
3415
|
-
|
|
3416
3379
|
[[package]]
|
|
3417
3380
|
name = "tar"
|
|
3418
|
-
version = "0.4.
|
|
3381
|
+
version = "0.4.46"
|
|
3419
3382
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3420
|
-
checksum = "
|
|
3383
|
+
checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840"
|
|
3421
3384
|
dependencies = [
|
|
3422
3385
|
"filetime",
|
|
3423
3386
|
"libc",
|
|
@@ -3439,7 +3402,7 @@ dependencies = [
|
|
|
3439
3402
|
"fastrand",
|
|
3440
3403
|
"getrandom 0.4.2",
|
|
3441
3404
|
"once_cell",
|
|
3442
|
-
"rustix
|
|
3405
|
+
"rustix",
|
|
3443
3406
|
"windows-sys 0.61.2",
|
|
3444
3407
|
]
|
|
3445
3408
|
|
|
@@ -3559,9 +3522,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
3559
3522
|
|
|
3560
3523
|
[[package]]
|
|
3561
3524
|
name = "tokio"
|
|
3562
|
-
version = "1.52.
|
|
3525
|
+
version = "1.52.3"
|
|
3563
3526
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3564
|
-
checksum = "
|
|
3527
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
3565
3528
|
dependencies = [
|
|
3566
3529
|
"bytes",
|
|
3567
3530
|
"libc",
|
|
@@ -3646,7 +3609,7 @@ dependencies = [
|
|
|
3646
3609
|
"toml_datetime 1.1.1+spec-1.1.0",
|
|
3647
3610
|
"toml_parser",
|
|
3648
3611
|
"toml_writer",
|
|
3649
|
-
"winnow 1.0.
|
|
3612
|
+
"winnow 1.0.3",
|
|
3650
3613
|
]
|
|
3651
3614
|
|
|
3652
3615
|
[[package]]
|
|
@@ -3673,7 +3636,7 @@ version = "1.1.2+spec-1.1.0"
|
|
|
3673
3636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3674
3637
|
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
3675
3638
|
dependencies = [
|
|
3676
|
-
"winnow 1.0.
|
|
3639
|
+
"winnow 1.0.3",
|
|
3677
3640
|
]
|
|
3678
3641
|
|
|
3679
3642
|
[[package]]
|
|
@@ -3700,20 +3663,20 @@ dependencies = [
|
|
|
3700
3663
|
|
|
3701
3664
|
[[package]]
|
|
3702
3665
|
name = "tower-http"
|
|
3703
|
-
version = "0.6.
|
|
3666
|
+
version = "0.6.11"
|
|
3704
3667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3705
|
-
checksum = "
|
|
3668
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
3706
3669
|
dependencies = [
|
|
3707
3670
|
"bitflags",
|
|
3708
3671
|
"bytes",
|
|
3709
3672
|
"futures-util",
|
|
3710
3673
|
"http",
|
|
3711
3674
|
"http-body",
|
|
3712
|
-
"iri-string",
|
|
3713
3675
|
"pin-project-lite",
|
|
3714
3676
|
"tower",
|
|
3715
3677
|
"tower-layer",
|
|
3716
3678
|
"tower-service",
|
|
3679
|
+
"url",
|
|
3717
3680
|
]
|
|
3718
3681
|
|
|
3719
3682
|
[[package]]
|
|
@@ -3798,9 +3761,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
3798
3761
|
|
|
3799
3762
|
[[package]]
|
|
3800
3763
|
name = "typenum"
|
|
3801
|
-
version = "1.
|
|
3764
|
+
version = "1.20.0"
|
|
3802
3765
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3803
|
-
checksum = "
|
|
3766
|
+
checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
|
|
3804
3767
|
|
|
3805
3768
|
[[package]]
|
|
3806
3769
|
name = "unicase"
|
|
@@ -3842,10 +3805,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3842
3805
|
checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3"
|
|
3843
3806
|
|
|
3844
3807
|
[[package]]
|
|
3845
|
-
name = "
|
|
3846
|
-
version = "0.
|
|
3808
|
+
name = "untrusted"
|
|
3809
|
+
version = "0.7.1"
|
|
3847
3810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3848
|
-
checksum = "
|
|
3811
|
+
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
|
|
3849
3812
|
|
|
3850
3813
|
[[package]]
|
|
3851
3814
|
name = "untrusted"
|
|
@@ -3883,6 +3846,7 @@ version = "1.23.1"
|
|
|
3883
3846
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3884
3847
|
checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
|
|
3885
3848
|
dependencies = [
|
|
3849
|
+
"getrandom 0.4.2",
|
|
3886
3850
|
"js-sys",
|
|
3887
3851
|
"wasm-bindgen",
|
|
3888
3852
|
]
|
|
@@ -3944,9 +3908,9 @@ dependencies = [
|
|
|
3944
3908
|
|
|
3945
3909
|
[[package]]
|
|
3946
3910
|
name = "wasm-bindgen"
|
|
3947
|
-
version = "0.2.
|
|
3911
|
+
version = "0.2.122"
|
|
3948
3912
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3949
|
-
checksum = "
|
|
3913
|
+
checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
|
|
3950
3914
|
dependencies = [
|
|
3951
3915
|
"cfg-if",
|
|
3952
3916
|
"once_cell",
|
|
@@ -3957,9 +3921,9 @@ dependencies = [
|
|
|
3957
3921
|
|
|
3958
3922
|
[[package]]
|
|
3959
3923
|
name = "wasm-bindgen-futures"
|
|
3960
|
-
version = "0.4.
|
|
3924
|
+
version = "0.4.72"
|
|
3961
3925
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3962
|
-
checksum = "
|
|
3926
|
+
checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
|
|
3963
3927
|
dependencies = [
|
|
3964
3928
|
"js-sys",
|
|
3965
3929
|
"wasm-bindgen",
|
|
@@ -3967,9 +3931,9 @@ dependencies = [
|
|
|
3967
3931
|
|
|
3968
3932
|
[[package]]
|
|
3969
3933
|
name = "wasm-bindgen-macro"
|
|
3970
|
-
version = "0.2.
|
|
3934
|
+
version = "0.2.122"
|
|
3971
3935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3972
|
-
checksum = "
|
|
3936
|
+
checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
|
|
3973
3937
|
dependencies = [
|
|
3974
3938
|
"quote",
|
|
3975
3939
|
"wasm-bindgen-macro-support",
|
|
@@ -3977,9 +3941,9 @@ dependencies = [
|
|
|
3977
3941
|
|
|
3978
3942
|
[[package]]
|
|
3979
3943
|
name = "wasm-bindgen-macro-support"
|
|
3980
|
-
version = "0.2.
|
|
3944
|
+
version = "0.2.122"
|
|
3981
3945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3982
|
-
checksum = "
|
|
3946
|
+
checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
|
|
3983
3947
|
dependencies = [
|
|
3984
3948
|
"bumpalo",
|
|
3985
3949
|
"proc-macro2",
|
|
@@ -3990,31 +3954,27 @@ dependencies = [
|
|
|
3990
3954
|
|
|
3991
3955
|
[[package]]
|
|
3992
3956
|
name = "wasm-bindgen-shared"
|
|
3993
|
-
version = "0.2.
|
|
3957
|
+
version = "0.2.122"
|
|
3994
3958
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3995
|
-
checksum = "
|
|
3959
|
+
checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
|
|
3996
3960
|
dependencies = [
|
|
3997
3961
|
"unicode-ident",
|
|
3998
3962
|
]
|
|
3999
3963
|
|
|
4000
3964
|
[[package]]
|
|
4001
3965
|
name = "wasm-compose"
|
|
4002
|
-
version = "0.
|
|
3966
|
+
version = "0.248.0"
|
|
4003
3967
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4004
|
-
checksum = "
|
|
3968
|
+
checksum = "96ba953e2b9b4b4b52a31cf4e3ee1c1374c872b6e012cf2138d1c37cba00bfd6"
|
|
4005
3969
|
dependencies = [
|
|
4006
3970
|
"anyhow",
|
|
4007
3971
|
"heck",
|
|
4008
|
-
"im-rc",
|
|
4009
3972
|
"indexmap 2.14.0",
|
|
4010
3973
|
"log",
|
|
4011
3974
|
"petgraph",
|
|
4012
|
-
"serde",
|
|
4013
|
-
"serde_derive",
|
|
4014
|
-
"serde_yaml",
|
|
4015
3975
|
"smallvec",
|
|
4016
|
-
"wasm-encoder 0.
|
|
4017
|
-
"wasmparser 0.
|
|
3976
|
+
"wasm-encoder 0.248.0",
|
|
3977
|
+
"wasmparser 0.248.0",
|
|
4018
3978
|
"wat",
|
|
4019
3979
|
]
|
|
4020
3980
|
|
|
@@ -4030,22 +3990,22 @@ dependencies = [
|
|
|
4030
3990
|
|
|
4031
3991
|
[[package]]
|
|
4032
3992
|
name = "wasm-encoder"
|
|
4033
|
-
version = "0.
|
|
3993
|
+
version = "0.248.0"
|
|
4034
3994
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4035
|
-
checksum = "
|
|
3995
|
+
checksum = "ac92cf547bc18d27ecc521015c08c353b4f18b84ab388bb6d1b6b682c620d9b6"
|
|
4036
3996
|
dependencies = [
|
|
4037
3997
|
"leb128fmt",
|
|
4038
|
-
"wasmparser 0.
|
|
3998
|
+
"wasmparser 0.248.0",
|
|
4039
3999
|
]
|
|
4040
4000
|
|
|
4041
4001
|
[[package]]
|
|
4042
4002
|
name = "wasm-encoder"
|
|
4043
|
-
version = "0.
|
|
4003
|
+
version = "0.250.0"
|
|
4044
4004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4045
|
-
checksum = "
|
|
4005
|
+
checksum = "2271adb766023046af314460f1fae02cc34ea16d736d93404d3b65be44270923"
|
|
4046
4006
|
dependencies = [
|
|
4047
4007
|
"leb128fmt",
|
|
4048
|
-
"wasmparser 0.
|
|
4008
|
+
"wasmparser 0.250.0",
|
|
4049
4009
|
]
|
|
4050
4010
|
|
|
4051
4011
|
[[package]]
|
|
@@ -4087,12 +4047,12 @@ dependencies = [
|
|
|
4087
4047
|
|
|
4088
4048
|
[[package]]
|
|
4089
4049
|
name = "wasmparser"
|
|
4090
|
-
version = "0.
|
|
4050
|
+
version = "0.248.0"
|
|
4091
4051
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4092
|
-
checksum = "
|
|
4052
|
+
checksum = "aa4439c5eee9df71ee0c6efb37f63b1fcb1fec38f85f5142c54e7ed05d33091a"
|
|
4093
4053
|
dependencies = [
|
|
4094
4054
|
"bitflags",
|
|
4095
|
-
"hashbrown 0.
|
|
4055
|
+
"hashbrown 0.17.1",
|
|
4096
4056
|
"indexmap 2.14.0",
|
|
4097
4057
|
"semver",
|
|
4098
4058
|
"serde",
|
|
@@ -4100,12 +4060,12 @@ dependencies = [
|
|
|
4100
4060
|
|
|
4101
4061
|
[[package]]
|
|
4102
4062
|
name = "wasmparser"
|
|
4103
|
-
version = "0.
|
|
4063
|
+
version = "0.250.0"
|
|
4104
4064
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4105
|
-
checksum = "
|
|
4065
|
+
checksum = "071d99cdfb8111603ed05500506c3298a940b58d609dd0259d3981785dd33556"
|
|
4106
4066
|
dependencies = [
|
|
4107
4067
|
"bitflags",
|
|
4108
|
-
"hashbrown 0.17.
|
|
4068
|
+
"hashbrown 0.17.1",
|
|
4109
4069
|
"indexmap 2.14.0",
|
|
4110
4070
|
"semver",
|
|
4111
4071
|
"serde",
|
|
@@ -4113,20 +4073,20 @@ dependencies = [
|
|
|
4113
4073
|
|
|
4114
4074
|
[[package]]
|
|
4115
4075
|
name = "wasmprinter"
|
|
4116
|
-
version = "0.
|
|
4076
|
+
version = "0.248.0"
|
|
4117
4077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4118
|
-
checksum = "
|
|
4078
|
+
checksum = "30b264a5410b008d4d199a92bf536eae703cbd614482fc1ec53831cf19e1c183"
|
|
4119
4079
|
dependencies = [
|
|
4120
4080
|
"anyhow",
|
|
4121
4081
|
"termcolor",
|
|
4122
|
-
"wasmparser 0.
|
|
4082
|
+
"wasmparser 0.248.0",
|
|
4123
4083
|
]
|
|
4124
4084
|
|
|
4125
4085
|
[[package]]
|
|
4126
4086
|
name = "wasmtime"
|
|
4127
|
-
version = "
|
|
4087
|
+
version = "45.0.0"
|
|
4128
4088
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4129
|
-
checksum = "
|
|
4089
|
+
checksum = "d35aec1e932d00a7c941f816ad589e65ad8db948b9e971bf8ec655a1669f1f67"
|
|
4130
4090
|
dependencies = [
|
|
4131
4091
|
"addr2line",
|
|
4132
4092
|
"async-trait",
|
|
@@ -4149,7 +4109,7 @@ dependencies = [
|
|
|
4149
4109
|
"postcard",
|
|
4150
4110
|
"pulley-interpreter",
|
|
4151
4111
|
"rayon",
|
|
4152
|
-
"rustix
|
|
4112
|
+
"rustix",
|
|
4153
4113
|
"semver",
|
|
4154
4114
|
"serde",
|
|
4155
4115
|
"serde_derive",
|
|
@@ -4158,8 +4118,8 @@ dependencies = [
|
|
|
4158
4118
|
"target-lexicon",
|
|
4159
4119
|
"tempfile",
|
|
4160
4120
|
"wasm-compose",
|
|
4161
|
-
"wasm-encoder 0.
|
|
4162
|
-
"wasmparser 0.
|
|
4121
|
+
"wasm-encoder 0.248.0",
|
|
4122
|
+
"wasmparser 0.248.0",
|
|
4163
4123
|
"wasmtime-environ",
|
|
4164
4124
|
"wasmtime-internal-cache",
|
|
4165
4125
|
"wasmtime-internal-component-macro",
|
|
@@ -4178,9 +4138,9 @@ dependencies = [
|
|
|
4178
4138
|
|
|
4179
4139
|
[[package]]
|
|
4180
4140
|
name = "wasmtime-environ"
|
|
4181
|
-
version = "
|
|
4141
|
+
version = "45.0.0"
|
|
4182
4142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4183
|
-
checksum = "
|
|
4143
|
+
checksum = "d7da3dcce82a7e784121c19c8c9c5f69a743088264ff5212033e4a1f1b9dfaaf"
|
|
4184
4144
|
dependencies = [
|
|
4185
4145
|
"anyhow",
|
|
4186
4146
|
"cpp_demangle",
|
|
@@ -4188,7 +4148,7 @@ dependencies = [
|
|
|
4188
4148
|
"cranelift-bitset",
|
|
4189
4149
|
"cranelift-entity",
|
|
4190
4150
|
"gimli",
|
|
4191
|
-
"hashbrown 0.
|
|
4151
|
+
"hashbrown 0.17.1",
|
|
4192
4152
|
"indexmap 2.14.0",
|
|
4193
4153
|
"log",
|
|
4194
4154
|
"object",
|
|
@@ -4200,8 +4160,8 @@ dependencies = [
|
|
|
4200
4160
|
"sha2 0.10.9",
|
|
4201
4161
|
"smallvec",
|
|
4202
4162
|
"target-lexicon",
|
|
4203
|
-
"wasm-encoder 0.
|
|
4204
|
-
"wasmparser 0.
|
|
4163
|
+
"wasm-encoder 0.248.0",
|
|
4164
|
+
"wasmparser 0.248.0",
|
|
4205
4165
|
"wasmprinter",
|
|
4206
4166
|
"wasmtime-internal-component-util",
|
|
4207
4167
|
"wasmtime-internal-core",
|
|
@@ -4209,15 +4169,15 @@ dependencies = [
|
|
|
4209
4169
|
|
|
4210
4170
|
[[package]]
|
|
4211
4171
|
name = "wasmtime-internal-cache"
|
|
4212
|
-
version = "
|
|
4172
|
+
version = "45.0.0"
|
|
4213
4173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4214
|
-
checksum = "
|
|
4174
|
+
checksum = "ef87f84d976e2f98a541eaf5837df0424e2039837fc20bd6cd4b4b5a322939c0"
|
|
4215
4175
|
dependencies = [
|
|
4216
4176
|
"base64",
|
|
4217
4177
|
"directories-next",
|
|
4218
4178
|
"log",
|
|
4219
4179
|
"postcard",
|
|
4220
|
-
"rustix
|
|
4180
|
+
"rustix",
|
|
4221
4181
|
"serde",
|
|
4222
4182
|
"serde_derive",
|
|
4223
4183
|
"sha2 0.10.9",
|
|
@@ -4229,9 +4189,9 @@ dependencies = [
|
|
|
4229
4189
|
|
|
4230
4190
|
[[package]]
|
|
4231
4191
|
name = "wasmtime-internal-component-macro"
|
|
4232
|
-
version = "
|
|
4192
|
+
version = "45.0.0"
|
|
4233
4193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4234
|
-
checksum = "
|
|
4194
|
+
checksum = "86991f201391afc1504e4fc363dc29b66f92af0287b4ac2efc3c0b0c19435eeb"
|
|
4235
4195
|
dependencies = [
|
|
4236
4196
|
"anyhow",
|
|
4237
4197
|
"proc-macro2",
|
|
@@ -4239,32 +4199,32 @@ dependencies = [
|
|
|
4239
4199
|
"syn",
|
|
4240
4200
|
"wasmtime-internal-component-util",
|
|
4241
4201
|
"wasmtime-internal-wit-bindgen",
|
|
4242
|
-
"wit-parser 0.
|
|
4202
|
+
"wit-parser 0.248.0",
|
|
4243
4203
|
]
|
|
4244
4204
|
|
|
4245
4205
|
[[package]]
|
|
4246
4206
|
name = "wasmtime-internal-component-util"
|
|
4247
|
-
version = "
|
|
4207
|
+
version = "45.0.0"
|
|
4248
4208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4249
|
-
checksum = "
|
|
4209
|
+
checksum = "47fda091250d7ab839ea51e4d98190b6eee37e9de4ab2462e8fe8465369c1986"
|
|
4250
4210
|
|
|
4251
4211
|
[[package]]
|
|
4252
4212
|
name = "wasmtime-internal-core"
|
|
4253
|
-
version = "
|
|
4213
|
+
version = "45.0.0"
|
|
4254
4214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4255
|
-
checksum = "
|
|
4215
|
+
checksum = "1bdae4b55b15a23d774b15f6e7cd90ae0d0aa17c47c12b4db098b3dd11ba9d58"
|
|
4256
4216
|
dependencies = [
|
|
4257
4217
|
"anyhow",
|
|
4258
|
-
"hashbrown 0.
|
|
4218
|
+
"hashbrown 0.17.1",
|
|
4259
4219
|
"libm",
|
|
4260
4220
|
"serde",
|
|
4261
4221
|
]
|
|
4262
4222
|
|
|
4263
4223
|
[[package]]
|
|
4264
4224
|
name = "wasmtime-internal-cranelift"
|
|
4265
|
-
version = "
|
|
4225
|
+
version = "45.0.0"
|
|
4266
4226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4267
|
-
checksum = "
|
|
4227
|
+
checksum = "5773b36b87566239b020f1d01aa753a35626df85030485e40e36fc42a97acf4f"
|
|
4268
4228
|
dependencies = [
|
|
4269
4229
|
"cfg-if",
|
|
4270
4230
|
"cranelift-codegen",
|
|
@@ -4280,7 +4240,7 @@ dependencies = [
|
|
|
4280
4240
|
"smallvec",
|
|
4281
4241
|
"target-lexicon",
|
|
4282
4242
|
"thiserror 2.0.18",
|
|
4283
|
-
"wasmparser 0.
|
|
4243
|
+
"wasmparser 0.248.0",
|
|
4284
4244
|
"wasmtime-environ",
|
|
4285
4245
|
"wasmtime-internal-core",
|
|
4286
4246
|
"wasmtime-internal-unwinder",
|
|
@@ -4289,14 +4249,14 @@ dependencies = [
|
|
|
4289
4249
|
|
|
4290
4250
|
[[package]]
|
|
4291
4251
|
name = "wasmtime-internal-fiber"
|
|
4292
|
-
version = "
|
|
4252
|
+
version = "45.0.0"
|
|
4293
4253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4294
|
-
checksum = "
|
|
4254
|
+
checksum = "402cce4bba4c8c92a6fbaff39a6b23f8aa626d64b218ecf6dd3eeee8705cf096"
|
|
4295
4255
|
dependencies = [
|
|
4296
4256
|
"cc",
|
|
4297
4257
|
"cfg-if",
|
|
4298
4258
|
"libc",
|
|
4299
|
-
"rustix
|
|
4259
|
+
"rustix",
|
|
4300
4260
|
"wasmtime-environ",
|
|
4301
4261
|
"wasmtime-internal-versioned-export-macros",
|
|
4302
4262
|
"windows-sys 0.61.2",
|
|
@@ -4304,21 +4264,21 @@ dependencies = [
|
|
|
4304
4264
|
|
|
4305
4265
|
[[package]]
|
|
4306
4266
|
name = "wasmtime-internal-jit-debug"
|
|
4307
|
-
version = "
|
|
4267
|
+
version = "45.0.0"
|
|
4308
4268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4309
|
-
checksum = "
|
|
4269
|
+
checksum = "8b426a5d0ec9c11a1a4525ed4e973b7caf40223b6d392588bb9f6468e4ae9d29"
|
|
4310
4270
|
dependencies = [
|
|
4311
4271
|
"cc",
|
|
4312
4272
|
"object",
|
|
4313
|
-
"rustix
|
|
4273
|
+
"rustix",
|
|
4314
4274
|
"wasmtime-internal-versioned-export-macros",
|
|
4315
4275
|
]
|
|
4316
4276
|
|
|
4317
4277
|
[[package]]
|
|
4318
4278
|
name = "wasmtime-internal-jit-icache-coherence"
|
|
4319
|
-
version = "
|
|
4279
|
+
version = "45.0.0"
|
|
4320
4280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4321
|
-
checksum = "
|
|
4281
|
+
checksum = "8a312ba8bb77955dcd44294a223e7f124c3071ff966583d385d3f6a4639c62e3"
|
|
4322
4282
|
dependencies = [
|
|
4323
4283
|
"cfg-if",
|
|
4324
4284
|
"libc",
|
|
@@ -4328,9 +4288,9 @@ dependencies = [
|
|
|
4328
4288
|
|
|
4329
4289
|
[[package]]
|
|
4330
4290
|
name = "wasmtime-internal-unwinder"
|
|
4331
|
-
version = "
|
|
4291
|
+
version = "45.0.0"
|
|
4332
4292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4333
|
-
checksum = "
|
|
4293
|
+
checksum = "4a62ad422ee3cbf1e87c2242dc0717a01c7a5878fbc3a68abc4b4d2fff3e85e1"
|
|
4334
4294
|
dependencies = [
|
|
4335
4295
|
"cfg-if",
|
|
4336
4296
|
"cranelift-codegen",
|
|
@@ -4341,9 +4301,9 @@ dependencies = [
|
|
|
4341
4301
|
|
|
4342
4302
|
[[package]]
|
|
4343
4303
|
name = "wasmtime-internal-versioned-export-macros"
|
|
4344
|
-
version = "
|
|
4304
|
+
version = "45.0.0"
|
|
4345
4305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4346
|
-
checksum = "
|
|
4306
|
+
checksum = "2c660c5b091648cffdd84a34dc24ffcdb9d027f9048fe7bd5e01896adbd0935f"
|
|
4347
4307
|
dependencies = [
|
|
4348
4308
|
"proc-macro2",
|
|
4349
4309
|
"quote",
|
|
@@ -4352,16 +4312,16 @@ dependencies = [
|
|
|
4352
4312
|
|
|
4353
4313
|
[[package]]
|
|
4354
4314
|
name = "wasmtime-internal-winch"
|
|
4355
|
-
version = "
|
|
4315
|
+
version = "45.0.0"
|
|
4356
4316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4357
|
-
checksum = "
|
|
4317
|
+
checksum = "d2aceb92b48b6e3a5cc2a05ab7a2dcb565eaf86fb870d04664b7f12cf9bba39a"
|
|
4358
4318
|
dependencies = [
|
|
4359
4319
|
"cranelift-codegen",
|
|
4360
4320
|
"gimli",
|
|
4361
4321
|
"log",
|
|
4362
4322
|
"object",
|
|
4363
4323
|
"target-lexicon",
|
|
4364
|
-
"wasmparser 0.
|
|
4324
|
+
"wasmparser 0.248.0",
|
|
4365
4325
|
"wasmtime-environ",
|
|
4366
4326
|
"wasmtime-internal-cranelift",
|
|
4367
4327
|
"winch-codegen",
|
|
@@ -4369,37 +4329,37 @@ dependencies = [
|
|
|
4369
4329
|
|
|
4370
4330
|
[[package]]
|
|
4371
4331
|
name = "wasmtime-internal-wit-bindgen"
|
|
4372
|
-
version = "
|
|
4332
|
+
version = "45.0.0"
|
|
4373
4333
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4374
|
-
checksum = "
|
|
4334
|
+
checksum = "ce382df367ad2a2d48e139b191dbca3329f7232a43057dc9efc889dac54f1b0b"
|
|
4375
4335
|
dependencies = [
|
|
4376
4336
|
"anyhow",
|
|
4377
4337
|
"bitflags",
|
|
4378
4338
|
"heck",
|
|
4379
4339
|
"indexmap 2.14.0",
|
|
4380
|
-
"wit-parser 0.
|
|
4340
|
+
"wit-parser 0.248.0",
|
|
4381
4341
|
]
|
|
4382
4342
|
|
|
4383
4343
|
[[package]]
|
|
4384
4344
|
name = "wasmtime-wasi"
|
|
4385
|
-
version = "
|
|
4345
|
+
version = "45.0.0"
|
|
4386
4346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4387
|
-
checksum = "
|
|
4347
|
+
checksum = "fb1e92a304eaafd672718011c69084041db74fa0fcc3532c5920f492c557b721"
|
|
4388
4348
|
dependencies = [
|
|
4389
4349
|
"async-trait",
|
|
4390
4350
|
"bitflags",
|
|
4391
4351
|
"bytes",
|
|
4392
4352
|
"cap-fs-ext",
|
|
4393
4353
|
"cap-net-ext",
|
|
4394
|
-
"cap-rand",
|
|
4395
4354
|
"cap-std",
|
|
4396
4355
|
"cap-time-ext",
|
|
4356
|
+
"cfg-if",
|
|
4397
4357
|
"fs-set-times",
|
|
4398
4358
|
"futures",
|
|
4399
4359
|
"io-extras",
|
|
4400
4360
|
"io-lifetimes",
|
|
4401
|
-
"
|
|
4402
|
-
"
|
|
4361
|
+
"rand 0.10.1",
|
|
4362
|
+
"rustix",
|
|
4403
4363
|
"thiserror 2.0.18",
|
|
4404
4364
|
"tokio",
|
|
4405
4365
|
"tracing",
|
|
@@ -4411,9 +4371,9 @@ dependencies = [
|
|
|
4411
4371
|
|
|
4412
4372
|
[[package]]
|
|
4413
4373
|
name = "wasmtime-wasi-http"
|
|
4414
|
-
version = "
|
|
4374
|
+
version = "45.0.0"
|
|
4415
4375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4416
|
-
checksum = "
|
|
4376
|
+
checksum = "c7ac191e49f1cfb8567b335a4e4375d275552f5e5ce199fd7631c8722865b598"
|
|
4417
4377
|
dependencies = [
|
|
4418
4378
|
"async-trait",
|
|
4419
4379
|
"bytes",
|
|
@@ -4432,9 +4392,9 @@ dependencies = [
|
|
|
4432
4392
|
|
|
4433
4393
|
[[package]]
|
|
4434
4394
|
name = "wasmtime-wasi-io"
|
|
4435
|
-
version = "
|
|
4395
|
+
version = "45.0.0"
|
|
4436
4396
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4437
|
-
checksum = "
|
|
4397
|
+
checksum = "8e0013e1f37d2e0e1b030fa186972f6f5819f69814bb07d3b6d3cab0c40b50e2"
|
|
4438
4398
|
dependencies = [
|
|
4439
4399
|
"async-trait",
|
|
4440
4400
|
"bytes",
|
|
@@ -4445,31 +4405,31 @@ dependencies = [
|
|
|
4445
4405
|
|
|
4446
4406
|
[[package]]
|
|
4447
4407
|
name = "wast"
|
|
4448
|
-
version = "
|
|
4408
|
+
version = "250.0.0"
|
|
4449
4409
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4450
|
-
checksum = "
|
|
4410
|
+
checksum = "69e9294a1f0204aeb5c47e95165517f43ef3cc895918c4f3e939380d4c290f4a"
|
|
4451
4411
|
dependencies = [
|
|
4452
4412
|
"bumpalo",
|
|
4453
4413
|
"leb128fmt",
|
|
4454
4414
|
"memchr",
|
|
4455
4415
|
"unicode-width",
|
|
4456
|
-
"wasm-encoder 0.
|
|
4416
|
+
"wasm-encoder 0.250.0",
|
|
4457
4417
|
]
|
|
4458
4418
|
|
|
4459
4419
|
[[package]]
|
|
4460
4420
|
name = "wat"
|
|
4461
|
-
version = "1.
|
|
4421
|
+
version = "1.250.0"
|
|
4462
4422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4463
|
-
checksum = "
|
|
4423
|
+
checksum = "0a549ed329a70e444e0f7796391ab2a87d0aef30ddde9f60e16e429224fafd02"
|
|
4464
4424
|
dependencies = [
|
|
4465
4425
|
"wast",
|
|
4466
4426
|
]
|
|
4467
4427
|
|
|
4468
4428
|
[[package]]
|
|
4469
4429
|
name = "web-sys"
|
|
4470
|
-
version = "0.3.
|
|
4430
|
+
version = "0.3.99"
|
|
4471
4431
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4472
|
-
checksum = "
|
|
4432
|
+
checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
|
|
4473
4433
|
dependencies = [
|
|
4474
4434
|
"js-sys",
|
|
4475
4435
|
"wasm-bindgen",
|
|
@@ -4527,9 +4487,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
4527
4487
|
|
|
4528
4488
|
[[package]]
|
|
4529
4489
|
name = "winch-codegen"
|
|
4530
|
-
version = "
|
|
4490
|
+
version = "45.0.0"
|
|
4531
4491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4532
|
-
checksum = "
|
|
4492
|
+
checksum = "3128bd53313b132e8737d7d318edbc438bab1abe525ac037bbf9857839e717e2"
|
|
4533
4493
|
dependencies = [
|
|
4534
4494
|
"cranelift-assembler-x64",
|
|
4535
4495
|
"cranelift-codegen",
|
|
@@ -4538,7 +4498,7 @@ dependencies = [
|
|
|
4538
4498
|
"smallvec",
|
|
4539
4499
|
"target-lexicon",
|
|
4540
4500
|
"thiserror 2.0.18",
|
|
4541
|
-
"wasmparser 0.
|
|
4501
|
+
"wasmparser 0.248.0",
|
|
4542
4502
|
"wasmtime-environ",
|
|
4543
4503
|
"wasmtime-internal-core",
|
|
4544
4504
|
"wasmtime-internal-cranelift",
|
|
@@ -4645,15 +4605,6 @@ dependencies = [
|
|
|
4645
4605
|
"windows-link",
|
|
4646
4606
|
]
|
|
4647
4607
|
|
|
4648
|
-
[[package]]
|
|
4649
|
-
name = "windows-sys"
|
|
4650
|
-
version = "0.45.0"
|
|
4651
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4652
|
-
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
4653
|
-
dependencies = [
|
|
4654
|
-
"windows-targets 0.42.2",
|
|
4655
|
-
]
|
|
4656
|
-
|
|
4657
4608
|
[[package]]
|
|
4658
4609
|
name = "windows-sys"
|
|
4659
4610
|
version = "0.52.0"
|
|
@@ -4690,21 +4641,6 @@ dependencies = [
|
|
|
4690
4641
|
"windows-link",
|
|
4691
4642
|
]
|
|
4692
4643
|
|
|
4693
|
-
[[package]]
|
|
4694
|
-
name = "windows-targets"
|
|
4695
|
-
version = "0.42.2"
|
|
4696
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4697
|
-
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
4698
|
-
dependencies = [
|
|
4699
|
-
"windows_aarch64_gnullvm 0.42.2",
|
|
4700
|
-
"windows_aarch64_msvc 0.42.2",
|
|
4701
|
-
"windows_i686_gnu 0.42.2",
|
|
4702
|
-
"windows_i686_msvc 0.42.2",
|
|
4703
|
-
"windows_x86_64_gnu 0.42.2",
|
|
4704
|
-
"windows_x86_64_gnullvm 0.42.2",
|
|
4705
|
-
"windows_x86_64_msvc 0.42.2",
|
|
4706
|
-
]
|
|
4707
|
-
|
|
4708
4644
|
[[package]]
|
|
4709
4645
|
name = "windows-targets"
|
|
4710
4646
|
version = "0.52.6"
|
|
@@ -4747,12 +4683,6 @@ dependencies = [
|
|
|
4747
4683
|
"windows-link",
|
|
4748
4684
|
]
|
|
4749
4685
|
|
|
4750
|
-
[[package]]
|
|
4751
|
-
name = "windows_aarch64_gnullvm"
|
|
4752
|
-
version = "0.42.2"
|
|
4753
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4754
|
-
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
4755
|
-
|
|
4756
4686
|
[[package]]
|
|
4757
4687
|
name = "windows_aarch64_gnullvm"
|
|
4758
4688
|
version = "0.52.6"
|
|
@@ -4765,12 +4695,6 @@ version = "0.53.1"
|
|
|
4765
4695
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4766
4696
|
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
4767
4697
|
|
|
4768
|
-
[[package]]
|
|
4769
|
-
name = "windows_aarch64_msvc"
|
|
4770
|
-
version = "0.42.2"
|
|
4771
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4772
|
-
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
4773
|
-
|
|
4774
4698
|
[[package]]
|
|
4775
4699
|
name = "windows_aarch64_msvc"
|
|
4776
4700
|
version = "0.52.6"
|
|
@@ -4783,12 +4707,6 @@ version = "0.53.1"
|
|
|
4783
4707
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4784
4708
|
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
4785
4709
|
|
|
4786
|
-
[[package]]
|
|
4787
|
-
name = "windows_i686_gnu"
|
|
4788
|
-
version = "0.42.2"
|
|
4789
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4790
|
-
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
4791
|
-
|
|
4792
4710
|
[[package]]
|
|
4793
4711
|
name = "windows_i686_gnu"
|
|
4794
4712
|
version = "0.52.6"
|
|
@@ -4813,12 +4731,6 @@ version = "0.53.1"
|
|
|
4813
4731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4814
4732
|
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
4815
4733
|
|
|
4816
|
-
[[package]]
|
|
4817
|
-
name = "windows_i686_msvc"
|
|
4818
|
-
version = "0.42.2"
|
|
4819
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4820
|
-
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
4821
|
-
|
|
4822
4734
|
[[package]]
|
|
4823
4735
|
name = "windows_i686_msvc"
|
|
4824
4736
|
version = "0.52.6"
|
|
@@ -4831,12 +4743,6 @@ version = "0.53.1"
|
|
|
4831
4743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4832
4744
|
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
4833
4745
|
|
|
4834
|
-
[[package]]
|
|
4835
|
-
name = "windows_x86_64_gnu"
|
|
4836
|
-
version = "0.42.2"
|
|
4837
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4838
|
-
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
4839
|
-
|
|
4840
4746
|
[[package]]
|
|
4841
4747
|
name = "windows_x86_64_gnu"
|
|
4842
4748
|
version = "0.52.6"
|
|
@@ -4849,12 +4755,6 @@ version = "0.53.1"
|
|
|
4849
4755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4850
4756
|
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
4851
4757
|
|
|
4852
|
-
[[package]]
|
|
4853
|
-
name = "windows_x86_64_gnullvm"
|
|
4854
|
-
version = "0.42.2"
|
|
4855
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4856
|
-
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
4857
|
-
|
|
4858
4758
|
[[package]]
|
|
4859
4759
|
name = "windows_x86_64_gnullvm"
|
|
4860
4760
|
version = "0.52.6"
|
|
@@ -4867,12 +4767,6 @@ version = "0.53.1"
|
|
|
4867
4767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4868
4768
|
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
4869
4769
|
|
|
4870
|
-
[[package]]
|
|
4871
|
-
name = "windows_x86_64_msvc"
|
|
4872
|
-
version = "0.42.2"
|
|
4873
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4874
|
-
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
4875
|
-
|
|
4876
4770
|
[[package]]
|
|
4877
4771
|
name = "windows_x86_64_msvc"
|
|
4878
4772
|
version = "0.52.6"
|
|
@@ -4893,9 +4787,9 @@ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
|
4893
4787
|
|
|
4894
4788
|
[[package]]
|
|
4895
4789
|
name = "winnow"
|
|
4896
|
-
version = "1.0.
|
|
4790
|
+
version = "1.0.3"
|
|
4897
4791
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4898
|
-
checksum = "
|
|
4792
|
+
checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
|
|
4899
4793
|
|
|
4900
4794
|
[[package]]
|
|
4901
4795
|
name = "winx"
|
|
@@ -5003,12 +4897,12 @@ dependencies = [
|
|
|
5003
4897
|
|
|
5004
4898
|
[[package]]
|
|
5005
4899
|
name = "wit-parser"
|
|
5006
|
-
version = "0.
|
|
4900
|
+
version = "0.248.0"
|
|
5007
4901
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5008
|
-
checksum = "
|
|
4902
|
+
checksum = "247ad505da2915a082fe13204c5ba8788425aea1de54f43b284818cf82637856"
|
|
5009
4903
|
dependencies = [
|
|
5010
4904
|
"anyhow",
|
|
5011
|
-
"hashbrown 0.
|
|
4905
|
+
"hashbrown 0.17.1",
|
|
5012
4906
|
"id-arena",
|
|
5013
4907
|
"indexmap 2.14.0",
|
|
5014
4908
|
"log",
|
|
@@ -5017,7 +4911,7 @@ dependencies = [
|
|
|
5017
4911
|
"serde_derive",
|
|
5018
4912
|
"serde_json",
|
|
5019
4913
|
"unicode-xid",
|
|
5020
|
-
"wasmparser 0.
|
|
4914
|
+
"wasmparser 0.248.0",
|
|
5021
4915
|
]
|
|
5022
4916
|
|
|
5023
4917
|
[[package]]
|
|
@@ -5033,7 +4927,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
5033
4927
|
checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
|
|
5034
4928
|
dependencies = [
|
|
5035
4929
|
"libc",
|
|
5036
|
-
"rustix
|
|
4930
|
+
"rustix",
|
|
5037
4931
|
]
|
|
5038
4932
|
|
|
5039
4933
|
[[package]]
|
|
@@ -5081,9 +4975,9 @@ dependencies = [
|
|
|
5081
4975
|
|
|
5082
4976
|
[[package]]
|
|
5083
4977
|
name = "zerofrom"
|
|
5084
|
-
version = "0.1.
|
|
4978
|
+
version = "0.1.8"
|
|
5085
4979
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5086
|
-
checksum = "
|
|
4980
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
5087
4981
|
dependencies = [
|
|
5088
4982
|
"zerofrom-derive",
|
|
5089
4983
|
]
|
|
@@ -5105,6 +4999,20 @@ name = "zeroize"
|
|
|
5105
4999
|
version = "1.8.2"
|
|
5106
5000
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5107
5001
|
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
5002
|
+
dependencies = [
|
|
5003
|
+
"zeroize_derive",
|
|
5004
|
+
]
|
|
5005
|
+
|
|
5006
|
+
[[package]]
|
|
5007
|
+
name = "zeroize_derive"
|
|
5008
|
+
version = "1.4.3"
|
|
5009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5010
|
+
checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
|
|
5011
|
+
dependencies = [
|
|
5012
|
+
"proc-macro2",
|
|
5013
|
+
"quote",
|
|
5014
|
+
"syn",
|
|
5015
|
+
]
|
|
5108
5016
|
|
|
5109
5017
|
[[package]]
|
|
5110
5018
|
name = "zerotrie"
|