act-cli 0.3.2__tar.gz → 0.3.8__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.3.2 → act_cli-0.3.8}/Cargo.lock +370 -240
- act_cli-0.3.8/Cargo.toml +18 -0
- {act_cli-0.3.2 → act_cli-0.3.8}/PKG-INFO +41 -15
- {act_cli-0.3.2 → act_cli-0.3.8}/README.md +38 -9
- {act_cli-0.3.2 → act_cli-0.3.8/act-cli}/Cargo.toml +12 -18
- act_cli-0.3.8/act-cli/README.md +108 -0
- {act_cli-0.3.2 → act_cli-0.3.8/act-cli}/src/format.rs +52 -48
- {act_cli-0.3.2 → act_cli-0.3.8/act-cli}/src/main.rs +111 -36
- {act_cli-0.3.2 → act_cli-0.3.8/act-cli}/src/mcp.rs +56 -7
- {act_cli-0.3.2 → act_cli-0.3.8/act-cli}/src/runtime.rs +34 -24
- {act_cli-0.3.2 → act_cli-0.3.8}/pyproject.toml +4 -3
- act_cli-0.3.2/CHANGELOG.md +0 -92
- act_cli-0.3.2/LICENSE-APACHE +0 -190
- act_cli-0.3.2/LICENSE-MIT +0 -21
- {act_cli-0.3.2 → act_cli-0.3.8/act-cli}/src/bindings/mod.rs +0 -0
- {act_cli-0.3.2 → act_cli-0.3.8/act-cli}/src/config.rs +0 -0
- {act_cli-0.3.2 → act_cli-0.3.8/act-cli}/src/http.rs +0 -0
- {act_cli-0.3.2 → act_cli-0.3.8/act-cli}/src/resolve.rs +0 -0
- {act_cli-0.3.2 → act_cli-0.3.8/act-cli}/wit/deps/act-core/act-core.wit +0 -0
- {act_cli-0.3.2 → act_cli-0.3.8/act-cli}/wit/deps/act-core/act-events.wit +0 -0
- {act_cli-0.3.2 → act_cli-0.3.8/act-cli}/wit/deps/act-core/act-resources.wit +0 -0
- {act_cli-0.3.2 → act_cli-0.3.8/act-cli}/wit/deps.lock +0 -0
- {act_cli-0.3.2 → act_cli-0.3.8/act-cli}/wit/deps.toml +0 -0
- {act_cli-0.3.2 → act_cli-0.3.8/act-cli}/wit/world.wit +0 -0
|
@@ -2,9 +2,29 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 4
|
|
4
4
|
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "act-build"
|
|
7
|
+
version = "0.3.8"
|
|
8
|
+
dependencies = [
|
|
9
|
+
"act-types",
|
|
10
|
+
"anyhow",
|
|
11
|
+
"ciborium",
|
|
12
|
+
"clap",
|
|
13
|
+
"json-patch",
|
|
14
|
+
"serde",
|
|
15
|
+
"serde_json",
|
|
16
|
+
"tar",
|
|
17
|
+
"tempfile",
|
|
18
|
+
"toml 1.1.2+spec-1.1.0",
|
|
19
|
+
"tracing",
|
|
20
|
+
"tracing-subscriber",
|
|
21
|
+
"wasm-encoder 0.246.2",
|
|
22
|
+
"wasmparser 0.246.2",
|
|
23
|
+
]
|
|
24
|
+
|
|
5
25
|
[[package]]
|
|
6
26
|
name = "act-cli"
|
|
7
|
-
version = "0.3.
|
|
27
|
+
version = "0.3.8"
|
|
8
28
|
dependencies = [
|
|
9
29
|
"act-types",
|
|
10
30
|
"anyhow",
|
|
@@ -23,14 +43,15 @@ dependencies = [
|
|
|
23
43
|
"serde_with",
|
|
24
44
|
"sha2 0.11.0",
|
|
25
45
|
"shellexpand",
|
|
46
|
+
"tar",
|
|
26
47
|
"tempfile",
|
|
27
48
|
"tokio",
|
|
28
49
|
"tokio-stream",
|
|
29
|
-
"toml 1.1.
|
|
50
|
+
"toml 1.1.2+spec-1.1.0",
|
|
30
51
|
"tracing",
|
|
31
52
|
"tracing-subscriber",
|
|
32
53
|
"url",
|
|
33
|
-
"wasmparser 0.
|
|
54
|
+
"wasmparser 0.246.2",
|
|
34
55
|
"wasmtime",
|
|
35
56
|
"wasmtime-wasi",
|
|
36
57
|
"wasmtime-wasi-http",
|
|
@@ -38,9 +59,9 @@ dependencies = [
|
|
|
38
59
|
|
|
39
60
|
[[package]]
|
|
40
61
|
name = "act-types"
|
|
41
|
-
version = "0.
|
|
62
|
+
version = "0.3.0"
|
|
42
63
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
43
|
-
checksum = "
|
|
64
|
+
checksum = "eb1b9061f74fb4c33ee284d590527a001462e999b8ab63f13ce9cf1bde1ecdf5"
|
|
44
65
|
dependencies = [
|
|
45
66
|
"base64",
|
|
46
67
|
"ciborium",
|
|
@@ -51,9 +72,9 @@ dependencies = [
|
|
|
51
72
|
|
|
52
73
|
[[package]]
|
|
53
74
|
name = "addr2line"
|
|
54
|
-
version = "0.26.
|
|
75
|
+
version = "0.26.1"
|
|
55
76
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
-
checksum = "
|
|
77
|
+
checksum = "59317f77929f0e679d39364702289274de2f0f0b22cbf50b2b8cff2169a0b27a"
|
|
57
78
|
dependencies = [
|
|
58
79
|
"gimli",
|
|
59
80
|
]
|
|
@@ -185,9 +206,9 @@ dependencies = [
|
|
|
185
206
|
|
|
186
207
|
[[package]]
|
|
187
208
|
name = "aws-lc-sys"
|
|
188
|
-
version = "0.39.
|
|
209
|
+
version = "0.39.1"
|
|
189
210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
-
checksum = "
|
|
211
|
+
checksum = "83a25cf98105baa966497416dbd42565ce3a8cf8dbfd59803ec9ad46f3126399"
|
|
191
212
|
dependencies = [
|
|
192
213
|
"cc",
|
|
193
214
|
"cmake",
|
|
@@ -381,9 +402,9 @@ dependencies = [
|
|
|
381
402
|
|
|
382
403
|
[[package]]
|
|
383
404
|
name = "cc"
|
|
384
|
-
version = "1.2.
|
|
405
|
+
version = "1.2.59"
|
|
385
406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
-
checksum = "
|
|
407
|
+
checksum = "b7a4d3ec6524d28a329fc53654bbadc9bdd7b0431f5d65f1a56ffb28a1ee5283"
|
|
387
408
|
dependencies = [
|
|
388
409
|
"find-msvc-tools",
|
|
389
410
|
"jobserver",
|
|
@@ -607,36 +628,37 @@ dependencies = [
|
|
|
607
628
|
|
|
608
629
|
[[package]]
|
|
609
630
|
name = "cranelift-assembler-x64"
|
|
610
|
-
version = "0.
|
|
631
|
+
version = "0.130.0"
|
|
611
632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
-
checksum = "
|
|
633
|
+
checksum = "4f248321c6a7d4de5dcf2939368e96a397ad3f53b6a076e38d0104d1da326d37"
|
|
613
634
|
dependencies = [
|
|
614
635
|
"cranelift-assembler-x64-meta",
|
|
615
636
|
]
|
|
616
637
|
|
|
617
638
|
[[package]]
|
|
618
639
|
name = "cranelift-assembler-x64-meta"
|
|
619
|
-
version = "0.
|
|
640
|
+
version = "0.130.0"
|
|
620
641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
-
checksum = "
|
|
642
|
+
checksum = "ab6d78ff1f7d9bf8b7e1afbedbf78ba49e38e9da479d4c8a2db094e22f64e2bc"
|
|
622
643
|
dependencies = [
|
|
623
644
|
"cranelift-srcgen",
|
|
624
645
|
]
|
|
625
646
|
|
|
626
647
|
[[package]]
|
|
627
648
|
name = "cranelift-bforest"
|
|
628
|
-
version = "0.
|
|
649
|
+
version = "0.130.0"
|
|
629
650
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
-
checksum = "
|
|
651
|
+
checksum = "6b6005ba640213a5b95382aeaf6b82bf028309581c8d7349778d66f27dc1180b"
|
|
631
652
|
dependencies = [
|
|
632
653
|
"cranelift-entity",
|
|
654
|
+
"wasmtime-internal-core",
|
|
633
655
|
]
|
|
634
656
|
|
|
635
657
|
[[package]]
|
|
636
658
|
name = "cranelift-bitset"
|
|
637
|
-
version = "0.
|
|
659
|
+
version = "0.130.0"
|
|
638
660
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
-
checksum = "
|
|
661
|
+
checksum = "81fb5b134a12b559ff0c0f5af0fcd755ad380723b5016c4e0d36f74d39485340"
|
|
640
662
|
dependencies = [
|
|
641
663
|
"serde",
|
|
642
664
|
"serde_derive",
|
|
@@ -645,9 +667,9 @@ dependencies = [
|
|
|
645
667
|
|
|
646
668
|
[[package]]
|
|
647
669
|
name = "cranelift-codegen"
|
|
648
|
-
version = "0.
|
|
670
|
+
version = "0.130.0"
|
|
649
671
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
-
checksum = "
|
|
672
|
+
checksum = "85837de8be7f17a4034a6b08816f05a3144345d2091937b39d415990daca28f4"
|
|
651
673
|
dependencies = [
|
|
652
674
|
"bumpalo",
|
|
653
675
|
"cranelift-assembler-x64",
|
|
@@ -659,7 +681,7 @@ dependencies = [
|
|
|
659
681
|
"cranelift-entity",
|
|
660
682
|
"cranelift-isle",
|
|
661
683
|
"gimli",
|
|
662
|
-
"hashbrown 0.
|
|
684
|
+
"hashbrown 0.16.1",
|
|
663
685
|
"libm",
|
|
664
686
|
"log",
|
|
665
687
|
"pulley-interpreter",
|
|
@@ -673,9 +695,9 @@ dependencies = [
|
|
|
673
695
|
|
|
674
696
|
[[package]]
|
|
675
697
|
name = "cranelift-codegen-meta"
|
|
676
|
-
version = "0.
|
|
698
|
+
version = "0.130.0"
|
|
677
699
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
-
checksum = "
|
|
700
|
+
checksum = "e433faa87d38e5b8ff469e44a26fea4f93e58abd7a7c10bad9810056139700c9"
|
|
679
701
|
dependencies = [
|
|
680
702
|
"cranelift-assembler-x64-meta",
|
|
681
703
|
"cranelift-codegen-shared",
|
|
@@ -686,24 +708,24 @@ dependencies = [
|
|
|
686
708
|
|
|
687
709
|
[[package]]
|
|
688
710
|
name = "cranelift-codegen-shared"
|
|
689
|
-
version = "0.
|
|
711
|
+
version = "0.130.0"
|
|
690
712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
-
checksum = "
|
|
713
|
+
checksum = "5397ba61976e13944ca71230775db13ee1cb62849701ed35b753f4761ed0a9b7"
|
|
692
714
|
|
|
693
715
|
[[package]]
|
|
694
716
|
name = "cranelift-control"
|
|
695
|
-
version = "0.
|
|
717
|
+
version = "0.130.0"
|
|
696
718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
-
checksum = "
|
|
719
|
+
checksum = "cc81c88765580720eb30f4fc2c1bfdb75fcbf3094f87b3cd69cecca79d77a245"
|
|
698
720
|
dependencies = [
|
|
699
721
|
"arbitrary",
|
|
700
722
|
]
|
|
701
723
|
|
|
702
724
|
[[package]]
|
|
703
725
|
name = "cranelift-entity"
|
|
704
|
-
version = "0.
|
|
726
|
+
version = "0.130.0"
|
|
705
727
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
-
checksum = "
|
|
728
|
+
checksum = "463feed5d46cf8763f3ba3045284cf706dd161496e20ec9c14afbb4ba09b9e66"
|
|
707
729
|
dependencies = [
|
|
708
730
|
"cranelift-bitset",
|
|
709
731
|
"serde",
|
|
@@ -713,9 +735,9 @@ dependencies = [
|
|
|
713
735
|
|
|
714
736
|
[[package]]
|
|
715
737
|
name = "cranelift-frontend"
|
|
716
|
-
version = "0.
|
|
738
|
+
version = "0.130.0"
|
|
717
739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
718
|
-
checksum = "
|
|
740
|
+
checksum = "a4c5eca7696c1c04ab4c7ed8d18eadbb47d6cc9f14ec86fe0881bf1d7e97e261"
|
|
719
741
|
dependencies = [
|
|
720
742
|
"cranelift-codegen",
|
|
721
743
|
"log",
|
|
@@ -725,15 +747,15 @@ dependencies = [
|
|
|
725
747
|
|
|
726
748
|
[[package]]
|
|
727
749
|
name = "cranelift-isle"
|
|
728
|
-
version = "0.
|
|
750
|
+
version = "0.130.0"
|
|
729
751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
-
checksum = "
|
|
752
|
+
checksum = "f1153844610cc9c6da8cf10ce205e45da1a585b7688ed558aa808bbe2e4e6d77"
|
|
731
753
|
|
|
732
754
|
[[package]]
|
|
733
755
|
name = "cranelift-native"
|
|
734
|
-
version = "0.
|
|
756
|
+
version = "0.130.0"
|
|
735
757
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
-
checksum = "
|
|
758
|
+
checksum = "a97b583fe9a60f06b0464cee6be5a17f623fd91b217aaac99b51b339d19911af"
|
|
737
759
|
dependencies = [
|
|
738
760
|
"cranelift-codegen",
|
|
739
761
|
"libc",
|
|
@@ -742,9 +764,9 @@ dependencies = [
|
|
|
742
764
|
|
|
743
765
|
[[package]]
|
|
744
766
|
name = "cranelift-srcgen"
|
|
745
|
-
version = "0.
|
|
767
|
+
version = "0.130.0"
|
|
746
768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
-
checksum = "
|
|
769
|
+
checksum = "8594dc6bb4860fa8292f1814c76459dbfb933e1978d8222de6380efce45c7cee"
|
|
748
770
|
|
|
749
771
|
[[package]]
|
|
750
772
|
name = "crc32fast"
|
|
@@ -1061,9 +1083,9 @@ dependencies = [
|
|
|
1061
1083
|
|
|
1062
1084
|
[[package]]
|
|
1063
1085
|
name = "fastrand"
|
|
1064
|
-
version = "2.
|
|
1086
|
+
version = "2.4.0"
|
|
1065
1087
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
-
checksum = "
|
|
1088
|
+
checksum = "a043dc74da1e37d6afe657061213aa6f425f855399a11d3463c6ecccc4dfda1f"
|
|
1067
1089
|
|
|
1068
1090
|
[[package]]
|
|
1069
1091
|
name = "fd-lock"
|
|
@@ -1076,6 +1098,17 @@ dependencies = [
|
|
|
1076
1098
|
"windows-sys 0.59.0",
|
|
1077
1099
|
]
|
|
1078
1100
|
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "filetime"
|
|
1103
|
+
version = "0.2.27"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
|
|
1106
|
+
dependencies = [
|
|
1107
|
+
"cfg-if",
|
|
1108
|
+
"libc",
|
|
1109
|
+
"libredox",
|
|
1110
|
+
]
|
|
1111
|
+
|
|
1079
1112
|
[[package]]
|
|
1080
1113
|
name = "find-msvc-tools"
|
|
1081
1114
|
version = "0.1.9"
|
|
@@ -1286,13 +1319,13 @@ dependencies = [
|
|
|
1286
1319
|
|
|
1287
1320
|
[[package]]
|
|
1288
1321
|
name = "gimli"
|
|
1289
|
-
version = "0.33.
|
|
1322
|
+
version = "0.33.1"
|
|
1290
1323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
-
checksum = "
|
|
1324
|
+
checksum = "19e16c5073773ccf057c282be832a59ee53ef5ff98db3aeff7f8314f52ffc196"
|
|
1292
1325
|
dependencies = [
|
|
1293
1326
|
"fnv",
|
|
1294
1327
|
"hashbrown 0.16.1",
|
|
1295
|
-
"indexmap 2.13.
|
|
1328
|
+
"indexmap 2.13.1",
|
|
1296
1329
|
"stable_deref_trait",
|
|
1297
1330
|
]
|
|
1298
1331
|
|
|
@@ -1308,7 +1341,7 @@ dependencies = [
|
|
|
1308
1341
|
"futures-core",
|
|
1309
1342
|
"futures-sink",
|
|
1310
1343
|
"http",
|
|
1311
|
-
"indexmap 2.13.
|
|
1344
|
+
"indexmap 2.13.1",
|
|
1312
1345
|
"slab",
|
|
1313
1346
|
"tokio",
|
|
1314
1347
|
"tokio-util",
|
|
@@ -1339,7 +1372,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1339
1372
|
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1340
1373
|
dependencies = [
|
|
1341
1374
|
"foldhash 0.1.5",
|
|
1342
|
-
"serde",
|
|
1343
1375
|
]
|
|
1344
1376
|
|
|
1345
1377
|
[[package]]
|
|
@@ -1421,18 +1453,18 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
|
1421
1453
|
|
|
1422
1454
|
[[package]]
|
|
1423
1455
|
name = "hybrid-array"
|
|
1424
|
-
version = "0.4.
|
|
1456
|
+
version = "0.4.10"
|
|
1425
1457
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1426
|
-
checksum = "
|
|
1458
|
+
checksum = "3944cf8cf766b40e2a1a333ee5e9b563f854d5fa49d6a8ca2764e97c6eddb214"
|
|
1427
1459
|
dependencies = [
|
|
1428
1460
|
"typenum",
|
|
1429
1461
|
]
|
|
1430
1462
|
|
|
1431
1463
|
[[package]]
|
|
1432
1464
|
name = "hyper"
|
|
1433
|
-
version = "1.
|
|
1465
|
+
version = "1.9.0"
|
|
1434
1466
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
-
checksum = "
|
|
1467
|
+
checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
|
|
1436
1468
|
dependencies = [
|
|
1437
1469
|
"atomic-waker",
|
|
1438
1470
|
"bytes",
|
|
@@ -1445,7 +1477,6 @@ dependencies = [
|
|
|
1445
1477
|
"httpdate",
|
|
1446
1478
|
"itoa",
|
|
1447
1479
|
"pin-project-lite",
|
|
1448
|
-
"pin-utils",
|
|
1449
1480
|
"smallvec",
|
|
1450
1481
|
"tokio",
|
|
1451
1482
|
"want",
|
|
@@ -1516,12 +1547,13 @@ dependencies = [
|
|
|
1516
1547
|
|
|
1517
1548
|
[[package]]
|
|
1518
1549
|
name = "icu_collections"
|
|
1519
|
-
version = "2.
|
|
1550
|
+
version = "2.2.0"
|
|
1520
1551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
-
checksum = "
|
|
1552
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
1522
1553
|
dependencies = [
|
|
1523
1554
|
"displaydoc",
|
|
1524
1555
|
"potential_utf",
|
|
1556
|
+
"utf8_iter",
|
|
1525
1557
|
"yoke",
|
|
1526
1558
|
"zerofrom",
|
|
1527
1559
|
"zerovec",
|
|
@@ -1529,9 +1561,9 @@ dependencies = [
|
|
|
1529
1561
|
|
|
1530
1562
|
[[package]]
|
|
1531
1563
|
name = "icu_locale_core"
|
|
1532
|
-
version = "2.
|
|
1564
|
+
version = "2.2.0"
|
|
1533
1565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1534
|
-
checksum = "
|
|
1566
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
1535
1567
|
dependencies = [
|
|
1536
1568
|
"displaydoc",
|
|
1537
1569
|
"litemap",
|
|
@@ -1542,9 +1574,9 @@ dependencies = [
|
|
|
1542
1574
|
|
|
1543
1575
|
[[package]]
|
|
1544
1576
|
name = "icu_normalizer"
|
|
1545
|
-
version = "2.
|
|
1577
|
+
version = "2.2.0"
|
|
1546
1578
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1547
|
-
checksum = "
|
|
1579
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
1548
1580
|
dependencies = [
|
|
1549
1581
|
"icu_collections",
|
|
1550
1582
|
"icu_normalizer_data",
|
|
@@ -1556,15 +1588,15 @@ dependencies = [
|
|
|
1556
1588
|
|
|
1557
1589
|
[[package]]
|
|
1558
1590
|
name = "icu_normalizer_data"
|
|
1559
|
-
version = "2.
|
|
1591
|
+
version = "2.2.0"
|
|
1560
1592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
|
-
checksum = "
|
|
1593
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
1562
1594
|
|
|
1563
1595
|
[[package]]
|
|
1564
1596
|
name = "icu_properties"
|
|
1565
|
-
version = "2.
|
|
1597
|
+
version = "2.2.0"
|
|
1566
1598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1567
|
-
checksum = "
|
|
1599
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
1568
1600
|
dependencies = [
|
|
1569
1601
|
"icu_collections",
|
|
1570
1602
|
"icu_locale_core",
|
|
@@ -1576,15 +1608,15 @@ dependencies = [
|
|
|
1576
1608
|
|
|
1577
1609
|
[[package]]
|
|
1578
1610
|
name = "icu_properties_data"
|
|
1579
|
-
version = "2.
|
|
1611
|
+
version = "2.2.0"
|
|
1580
1612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1581
|
-
checksum = "
|
|
1613
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
1582
1614
|
|
|
1583
1615
|
[[package]]
|
|
1584
1616
|
name = "icu_provider"
|
|
1585
|
-
version = "2.
|
|
1617
|
+
version = "2.2.0"
|
|
1586
1618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1587
|
-
checksum = "
|
|
1619
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
1588
1620
|
dependencies = [
|
|
1589
1621
|
"displaydoc",
|
|
1590
1622
|
"icu_locale_core",
|
|
@@ -1655,9 +1687,9 @@ dependencies = [
|
|
|
1655
1687
|
|
|
1656
1688
|
[[package]]
|
|
1657
1689
|
name = "indexmap"
|
|
1658
|
-
version = "2.13.
|
|
1690
|
+
version = "2.13.1"
|
|
1659
1691
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1660
|
-
checksum = "
|
|
1692
|
+
checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff"
|
|
1661
1693
|
dependencies = [
|
|
1662
1694
|
"equivalent",
|
|
1663
1695
|
"hashbrown 0.16.1",
|
|
@@ -1702,9 +1734,9 @@ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
|
1702
1734
|
|
|
1703
1735
|
[[package]]
|
|
1704
1736
|
name = "iri-string"
|
|
1705
|
-
version = "0.7.
|
|
1737
|
+
version = "0.7.12"
|
|
1706
1738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
-
checksum = "
|
|
1739
|
+
checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
|
|
1708
1740
|
dependencies = [
|
|
1709
1741
|
"memchr",
|
|
1710
1742
|
"serde",
|
|
@@ -1807,14 +1839,38 @@ dependencies = [
|
|
|
1807
1839
|
|
|
1808
1840
|
[[package]]
|
|
1809
1841
|
name = "js-sys"
|
|
1810
|
-
version = "0.3.
|
|
1842
|
+
version = "0.3.94"
|
|
1811
1843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1812
|
-
checksum = "
|
|
1844
|
+
checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
|
|
1813
1845
|
dependencies = [
|
|
1846
|
+
"cfg-if",
|
|
1847
|
+
"futures-util",
|
|
1814
1848
|
"once_cell",
|
|
1815
1849
|
"wasm-bindgen",
|
|
1816
1850
|
]
|
|
1817
1851
|
|
|
1852
|
+
[[package]]
|
|
1853
|
+
name = "json-patch"
|
|
1854
|
+
version = "4.1.0"
|
|
1855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1856
|
+
checksum = "f300e415e2134745ef75f04562dd0145405c2f7fd92065db029ac4b16b57fe90"
|
|
1857
|
+
dependencies = [
|
|
1858
|
+
"jsonptr",
|
|
1859
|
+
"serde",
|
|
1860
|
+
"serde_json",
|
|
1861
|
+
"thiserror 1.0.69",
|
|
1862
|
+
]
|
|
1863
|
+
|
|
1864
|
+
[[package]]
|
|
1865
|
+
name = "jsonptr"
|
|
1866
|
+
version = "0.7.1"
|
|
1867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1868
|
+
checksum = "a5a3cc660ba5d72bce0b3bb295bf20847ccbb40fd423f3f05b61273672e561fe"
|
|
1869
|
+
dependencies = [
|
|
1870
|
+
"serde",
|
|
1871
|
+
"serde_json",
|
|
1872
|
+
]
|
|
1873
|
+
|
|
1818
1874
|
[[package]]
|
|
1819
1875
|
name = "jsonwebtoken"
|
|
1820
1876
|
version = "10.3.0"
|
|
@@ -1849,9 +1905,9 @@ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
|
1849
1905
|
|
|
1850
1906
|
[[package]]
|
|
1851
1907
|
name = "libc"
|
|
1852
|
-
version = "0.2.
|
|
1908
|
+
version = "0.2.184"
|
|
1853
1909
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1854
|
-
checksum = "
|
|
1910
|
+
checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
|
|
1855
1911
|
|
|
1856
1912
|
[[package]]
|
|
1857
1913
|
name = "libm"
|
|
@@ -1865,7 +1921,10 @@ version = "0.1.15"
|
|
|
1865
1921
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1866
1922
|
checksum = "7ddbf48fd451246b1f8c2610bd3b4ac0cc6e149d89832867093ab69a17194f08"
|
|
1867
1923
|
dependencies = [
|
|
1924
|
+
"bitflags",
|
|
1868
1925
|
"libc",
|
|
1926
|
+
"plain",
|
|
1927
|
+
"redox_syscall 0.7.3",
|
|
1869
1928
|
]
|
|
1870
1929
|
|
|
1871
1930
|
[[package]]
|
|
@@ -1882,9 +1941,9 @@ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
|
1882
1941
|
|
|
1883
1942
|
[[package]]
|
|
1884
1943
|
name = "litemap"
|
|
1885
|
-
version = "0.8.
|
|
1944
|
+
version = "0.8.2"
|
|
1886
1945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1887
|
-
checksum = "
|
|
1946
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1888
1947
|
|
|
1889
1948
|
[[package]]
|
|
1890
1949
|
name = "lock_api"
|
|
@@ -1960,9 +2019,9 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
|
1960
2019
|
|
|
1961
2020
|
[[package]]
|
|
1962
2021
|
name = "mio"
|
|
1963
|
-
version = "1.
|
|
2022
|
+
version = "1.2.0"
|
|
1964
2023
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1965
|
-
checksum = "
|
|
2024
|
+
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
|
1966
2025
|
dependencies = [
|
|
1967
2026
|
"libc",
|
|
1968
2027
|
"wasi",
|
|
@@ -1995,13 +2054,13 @@ dependencies = [
|
|
|
1995
2054
|
|
|
1996
2055
|
[[package]]
|
|
1997
2056
|
name = "object"
|
|
1998
|
-
version = "0.
|
|
2057
|
+
version = "0.38.1"
|
|
1999
2058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2000
|
-
checksum = "
|
|
2059
|
+
checksum = "271638cd5fa9cca89c4c304675ca658efc4e64a66c716b7cfe1afb4b9611dbbc"
|
|
2001
2060
|
dependencies = [
|
|
2002
2061
|
"crc32fast",
|
|
2003
|
-
"hashbrown 0.
|
|
2004
|
-
"indexmap 2.13.
|
|
2062
|
+
"hashbrown 0.16.1",
|
|
2063
|
+
"indexmap 2.13.1",
|
|
2005
2064
|
"memchr",
|
|
2006
2065
|
]
|
|
2007
2066
|
|
|
@@ -2101,7 +2160,7 @@ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
|
2101
2160
|
dependencies = [
|
|
2102
2161
|
"cfg-if",
|
|
2103
2162
|
"libc",
|
|
2104
|
-
"redox_syscall",
|
|
2163
|
+
"redox_syscall 0.5.18",
|
|
2105
2164
|
"smallvec",
|
|
2106
2165
|
"windows-link",
|
|
2107
2166
|
]
|
|
@@ -2119,7 +2178,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2119
2178
|
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
|
2120
2179
|
dependencies = [
|
|
2121
2180
|
"fixedbitset",
|
|
2122
|
-
"indexmap 2.13.
|
|
2181
|
+
"indexmap 2.13.1",
|
|
2123
2182
|
]
|
|
2124
2183
|
|
|
2125
2184
|
[[package]]
|
|
@@ -2128,18 +2187,18 @@ version = "0.2.17"
|
|
|
2128
2187
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2129
2188
|
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
2130
2189
|
|
|
2131
|
-
[[package]]
|
|
2132
|
-
name = "pin-utils"
|
|
2133
|
-
version = "0.1.0"
|
|
2134
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2135
|
-
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2136
|
-
|
|
2137
2190
|
[[package]]
|
|
2138
2191
|
name = "pkg-config"
|
|
2139
2192
|
version = "0.3.32"
|
|
2140
2193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2141
2194
|
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
2142
2195
|
|
|
2196
|
+
[[package]]
|
|
2197
|
+
name = "plain"
|
|
2198
|
+
version = "0.2.3"
|
|
2199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2200
|
+
checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
|
|
2201
|
+
|
|
2143
2202
|
[[package]]
|
|
2144
2203
|
name = "portable-atomic"
|
|
2145
2204
|
version = "1.13.1"
|
|
@@ -2160,9 +2219,9 @@ dependencies = [
|
|
|
2160
2219
|
|
|
2161
2220
|
[[package]]
|
|
2162
2221
|
name = "potential_utf"
|
|
2163
|
-
version = "0.1.
|
|
2222
|
+
version = "0.1.5"
|
|
2164
2223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2165
|
-
checksum = "
|
|
2224
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
2166
2225
|
dependencies = [
|
|
2167
2226
|
"zerovec",
|
|
2168
2227
|
]
|
|
@@ -2225,9 +2284,9 @@ dependencies = [
|
|
|
2225
2284
|
|
|
2226
2285
|
[[package]]
|
|
2227
2286
|
name = "pulley-interpreter"
|
|
2228
|
-
version = "
|
|
2287
|
+
version = "43.0.0"
|
|
2229
2288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2230
|
-
checksum = "
|
|
2289
|
+
checksum = "7975f0975fa2c047bf47d617bdf716689e42ee82b159bd000ead7330d7697a1b"
|
|
2231
2290
|
dependencies = [
|
|
2232
2291
|
"cranelift-bitset",
|
|
2233
2292
|
"log",
|
|
@@ -2237,9 +2296,9 @@ dependencies = [
|
|
|
2237
2296
|
|
|
2238
2297
|
[[package]]
|
|
2239
2298
|
name = "pulley-macros"
|
|
2240
|
-
version = "
|
|
2299
|
+
version = "43.0.0"
|
|
2241
2300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2242
|
-
checksum = "
|
|
2301
|
+
checksum = "a210c0386ef0ddedb337ec99b91e560ae9c341415ef75958cb39ddb537bb0c84"
|
|
2243
2302
|
dependencies = [
|
|
2244
2303
|
"proc-macro2",
|
|
2245
2304
|
"quote",
|
|
@@ -2420,6 +2479,15 @@ dependencies = [
|
|
|
2420
2479
|
"bitflags",
|
|
2421
2480
|
]
|
|
2422
2481
|
|
|
2482
|
+
[[package]]
|
|
2483
|
+
name = "redox_syscall"
|
|
2484
|
+
version = "0.7.3"
|
|
2485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2486
|
+
checksum = "6ce70a74e890531977d37e532c34d45e9055d2409ed08ddba14529471ed0be16"
|
|
2487
|
+
dependencies = [
|
|
2488
|
+
"bitflags",
|
|
2489
|
+
]
|
|
2490
|
+
|
|
2423
2491
|
[[package]]
|
|
2424
2492
|
name = "redox_users"
|
|
2425
2493
|
version = "0.4.6"
|
|
@@ -2464,9 +2532,9 @@ dependencies = [
|
|
|
2464
2532
|
|
|
2465
2533
|
[[package]]
|
|
2466
2534
|
name = "regalloc2"
|
|
2467
|
-
version = "0.
|
|
2535
|
+
version = "0.15.0"
|
|
2468
2536
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2469
|
-
checksum = "
|
|
2537
|
+
checksum = "952ddbfc6f9f64d006c3efd8c9851a6ba2f2b944ba94730db255d55006e0ffda"
|
|
2470
2538
|
dependencies = [
|
|
2471
2539
|
"allocator-api2",
|
|
2472
2540
|
"bumpalo",
|
|
@@ -2568,9 +2636,9 @@ checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
|
|
|
2568
2636
|
|
|
2569
2637
|
[[package]]
|
|
2570
2638
|
name = "rustc-hash"
|
|
2571
|
-
version = "2.1.
|
|
2639
|
+
version = "2.1.2"
|
|
2572
2640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2573
|
-
checksum = "
|
|
2641
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
2574
2642
|
|
|
2575
2643
|
[[package]]
|
|
2576
2644
|
name = "rustix"
|
|
@@ -2793,9 +2861,9 @@ dependencies = [
|
|
|
2793
2861
|
|
|
2794
2862
|
[[package]]
|
|
2795
2863
|
name = "semver"
|
|
2796
|
-
version = "1.0.
|
|
2864
|
+
version = "1.0.28"
|
|
2797
2865
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2798
|
-
checksum = "
|
|
2866
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
2799
2867
|
dependencies = [
|
|
2800
2868
|
"serde",
|
|
2801
2869
|
"serde_core",
|
|
@@ -2857,9 +2925,9 @@ dependencies = [
|
|
|
2857
2925
|
|
|
2858
2926
|
[[package]]
|
|
2859
2927
|
name = "serde_spanned"
|
|
2860
|
-
version = "1.1.
|
|
2928
|
+
version = "1.1.1"
|
|
2861
2929
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2862
|
-
checksum = "
|
|
2930
|
+
checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
|
|
2863
2931
|
dependencies = [
|
|
2864
2932
|
"serde_core",
|
|
2865
2933
|
]
|
|
@@ -2886,7 +2954,7 @@ dependencies = [
|
|
|
2886
2954
|
"chrono",
|
|
2887
2955
|
"hex",
|
|
2888
2956
|
"indexmap 1.9.3",
|
|
2889
|
-
"indexmap 2.13.
|
|
2957
|
+
"indexmap 2.13.1",
|
|
2890
2958
|
"schemars 0.9.0",
|
|
2891
2959
|
"schemars 1.2.1",
|
|
2892
2960
|
"serde_core",
|
|
@@ -2913,7 +2981,7 @@ version = "0.9.34+deprecated"
|
|
|
2913
2981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2914
2982
|
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
2915
2983
|
dependencies = [
|
|
2916
|
-
"indexmap 2.13.
|
|
2984
|
+
"indexmap 2.13.1",
|
|
2917
2985
|
"itoa",
|
|
2918
2986
|
"ryu",
|
|
2919
2987
|
"serde",
|
|
@@ -3103,6 +3171,17 @@ dependencies = [
|
|
|
3103
3171
|
"winx",
|
|
3104
3172
|
]
|
|
3105
3173
|
|
|
3174
|
+
[[package]]
|
|
3175
|
+
name = "tar"
|
|
3176
|
+
version = "0.4.45"
|
|
3177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3178
|
+
checksum = "22692a6476a21fa75fdfc11d452fda482af402c008cdbaf3476414e122040973"
|
|
3179
|
+
dependencies = [
|
|
3180
|
+
"filetime",
|
|
3181
|
+
"libc",
|
|
3182
|
+
"xattr",
|
|
3183
|
+
]
|
|
3184
|
+
|
|
3106
3185
|
[[package]]
|
|
3107
3186
|
name = "target-lexicon"
|
|
3108
3187
|
version = "0.13.5"
|
|
@@ -3213,9 +3292,9 @@ dependencies = [
|
|
|
3213
3292
|
|
|
3214
3293
|
[[package]]
|
|
3215
3294
|
name = "tinystr"
|
|
3216
|
-
version = "0.8.
|
|
3295
|
+
version = "0.8.3"
|
|
3217
3296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3218
|
-
checksum = "
|
|
3297
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
3219
3298
|
dependencies = [
|
|
3220
3299
|
"displaydoc",
|
|
3221
3300
|
"zerovec",
|
|
@@ -3238,9 +3317,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
3238
3317
|
|
|
3239
3318
|
[[package]]
|
|
3240
3319
|
name = "tokio"
|
|
3241
|
-
version = "1.
|
|
3320
|
+
version = "1.51.0"
|
|
3242
3321
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3243
|
-
checksum = "
|
|
3322
|
+
checksum = "2bd1c4c0fc4a7ab90fc15ef6daaa3ec3b893f004f915f2392557ed23237820cd"
|
|
3244
3323
|
dependencies = [
|
|
3245
3324
|
"bytes",
|
|
3246
3325
|
"libc",
|
|
@@ -3255,9 +3334,9 @@ dependencies = [
|
|
|
3255
3334
|
|
|
3256
3335
|
[[package]]
|
|
3257
3336
|
name = "tokio-macros"
|
|
3258
|
-
version = "2.
|
|
3337
|
+
version = "2.7.0"
|
|
3259
3338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3260
|
-
checksum = "
|
|
3339
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
3261
3340
|
dependencies = [
|
|
3262
3341
|
"proc-macro2",
|
|
3263
3342
|
"quote",
|
|
@@ -3315,7 +3394,7 @@ version = "0.9.12+spec-1.1.0"
|
|
|
3315
3394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3316
3395
|
checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
|
|
3317
3396
|
dependencies = [
|
|
3318
|
-
"indexmap 2.13.
|
|
3397
|
+
"indexmap 2.13.1",
|
|
3319
3398
|
"serde_core",
|
|
3320
3399
|
"serde_spanned",
|
|
3321
3400
|
"toml_datetime 0.7.5+spec-1.1.0",
|
|
@@ -3326,17 +3405,17 @@ dependencies = [
|
|
|
3326
3405
|
|
|
3327
3406
|
[[package]]
|
|
3328
3407
|
name = "toml"
|
|
3329
|
-
version = "1.1.
|
|
3408
|
+
version = "1.1.2+spec-1.1.0"
|
|
3330
3409
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3331
|
-
checksum = "
|
|
3410
|
+
checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
|
|
3332
3411
|
dependencies = [
|
|
3333
|
-
"indexmap 2.13.
|
|
3412
|
+
"indexmap 2.13.1",
|
|
3334
3413
|
"serde_core",
|
|
3335
3414
|
"serde_spanned",
|
|
3336
|
-
"toml_datetime 1.1.
|
|
3415
|
+
"toml_datetime 1.1.1+spec-1.1.0",
|
|
3337
3416
|
"toml_parser",
|
|
3338
3417
|
"toml_writer",
|
|
3339
|
-
"winnow 1.0.
|
|
3418
|
+
"winnow 1.0.1",
|
|
3340
3419
|
]
|
|
3341
3420
|
|
|
3342
3421
|
[[package]]
|
|
@@ -3350,27 +3429,27 @@ dependencies = [
|
|
|
3350
3429
|
|
|
3351
3430
|
[[package]]
|
|
3352
3431
|
name = "toml_datetime"
|
|
3353
|
-
version = "1.1.
|
|
3432
|
+
version = "1.1.1+spec-1.1.0"
|
|
3354
3433
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3355
|
-
checksum = "
|
|
3434
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
3356
3435
|
dependencies = [
|
|
3357
3436
|
"serde_core",
|
|
3358
3437
|
]
|
|
3359
3438
|
|
|
3360
3439
|
[[package]]
|
|
3361
3440
|
name = "toml_parser"
|
|
3362
|
-
version = "1.1.
|
|
3441
|
+
version = "1.1.2+spec-1.1.0"
|
|
3363
3442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3364
|
-
checksum = "
|
|
3443
|
+
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
3365
3444
|
dependencies = [
|
|
3366
|
-
"winnow 1.0.
|
|
3445
|
+
"winnow 1.0.1",
|
|
3367
3446
|
]
|
|
3368
3447
|
|
|
3369
3448
|
[[package]]
|
|
3370
3449
|
name = "toml_writer"
|
|
3371
|
-
version = "1.1.
|
|
3450
|
+
version = "1.1.1+spec-1.1.0"
|
|
3372
3451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3373
|
-
checksum = "
|
|
3452
|
+
checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
|
|
3374
3453
|
|
|
3375
3454
|
[[package]]
|
|
3376
3455
|
name = "tower"
|
|
@@ -3569,9 +3648,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
3569
3648
|
|
|
3570
3649
|
[[package]]
|
|
3571
3650
|
name = "uuid"
|
|
3572
|
-
version = "1.
|
|
3651
|
+
version = "1.23.0"
|
|
3573
3652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3574
|
-
checksum = "
|
|
3653
|
+
checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9"
|
|
3575
3654
|
dependencies = [
|
|
3576
3655
|
"js-sys",
|
|
3577
3656
|
"wasm-bindgen",
|
|
@@ -3634,9 +3713,9 @@ dependencies = [
|
|
|
3634
3713
|
|
|
3635
3714
|
[[package]]
|
|
3636
3715
|
name = "wasm-bindgen"
|
|
3637
|
-
version = "0.2.
|
|
3716
|
+
version = "0.2.117"
|
|
3638
3717
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3639
|
-
checksum = "
|
|
3718
|
+
checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
|
|
3640
3719
|
dependencies = [
|
|
3641
3720
|
"cfg-if",
|
|
3642
3721
|
"once_cell",
|
|
@@ -3647,23 +3726,19 @@ dependencies = [
|
|
|
3647
3726
|
|
|
3648
3727
|
[[package]]
|
|
3649
3728
|
name = "wasm-bindgen-futures"
|
|
3650
|
-
version = "0.4.
|
|
3729
|
+
version = "0.4.67"
|
|
3651
3730
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3652
|
-
checksum = "
|
|
3731
|
+
checksum = "03623de6905b7206edd0a75f69f747f134b7f0a2323392d664448bf2d3c5d87e"
|
|
3653
3732
|
dependencies = [
|
|
3654
|
-
"cfg-if",
|
|
3655
|
-
"futures-util",
|
|
3656
3733
|
"js-sys",
|
|
3657
|
-
"once_cell",
|
|
3658
3734
|
"wasm-bindgen",
|
|
3659
|
-
"web-sys",
|
|
3660
3735
|
]
|
|
3661
3736
|
|
|
3662
3737
|
[[package]]
|
|
3663
3738
|
name = "wasm-bindgen-macro"
|
|
3664
|
-
version = "0.2.
|
|
3739
|
+
version = "0.2.117"
|
|
3665
3740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3666
|
-
checksum = "
|
|
3741
|
+
checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
|
|
3667
3742
|
dependencies = [
|
|
3668
3743
|
"quote",
|
|
3669
3744
|
"wasm-bindgen-macro-support",
|
|
@@ -3671,9 +3746,9 @@ dependencies = [
|
|
|
3671
3746
|
|
|
3672
3747
|
[[package]]
|
|
3673
3748
|
name = "wasm-bindgen-macro-support"
|
|
3674
|
-
version = "0.2.
|
|
3749
|
+
version = "0.2.117"
|
|
3675
3750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3676
|
-
checksum = "
|
|
3751
|
+
checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
|
|
3677
3752
|
dependencies = [
|
|
3678
3753
|
"bumpalo",
|
|
3679
3754
|
"proc-macro2",
|
|
@@ -3684,31 +3759,31 @@ dependencies = [
|
|
|
3684
3759
|
|
|
3685
3760
|
[[package]]
|
|
3686
3761
|
name = "wasm-bindgen-shared"
|
|
3687
|
-
version = "0.2.
|
|
3762
|
+
version = "0.2.117"
|
|
3688
3763
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3689
|
-
checksum = "
|
|
3764
|
+
checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
|
|
3690
3765
|
dependencies = [
|
|
3691
3766
|
"unicode-ident",
|
|
3692
3767
|
]
|
|
3693
3768
|
|
|
3694
3769
|
[[package]]
|
|
3695
3770
|
name = "wasm-compose"
|
|
3696
|
-
version = "0.
|
|
3771
|
+
version = "0.245.1"
|
|
3697
3772
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3698
|
-
checksum = "
|
|
3773
|
+
checksum = "5fd23d12cc95c451c1306db5bc63075fbebb612bb70c53b4237b1ce5bc178343"
|
|
3699
3774
|
dependencies = [
|
|
3700
3775
|
"anyhow",
|
|
3701
3776
|
"heck",
|
|
3702
3777
|
"im-rc",
|
|
3703
|
-
"indexmap 2.13.
|
|
3778
|
+
"indexmap 2.13.1",
|
|
3704
3779
|
"log",
|
|
3705
3780
|
"petgraph",
|
|
3706
3781
|
"serde",
|
|
3707
3782
|
"serde_derive",
|
|
3708
3783
|
"serde_yaml",
|
|
3709
3784
|
"smallvec",
|
|
3710
|
-
"wasm-encoder 0.
|
|
3711
|
-
"wasmparser 0.
|
|
3785
|
+
"wasm-encoder 0.245.1",
|
|
3786
|
+
"wasmparser 0.245.1",
|
|
3712
3787
|
"wat",
|
|
3713
3788
|
]
|
|
3714
3789
|
|
|
@@ -3732,6 +3807,16 @@ dependencies = [
|
|
|
3732
3807
|
"wasmparser 0.245.1",
|
|
3733
3808
|
]
|
|
3734
3809
|
|
|
3810
|
+
[[package]]
|
|
3811
|
+
name = "wasm-encoder"
|
|
3812
|
+
version = "0.246.2"
|
|
3813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3814
|
+
checksum = "61fb705ce81adde29d2a8e99d87995e39a6e927358c91398f374474746070ef7"
|
|
3815
|
+
dependencies = [
|
|
3816
|
+
"leb128fmt",
|
|
3817
|
+
"wasmparser 0.246.2",
|
|
3818
|
+
]
|
|
3819
|
+
|
|
3735
3820
|
[[package]]
|
|
3736
3821
|
name = "wasm-metadata"
|
|
3737
3822
|
version = "0.244.0"
|
|
@@ -3739,7 +3824,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3739
3824
|
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
3740
3825
|
dependencies = [
|
|
3741
3826
|
"anyhow",
|
|
3742
|
-
"indexmap 2.13.
|
|
3827
|
+
"indexmap 2.13.1",
|
|
3743
3828
|
"wasm-encoder 0.244.0",
|
|
3744
3829
|
"wasmparser 0.244.0",
|
|
3745
3830
|
]
|
|
@@ -3765,9 +3850,8 @@ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
|
3765
3850
|
dependencies = [
|
|
3766
3851
|
"bitflags",
|
|
3767
3852
|
"hashbrown 0.15.5",
|
|
3768
|
-
"indexmap 2.13.
|
|
3853
|
+
"indexmap 2.13.1",
|
|
3769
3854
|
"semver",
|
|
3770
|
-
"serde",
|
|
3771
3855
|
]
|
|
3772
3856
|
|
|
3773
3857
|
[[package]]
|
|
@@ -3778,27 +3862,40 @@ checksum = "4f08c9adee0428b7bddf3890fc27e015ac4b761cc608c822667102b8bfd6995e"
|
|
|
3778
3862
|
dependencies = [
|
|
3779
3863
|
"bitflags",
|
|
3780
3864
|
"hashbrown 0.16.1",
|
|
3781
|
-
"indexmap 2.13.
|
|
3865
|
+
"indexmap 2.13.1",
|
|
3866
|
+
"semver",
|
|
3867
|
+
"serde",
|
|
3868
|
+
]
|
|
3869
|
+
|
|
3870
|
+
[[package]]
|
|
3871
|
+
name = "wasmparser"
|
|
3872
|
+
version = "0.246.2"
|
|
3873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3874
|
+
checksum = "71cde4757396defafd25417cfb36aa3161027d06d865b0c24baaae229aac005d"
|
|
3875
|
+
dependencies = [
|
|
3876
|
+
"bitflags",
|
|
3877
|
+
"hashbrown 0.16.1",
|
|
3878
|
+
"indexmap 2.13.1",
|
|
3782
3879
|
"semver",
|
|
3783
3880
|
"serde",
|
|
3784
3881
|
]
|
|
3785
3882
|
|
|
3786
3883
|
[[package]]
|
|
3787
3884
|
name = "wasmprinter"
|
|
3788
|
-
version = "0.
|
|
3885
|
+
version = "0.245.1"
|
|
3789
3886
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3790
|
-
checksum = "
|
|
3887
|
+
checksum = "5f41517a3716fbb8ccf46daa9c1325f760fcbff5168e75c7392288e410b91ac8"
|
|
3791
3888
|
dependencies = [
|
|
3792
3889
|
"anyhow",
|
|
3793
3890
|
"termcolor",
|
|
3794
|
-
"wasmparser 0.
|
|
3891
|
+
"wasmparser 0.245.1",
|
|
3795
3892
|
]
|
|
3796
3893
|
|
|
3797
3894
|
[[package]]
|
|
3798
3895
|
name = "wasmtime"
|
|
3799
|
-
version = "
|
|
3896
|
+
version = "43.0.0"
|
|
3800
3897
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3801
|
-
checksum = "
|
|
3898
|
+
checksum = "54fa9f298901a64ed3eae16b130f0b30c80dbb74a9e7f129a791f4e74649b917"
|
|
3802
3899
|
dependencies = [
|
|
3803
3900
|
"addr2line",
|
|
3804
3901
|
"async-trait",
|
|
@@ -3830,8 +3927,8 @@ dependencies = [
|
|
|
3830
3927
|
"target-lexicon",
|
|
3831
3928
|
"tempfile",
|
|
3832
3929
|
"wasm-compose",
|
|
3833
|
-
"wasm-encoder 0.
|
|
3834
|
-
"wasmparser 0.
|
|
3930
|
+
"wasm-encoder 0.245.1",
|
|
3931
|
+
"wasmparser 0.245.1",
|
|
3835
3932
|
"wasmtime-environ",
|
|
3836
3933
|
"wasmtime-internal-cache",
|
|
3837
3934
|
"wasmtime-internal-component-macro",
|
|
@@ -3850,17 +3947,18 @@ dependencies = [
|
|
|
3850
3947
|
|
|
3851
3948
|
[[package]]
|
|
3852
3949
|
name = "wasmtime-environ"
|
|
3853
|
-
version = "
|
|
3950
|
+
version = "43.0.0"
|
|
3854
3951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3855
|
-
checksum = "
|
|
3952
|
+
checksum = "75a3aaaa3a522f443af67a7ed8d4efa20b0c3784e1031980537fbfcb497f70a7"
|
|
3856
3953
|
dependencies = [
|
|
3857
3954
|
"anyhow",
|
|
3858
3955
|
"cpp_demangle",
|
|
3956
|
+
"cranelift-bforest",
|
|
3859
3957
|
"cranelift-bitset",
|
|
3860
3958
|
"cranelift-entity",
|
|
3861
3959
|
"gimli",
|
|
3862
|
-
"hashbrown 0.
|
|
3863
|
-
"indexmap 2.13.
|
|
3960
|
+
"hashbrown 0.16.1",
|
|
3961
|
+
"indexmap 2.13.1",
|
|
3864
3962
|
"log",
|
|
3865
3963
|
"object",
|
|
3866
3964
|
"postcard",
|
|
@@ -3868,10 +3966,11 @@ dependencies = [
|
|
|
3868
3966
|
"semver",
|
|
3869
3967
|
"serde",
|
|
3870
3968
|
"serde_derive",
|
|
3969
|
+
"sha2 0.10.9",
|
|
3871
3970
|
"smallvec",
|
|
3872
3971
|
"target-lexicon",
|
|
3873
|
-
"wasm-encoder 0.
|
|
3874
|
-
"wasmparser 0.
|
|
3972
|
+
"wasm-encoder 0.245.1",
|
|
3973
|
+
"wasmparser 0.245.1",
|
|
3875
3974
|
"wasmprinter",
|
|
3876
3975
|
"wasmtime-internal-component-util",
|
|
3877
3976
|
"wasmtime-internal-core",
|
|
@@ -3879,9 +3978,9 @@ dependencies = [
|
|
|
3879
3978
|
|
|
3880
3979
|
[[package]]
|
|
3881
3980
|
name = "wasmtime-internal-cache"
|
|
3882
|
-
version = "
|
|
3981
|
+
version = "43.0.0"
|
|
3883
3982
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3884
|
-
checksum = "
|
|
3983
|
+
checksum = "0454f53d6c91d9a3b30be6d5dbd27e8ff595fddaafe69665df908fc385bbd836"
|
|
3885
3984
|
dependencies = [
|
|
3886
3985
|
"base64",
|
|
3887
3986
|
"directories-next",
|
|
@@ -3899,9 +3998,9 @@ dependencies = [
|
|
|
3899
3998
|
|
|
3900
3999
|
[[package]]
|
|
3901
4000
|
name = "wasmtime-internal-component-macro"
|
|
3902
|
-
version = "
|
|
4001
|
+
version = "43.0.0"
|
|
3903
4002
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3904
|
-
checksum = "
|
|
4003
|
+
checksum = "3e0d00d29ed90a63d2445072860a8a42d7151390157236a69bc3ae056786e9c9"
|
|
3905
4004
|
dependencies = [
|
|
3906
4005
|
"anyhow",
|
|
3907
4006
|
"proc-macro2",
|
|
@@ -3909,30 +4008,32 @@ dependencies = [
|
|
|
3909
4008
|
"syn",
|
|
3910
4009
|
"wasmtime-internal-component-util",
|
|
3911
4010
|
"wasmtime-internal-wit-bindgen",
|
|
3912
|
-
"wit-parser",
|
|
4011
|
+
"wit-parser 0.245.1",
|
|
3913
4012
|
]
|
|
3914
4013
|
|
|
3915
4014
|
[[package]]
|
|
3916
4015
|
name = "wasmtime-internal-component-util"
|
|
3917
|
-
version = "
|
|
4016
|
+
version = "43.0.0"
|
|
3918
4017
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3919
|
-
checksum = "
|
|
4018
|
+
checksum = "7acfd639ca7ab9e1cc37f053edd95bed6a7bed16370a8b2643dc7d9ef3047935"
|
|
3920
4019
|
|
|
3921
4020
|
[[package]]
|
|
3922
4021
|
name = "wasmtime-internal-core"
|
|
3923
|
-
version = "
|
|
4022
|
+
version = "43.0.0"
|
|
3924
4023
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3925
|
-
checksum = "
|
|
4024
|
+
checksum = "e671917bb6856ae360cb59d7aaf26f1cfd042c7b924319dd06fd380739fc0b2e"
|
|
3926
4025
|
dependencies = [
|
|
3927
4026
|
"anyhow",
|
|
4027
|
+
"hashbrown 0.16.1",
|
|
3928
4028
|
"libm",
|
|
4029
|
+
"serde",
|
|
3929
4030
|
]
|
|
3930
4031
|
|
|
3931
4032
|
[[package]]
|
|
3932
4033
|
name = "wasmtime-internal-cranelift"
|
|
3933
|
-
version = "
|
|
4034
|
+
version = "43.0.0"
|
|
3934
4035
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3935
|
-
checksum = "
|
|
4036
|
+
checksum = "f2dfd752e1dcf79eeeadc6f2681e2fb4a9f0b5534d18c5b9b93faccd0de2c80c"
|
|
3936
4037
|
dependencies = [
|
|
3937
4038
|
"cfg-if",
|
|
3938
4039
|
"cranelift-codegen",
|
|
@@ -3948,7 +4049,7 @@ dependencies = [
|
|
|
3948
4049
|
"smallvec",
|
|
3949
4050
|
"target-lexicon",
|
|
3950
4051
|
"thiserror 2.0.18",
|
|
3951
|
-
"wasmparser 0.
|
|
4052
|
+
"wasmparser 0.245.1",
|
|
3952
4053
|
"wasmtime-environ",
|
|
3953
4054
|
"wasmtime-internal-core",
|
|
3954
4055
|
"wasmtime-internal-unwinder",
|
|
@@ -3957,9 +4058,9 @@ dependencies = [
|
|
|
3957
4058
|
|
|
3958
4059
|
[[package]]
|
|
3959
4060
|
name = "wasmtime-internal-fiber"
|
|
3960
|
-
version = "
|
|
4061
|
+
version = "43.0.0"
|
|
3961
4062
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3962
|
-
checksum = "
|
|
4063
|
+
checksum = "d1e9171af643316c11d6ebe52f31f6e2a5d6d1d270de9167a7b7b6f0e3f72982"
|
|
3963
4064
|
dependencies = [
|
|
3964
4065
|
"cc",
|
|
3965
4066
|
"cfg-if",
|
|
@@ -3972,9 +4073,9 @@ dependencies = [
|
|
|
3972
4073
|
|
|
3973
4074
|
[[package]]
|
|
3974
4075
|
name = "wasmtime-internal-jit-debug"
|
|
3975
|
-
version = "
|
|
4076
|
+
version = "43.0.0"
|
|
3976
4077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3977
|
-
checksum = "
|
|
4078
|
+
checksum = "1fe23134536b9883ffc2afcffae23f7ffbcb1791e2d9fac6d6464a37ea4c8fdd"
|
|
3978
4079
|
dependencies = [
|
|
3979
4080
|
"cc",
|
|
3980
4081
|
"object",
|
|
@@ -3984,9 +4085,9 @@ dependencies = [
|
|
|
3984
4085
|
|
|
3985
4086
|
[[package]]
|
|
3986
4087
|
name = "wasmtime-internal-jit-icache-coherence"
|
|
3987
|
-
version = "
|
|
4088
|
+
version = "43.0.0"
|
|
3988
4089
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3989
|
-
checksum = "
|
|
4090
|
+
checksum = "9b3112806515fac8495883885eb8dbdde849988ae91fe6beb544c0d7c0f4c9aa"
|
|
3990
4091
|
dependencies = [
|
|
3991
4092
|
"cfg-if",
|
|
3992
4093
|
"libc",
|
|
@@ -3996,9 +4097,9 @@ dependencies = [
|
|
|
3996
4097
|
|
|
3997
4098
|
[[package]]
|
|
3998
4099
|
name = "wasmtime-internal-unwinder"
|
|
3999
|
-
version = "
|
|
4100
|
+
version = "43.0.0"
|
|
4000
4101
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4001
|
-
checksum = "
|
|
4102
|
+
checksum = "dafc29c6e538273fda8409335137654751bdf24beab65702b7866b0a85ee108a"
|
|
4002
4103
|
dependencies = [
|
|
4003
4104
|
"cfg-if",
|
|
4004
4105
|
"cranelift-codegen",
|
|
@@ -4009,9 +4110,9 @@ dependencies = [
|
|
|
4009
4110
|
|
|
4010
4111
|
[[package]]
|
|
4011
4112
|
name = "wasmtime-internal-versioned-export-macros"
|
|
4012
|
-
version = "
|
|
4113
|
+
version = "43.0.0"
|
|
4013
4114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4014
|
-
checksum = "
|
|
4115
|
+
checksum = "772f2b105b7fdd3dfb2cdf70c297baaeb96fe76a95cdc6fa516f713f04090c73"
|
|
4015
4116
|
dependencies = [
|
|
4016
4117
|
"proc-macro2",
|
|
4017
4118
|
"quote",
|
|
@@ -4020,16 +4121,16 @@ dependencies = [
|
|
|
4020
4121
|
|
|
4021
4122
|
[[package]]
|
|
4022
4123
|
name = "wasmtime-internal-winch"
|
|
4023
|
-
version = "
|
|
4124
|
+
version = "43.0.0"
|
|
4024
4125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4025
|
-
checksum = "
|
|
4126
|
+
checksum = "d556c3b176aba3cce565b2bafcdc049e7410ac1d86bf1ef663a035d9ded0dddc"
|
|
4026
4127
|
dependencies = [
|
|
4027
4128
|
"cranelift-codegen",
|
|
4028
4129
|
"gimli",
|
|
4029
4130
|
"log",
|
|
4030
4131
|
"object",
|
|
4031
4132
|
"target-lexicon",
|
|
4032
|
-
"wasmparser 0.
|
|
4133
|
+
"wasmparser 0.245.1",
|
|
4033
4134
|
"wasmtime-environ",
|
|
4034
4135
|
"wasmtime-internal-cranelift",
|
|
4035
4136
|
"winch-codegen",
|
|
@@ -4037,22 +4138,22 @@ dependencies = [
|
|
|
4037
4138
|
|
|
4038
4139
|
[[package]]
|
|
4039
4140
|
name = "wasmtime-internal-wit-bindgen"
|
|
4040
|
-
version = "
|
|
4141
|
+
version = "43.0.0"
|
|
4041
4142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4042
|
-
checksum = "
|
|
4143
|
+
checksum = "c47507f09e68462a0ed9f351ef410584a52e01d7ec92bc588bf7fa597ce528ef"
|
|
4043
4144
|
dependencies = [
|
|
4044
4145
|
"anyhow",
|
|
4045
4146
|
"bitflags",
|
|
4046
4147
|
"heck",
|
|
4047
|
-
"indexmap 2.13.
|
|
4048
|
-
"wit-parser",
|
|
4148
|
+
"indexmap 2.13.1",
|
|
4149
|
+
"wit-parser 0.245.1",
|
|
4049
4150
|
]
|
|
4050
4151
|
|
|
4051
4152
|
[[package]]
|
|
4052
4153
|
name = "wasmtime-wasi"
|
|
4053
|
-
version = "
|
|
4154
|
+
version = "43.0.0"
|
|
4054
4155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4055
|
-
checksum = "
|
|
4156
|
+
checksum = "cf7fc1eb83dd0d5a368c78d2bad2660f69c03e3c07ce2dd6d1e50fc2b9ff14db"
|
|
4056
4157
|
dependencies = [
|
|
4057
4158
|
"async-trait",
|
|
4058
4159
|
"bitflags",
|
|
@@ -4080,9 +4181,9 @@ dependencies = [
|
|
|
4080
4181
|
|
|
4081
4182
|
[[package]]
|
|
4082
4183
|
name = "wasmtime-wasi-http"
|
|
4083
|
-
version = "
|
|
4184
|
+
version = "43.0.0"
|
|
4084
4185
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4085
|
-
checksum = "
|
|
4186
|
+
checksum = "2922113f8766db31dbd93ed58ff8c056a35ac8246738c373ad37e6577140c62d"
|
|
4086
4187
|
dependencies = [
|
|
4087
4188
|
"async-trait",
|
|
4088
4189
|
"bytes",
|
|
@@ -4104,9 +4205,9 @@ dependencies = [
|
|
|
4104
4205
|
|
|
4105
4206
|
[[package]]
|
|
4106
4207
|
name = "wasmtime-wasi-io"
|
|
4107
|
-
version = "
|
|
4208
|
+
version = "43.0.0"
|
|
4108
4209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4109
|
-
checksum = "
|
|
4210
|
+
checksum = "315fd7192148233c2c61753b5e8e2456e0ff96dd649f079148977554139ea4dc"
|
|
4110
4211
|
dependencies = [
|
|
4111
4212
|
"async-trait",
|
|
4112
4213
|
"bytes",
|
|
@@ -4126,31 +4227,31 @@ dependencies = [
|
|
|
4126
4227
|
|
|
4127
4228
|
[[package]]
|
|
4128
4229
|
name = "wast"
|
|
4129
|
-
version = "
|
|
4230
|
+
version = "246.0.2"
|
|
4130
4231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4131
|
-
checksum = "
|
|
4232
|
+
checksum = "fe3fe8e3bf88ad96d031b4181ddbd64634b17cb0d06dfc3de589ef43591a9a62"
|
|
4132
4233
|
dependencies = [
|
|
4133
4234
|
"bumpalo",
|
|
4134
4235
|
"leb128fmt",
|
|
4135
4236
|
"memchr",
|
|
4136
4237
|
"unicode-width",
|
|
4137
|
-
"wasm-encoder 0.
|
|
4238
|
+
"wasm-encoder 0.246.2",
|
|
4138
4239
|
]
|
|
4139
4240
|
|
|
4140
4241
|
[[package]]
|
|
4141
4242
|
name = "wat"
|
|
4142
|
-
version = "1.
|
|
4243
|
+
version = "1.246.2"
|
|
4143
4244
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4144
|
-
checksum = "
|
|
4245
|
+
checksum = "4bd7fda1199b94fff395c2d19a153f05dbe7807630316fa9673367666fd2ad8c"
|
|
4145
4246
|
dependencies = [
|
|
4146
|
-
"wast
|
|
4247
|
+
"wast 246.0.2",
|
|
4147
4248
|
]
|
|
4148
4249
|
|
|
4149
4250
|
[[package]]
|
|
4150
4251
|
name = "web-sys"
|
|
4151
|
-
version = "0.3.
|
|
4252
|
+
version = "0.3.94"
|
|
4152
4253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4153
|
-
checksum = "
|
|
4254
|
+
checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a"
|
|
4154
4255
|
dependencies = [
|
|
4155
4256
|
"js-sys",
|
|
4156
4257
|
"wasm-bindgen",
|
|
@@ -4195,9 +4296,9 @@ dependencies = [
|
|
|
4195
4296
|
|
|
4196
4297
|
[[package]]
|
|
4197
4298
|
name = "wiggle"
|
|
4198
|
-
version = "
|
|
4299
|
+
version = "43.0.0"
|
|
4199
4300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4200
|
-
checksum = "
|
|
4301
|
+
checksum = "c4e79079e7f5a8c034307bb5e61b2e63bc668e17d139705a7dea5afceab02510"
|
|
4201
4302
|
dependencies = [
|
|
4202
4303
|
"bitflags",
|
|
4203
4304
|
"thiserror 2.0.18",
|
|
@@ -4209,9 +4310,9 @@ dependencies = [
|
|
|
4209
4310
|
|
|
4210
4311
|
[[package]]
|
|
4211
4312
|
name = "wiggle-generate"
|
|
4212
|
-
version = "
|
|
4313
|
+
version = "43.0.0"
|
|
4213
4314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4214
|
-
checksum = "
|
|
4315
|
+
checksum = "9165e5b08a6463d247b5c1292aaab16b103d0d8f5941b60d7bc0c38125eb9ffe"
|
|
4215
4316
|
dependencies = [
|
|
4216
4317
|
"heck",
|
|
4217
4318
|
"proc-macro2",
|
|
@@ -4223,9 +4324,9 @@ dependencies = [
|
|
|
4223
4324
|
|
|
4224
4325
|
[[package]]
|
|
4225
4326
|
name = "wiggle-macro"
|
|
4226
|
-
version = "
|
|
4327
|
+
version = "43.0.0"
|
|
4227
4328
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4228
|
-
checksum = "
|
|
4329
|
+
checksum = "5fb0a5b9476150428eead9ce1a5c83e8fd6aac29806f48c6dbf77d50a067473a"
|
|
4229
4330
|
dependencies = [
|
|
4230
4331
|
"proc-macro2",
|
|
4231
4332
|
"quote",
|
|
@@ -4266,9 +4367,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
4266
4367
|
|
|
4267
4368
|
[[package]]
|
|
4268
4369
|
name = "winch-codegen"
|
|
4269
|
-
version = "
|
|
4370
|
+
version = "43.0.0"
|
|
4270
4371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4271
|
-
checksum = "
|
|
4372
|
+
checksum = "1ca3d76763e4ddc48ede73792d067396ba5ee74c3c581db90e6638fe6b46bf52"
|
|
4272
4373
|
dependencies = [
|
|
4273
4374
|
"cranelift-assembler-x64",
|
|
4274
4375
|
"cranelift-codegen",
|
|
@@ -4277,7 +4378,7 @@ dependencies = [
|
|
|
4277
4378
|
"smallvec",
|
|
4278
4379
|
"target-lexicon",
|
|
4279
4380
|
"thiserror 2.0.18",
|
|
4280
|
-
"wasmparser 0.
|
|
4381
|
+
"wasmparser 0.245.1",
|
|
4281
4382
|
"wasmtime-environ",
|
|
4282
4383
|
"wasmtime-internal-core",
|
|
4283
4384
|
"wasmtime-internal-cranelift",
|
|
@@ -4581,9 +4682,9 @@ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
|
4581
4682
|
|
|
4582
4683
|
[[package]]
|
|
4583
4684
|
name = "winnow"
|
|
4584
|
-
version = "1.0.
|
|
4685
|
+
version = "1.0.1"
|
|
4585
4686
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4586
|
-
checksum = "
|
|
4687
|
+
checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5"
|
|
4587
4688
|
|
|
4588
4689
|
[[package]]
|
|
4589
4690
|
name = "winx"
|
|
@@ -4612,7 +4713,7 @@ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
|
4612
4713
|
dependencies = [
|
|
4613
4714
|
"anyhow",
|
|
4614
4715
|
"heck",
|
|
4615
|
-
"wit-parser",
|
|
4716
|
+
"wit-parser 0.244.0",
|
|
4616
4717
|
]
|
|
4617
4718
|
|
|
4618
4719
|
[[package]]
|
|
@@ -4623,7 +4724,7 @@ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
|
4623
4724
|
dependencies = [
|
|
4624
4725
|
"anyhow",
|
|
4625
4726
|
"heck",
|
|
4626
|
-
"indexmap 2.13.
|
|
4727
|
+
"indexmap 2.13.1",
|
|
4627
4728
|
"prettyplease",
|
|
4628
4729
|
"syn",
|
|
4629
4730
|
"wasm-metadata",
|
|
@@ -4654,7 +4755,7 @@ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
|
4654
4755
|
dependencies = [
|
|
4655
4756
|
"anyhow",
|
|
4656
4757
|
"bitflags",
|
|
4657
|
-
"indexmap 2.13.
|
|
4758
|
+
"indexmap 2.13.1",
|
|
4658
4759
|
"log",
|
|
4659
4760
|
"serde",
|
|
4660
4761
|
"serde_derive",
|
|
@@ -4662,7 +4763,7 @@ dependencies = [
|
|
|
4662
4763
|
"wasm-encoder 0.244.0",
|
|
4663
4764
|
"wasm-metadata",
|
|
4664
4765
|
"wasmparser 0.244.0",
|
|
4665
|
-
"wit-parser",
|
|
4766
|
+
"wit-parser 0.244.0",
|
|
4666
4767
|
]
|
|
4667
4768
|
|
|
4668
4769
|
[[package]]
|
|
@@ -4673,7 +4774,7 @@ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
|
4673
4774
|
dependencies = [
|
|
4674
4775
|
"anyhow",
|
|
4675
4776
|
"id-arena",
|
|
4676
|
-
"indexmap 2.13.
|
|
4777
|
+
"indexmap 2.13.1",
|
|
4677
4778
|
"log",
|
|
4678
4779
|
"semver",
|
|
4679
4780
|
"serde",
|
|
@@ -4683,6 +4784,25 @@ dependencies = [
|
|
|
4683
4784
|
"wasmparser 0.244.0",
|
|
4684
4785
|
]
|
|
4685
4786
|
|
|
4787
|
+
[[package]]
|
|
4788
|
+
name = "wit-parser"
|
|
4789
|
+
version = "0.245.1"
|
|
4790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4791
|
+
checksum = "330698718e82983499419494dd1e3d7811a457a9bf9f69734e8c5f07a2547929"
|
|
4792
|
+
dependencies = [
|
|
4793
|
+
"anyhow",
|
|
4794
|
+
"hashbrown 0.16.1",
|
|
4795
|
+
"id-arena",
|
|
4796
|
+
"indexmap 2.13.1",
|
|
4797
|
+
"log",
|
|
4798
|
+
"semver",
|
|
4799
|
+
"serde",
|
|
4800
|
+
"serde_derive",
|
|
4801
|
+
"serde_json",
|
|
4802
|
+
"unicode-xid",
|
|
4803
|
+
"wasmparser 0.245.1",
|
|
4804
|
+
]
|
|
4805
|
+
|
|
4686
4806
|
[[package]]
|
|
4687
4807
|
name = "witx"
|
|
4688
4808
|
version = "0.9.1"
|
|
@@ -4697,15 +4817,25 @@ dependencies = [
|
|
|
4697
4817
|
|
|
4698
4818
|
[[package]]
|
|
4699
4819
|
name = "writeable"
|
|
4700
|
-
version = "0.6.
|
|
4820
|
+
version = "0.6.3"
|
|
4821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4822
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
4823
|
+
|
|
4824
|
+
[[package]]
|
|
4825
|
+
name = "xattr"
|
|
4826
|
+
version = "1.6.1"
|
|
4701
4827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4702
|
-
checksum = "
|
|
4828
|
+
checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
|
|
4829
|
+
dependencies = [
|
|
4830
|
+
"libc",
|
|
4831
|
+
"rustix 1.1.4",
|
|
4832
|
+
]
|
|
4703
4833
|
|
|
4704
4834
|
[[package]]
|
|
4705
4835
|
name = "yoke"
|
|
4706
|
-
version = "0.8.
|
|
4836
|
+
version = "0.8.2"
|
|
4707
4837
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4708
|
-
checksum = "
|
|
4838
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
4709
4839
|
dependencies = [
|
|
4710
4840
|
"stable_deref_trait",
|
|
4711
4841
|
"yoke-derive",
|
|
@@ -4714,9 +4844,9 @@ dependencies = [
|
|
|
4714
4844
|
|
|
4715
4845
|
[[package]]
|
|
4716
4846
|
name = "yoke-derive"
|
|
4717
|
-
version = "0.8.
|
|
4847
|
+
version = "0.8.2"
|
|
4718
4848
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4719
|
-
checksum = "
|
|
4849
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
4720
4850
|
dependencies = [
|
|
4721
4851
|
"proc-macro2",
|
|
4722
4852
|
"quote",
|
|
@@ -4726,18 +4856,18 @@ dependencies = [
|
|
|
4726
4856
|
|
|
4727
4857
|
[[package]]
|
|
4728
4858
|
name = "zerocopy"
|
|
4729
|
-
version = "0.8.
|
|
4859
|
+
version = "0.8.48"
|
|
4730
4860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4731
|
-
checksum = "
|
|
4861
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
4732
4862
|
dependencies = [
|
|
4733
4863
|
"zerocopy-derive",
|
|
4734
4864
|
]
|
|
4735
4865
|
|
|
4736
4866
|
[[package]]
|
|
4737
4867
|
name = "zerocopy-derive"
|
|
4738
|
-
version = "0.8.
|
|
4868
|
+
version = "0.8.48"
|
|
4739
4869
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4740
|
-
checksum = "
|
|
4870
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
4741
4871
|
dependencies = [
|
|
4742
4872
|
"proc-macro2",
|
|
4743
4873
|
"quote",
|
|
@@ -4746,18 +4876,18 @@ dependencies = [
|
|
|
4746
4876
|
|
|
4747
4877
|
[[package]]
|
|
4748
4878
|
name = "zerofrom"
|
|
4749
|
-
version = "0.1.
|
|
4879
|
+
version = "0.1.7"
|
|
4750
4880
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4751
|
-
checksum = "
|
|
4881
|
+
checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
|
|
4752
4882
|
dependencies = [
|
|
4753
4883
|
"zerofrom-derive",
|
|
4754
4884
|
]
|
|
4755
4885
|
|
|
4756
4886
|
[[package]]
|
|
4757
4887
|
name = "zerofrom-derive"
|
|
4758
|
-
version = "0.1.
|
|
4888
|
+
version = "0.1.7"
|
|
4759
4889
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4760
|
-
checksum = "
|
|
4890
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
4761
4891
|
dependencies = [
|
|
4762
4892
|
"proc-macro2",
|
|
4763
4893
|
"quote",
|
|
@@ -4773,9 +4903,9 @@ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
|
4773
4903
|
|
|
4774
4904
|
[[package]]
|
|
4775
4905
|
name = "zerotrie"
|
|
4776
|
-
version = "0.2.
|
|
4906
|
+
version = "0.2.4"
|
|
4777
4907
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4778
|
-
checksum = "
|
|
4908
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
4779
4909
|
dependencies = [
|
|
4780
4910
|
"displaydoc",
|
|
4781
4911
|
"yoke",
|
|
@@ -4784,9 +4914,9 @@ dependencies = [
|
|
|
4784
4914
|
|
|
4785
4915
|
[[package]]
|
|
4786
4916
|
name = "zerovec"
|
|
4787
|
-
version = "0.11.
|
|
4917
|
+
version = "0.11.6"
|
|
4788
4918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4789
|
-
checksum = "
|
|
4919
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
4790
4920
|
dependencies = [
|
|
4791
4921
|
"yoke",
|
|
4792
4922
|
"zerofrom",
|
|
@@ -4795,9 +4925,9 @@ dependencies = [
|
|
|
4795
4925
|
|
|
4796
4926
|
[[package]]
|
|
4797
4927
|
name = "zerovec-derive"
|
|
4798
|
-
version = "0.11.
|
|
4928
|
+
version = "0.11.3"
|
|
4799
4929
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4800
|
-
checksum = "
|
|
4930
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
4801
4931
|
dependencies = [
|
|
4802
4932
|
"proc-macro2",
|
|
4803
4933
|
"quote",
|