act-cli 0.8.2__tar.gz → 0.9.0__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.8.2 → act_cli-0.9.0}/Cargo.lock +181 -349
- {act_cli-0.8.2 → act_cli-0.9.0}/Cargo.toml +2 -2
- {act_cli-0.8.2 → act_cli-0.9.0}/PKG-INFO +3 -3
- {act_cli-0.8.2/act-cli → act_cli-0.9.0}/README.md +2 -2
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/Cargo.toml +6 -2
- {act_cli-0.8.2/crates/act-store → act_cli-0.9.0/act-cli}/README.md +2 -2
- act_cli-0.9.0/act-cli/src/config.rs +769 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/format.rs +181 -31
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/main.rs +334 -100
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/rmcp_bridge.rs +15 -1
- act_cli-0.9.0/act-cli/src/runtime/consent.rs +206 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/runtime/effective.rs +155 -60
- act_cli-0.9.0/act-cli/src/runtime/elicit.rs +164 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/runtime/fs_matcher.rs +124 -1
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/runtime/fs_policy.rs +364 -105
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/runtime/http_client.rs +5 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/runtime/http_policy.rs +133 -6
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/runtime/mod.rs +22 -2
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/runtime/network.rs +44 -13
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/runtime/sockets_policy.rs +137 -28
- {act_cli-0.8.2 → act_cli-0.9.0}/crates/act-store/Cargo.toml +1 -1
- {act_cli-0.8.2 → act_cli-0.9.0/crates/act-store}/README.md +2 -2
- act_cli-0.8.2/act-cli/src/config.rs +0 -692
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/build.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/http.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/resolve.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/runtime/bindings/mod.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/runtime/sessions.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/wit/deps/act-core/act-core.wit +0 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/wit/deps/act-tools/act-tools.wit +0 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/wit/deps.lock +0 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/wit/deps.toml +0 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/wit/world.wit +0 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/crates/act-store/src/fetch.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/crates/act-store/src/index.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/crates/act-store/src/layout.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/crates/act-store/src/lib.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/crates/act-store/src/lock.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/crates/act-store/src/provenance.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/crates/act-store/src/reference.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/crates/act-store/src/referrer.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/crates/act-store/src/store.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.9.0}/pyproject.toml +0 -0
|
@@ -4,7 +4,7 @@ version = 4
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "act-build"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.9.0"
|
|
8
8
|
dependencies = [
|
|
9
9
|
"act-types",
|
|
10
10
|
"anyhow",
|
|
@@ -37,7 +37,7 @@ dependencies = [
|
|
|
37
37
|
|
|
38
38
|
[[package]]
|
|
39
39
|
name = "act-cli"
|
|
40
|
-
version = "0.
|
|
40
|
+
version = "0.9.0"
|
|
41
41
|
dependencies = [
|
|
42
42
|
"act-store",
|
|
43
43
|
"act-types",
|
|
@@ -63,6 +63,7 @@ dependencies = [
|
|
|
63
63
|
"regex",
|
|
64
64
|
"reqwest 0.13.4",
|
|
65
65
|
"rmcp",
|
|
66
|
+
"schemars 1.2.1",
|
|
66
67
|
"serde",
|
|
67
68
|
"serde_json",
|
|
68
69
|
"serde_with",
|
|
@@ -73,6 +74,7 @@ dependencies = [
|
|
|
73
74
|
"tokio",
|
|
74
75
|
"tokio-stream",
|
|
75
76
|
"toml 1.1.2+spec-1.1.0",
|
|
77
|
+
"toon-format",
|
|
76
78
|
"tracing",
|
|
77
79
|
"tracing-subscriber",
|
|
78
80
|
"url",
|
|
@@ -84,7 +86,7 @@ dependencies = [
|
|
|
84
86
|
|
|
85
87
|
[[package]]
|
|
86
88
|
name = "act-store"
|
|
87
|
-
version = "0.
|
|
89
|
+
version = "0.9.0"
|
|
88
90
|
dependencies = [
|
|
89
91
|
"chrono",
|
|
90
92
|
"dirs",
|
|
@@ -105,9 +107,9 @@ dependencies = [
|
|
|
105
107
|
|
|
106
108
|
[[package]]
|
|
107
109
|
name = "act-types"
|
|
108
|
-
version = "0.
|
|
110
|
+
version = "0.11.0"
|
|
109
111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
|
-
checksum = "
|
|
112
|
+
checksum = "c9a69bc6b081f638fec734f145699a58e00e3fb5df54ec5d6ea015d58f3440b0"
|
|
111
113
|
dependencies = [
|
|
112
114
|
"base64",
|
|
113
115
|
"ciborium",
|
|
@@ -329,9 +331,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
|
329
331
|
|
|
330
332
|
[[package]]
|
|
331
333
|
name = "bitflags"
|
|
332
|
-
version = "2.
|
|
334
|
+
version = "2.13.0"
|
|
333
335
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
-
checksum = "
|
|
336
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
335
337
|
|
|
336
338
|
[[package]]
|
|
337
339
|
name = "block-buffer"
|
|
@@ -344,9 +346,9 @@ dependencies = [
|
|
|
344
346
|
|
|
345
347
|
[[package]]
|
|
346
348
|
name = "block-buffer"
|
|
347
|
-
version = "0.12.
|
|
349
|
+
version = "0.12.1"
|
|
348
350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
|
-
checksum = "
|
|
351
|
+
checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
|
|
350
352
|
dependencies = [
|
|
351
353
|
"hybrid-array",
|
|
352
354
|
]
|
|
@@ -381,15 +383,15 @@ dependencies = [
|
|
|
381
383
|
|
|
382
384
|
[[package]]
|
|
383
385
|
name = "bytes"
|
|
384
|
-
version = "1.
|
|
386
|
+
version = "1.12.0"
|
|
385
387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
-
checksum = "
|
|
388
|
+
checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
|
|
387
389
|
|
|
388
390
|
[[package]]
|
|
389
391
|
name = "bytesize"
|
|
390
|
-
version = "2.
|
|
392
|
+
version = "2.4.0"
|
|
391
393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
-
checksum = "
|
|
394
|
+
checksum = "49e78e506b9d7633710dab98996f22f95f3d0f488e8f1aa162830556ed9fc14d"
|
|
393
395
|
|
|
394
396
|
[[package]]
|
|
395
397
|
name = "cap-fs-ext"
|
|
@@ -461,9 +463,9 @@ dependencies = [
|
|
|
461
463
|
|
|
462
464
|
[[package]]
|
|
463
465
|
name = "cc"
|
|
464
|
-
version = "1.2.
|
|
466
|
+
version = "1.2.64"
|
|
465
467
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
-
checksum = "
|
|
468
|
+
checksum = "dad887fd958be91b5098c0248def011f4523ab786cd411be668777e55063501f"
|
|
467
469
|
dependencies = [
|
|
468
470
|
"find-msvc-tools",
|
|
469
471
|
"jobserver",
|
|
@@ -496,9 +498,9 @@ dependencies = [
|
|
|
496
498
|
|
|
497
499
|
[[package]]
|
|
498
500
|
name = "chrono"
|
|
499
|
-
version = "0.4.
|
|
501
|
+
version = "0.4.45"
|
|
500
502
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
-
checksum = "
|
|
503
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
502
504
|
dependencies = [
|
|
503
505
|
"iana-time-zone",
|
|
504
506
|
"js-sys",
|
|
@@ -699,27 +701,27 @@ dependencies = [
|
|
|
699
701
|
|
|
700
702
|
[[package]]
|
|
701
703
|
name = "cranelift-assembler-x64"
|
|
702
|
-
version = "0.132.
|
|
704
|
+
version = "0.132.2"
|
|
703
705
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
-
checksum = "
|
|
706
|
+
checksum = "0bc293b86236abcc45f2f72e2d18e2bd636f2a08b75eb286bae31e71e1430c91"
|
|
705
707
|
dependencies = [
|
|
706
708
|
"cranelift-assembler-x64-meta",
|
|
707
709
|
]
|
|
708
710
|
|
|
709
711
|
[[package]]
|
|
710
712
|
name = "cranelift-assembler-x64-meta"
|
|
711
|
-
version = "0.132.
|
|
713
|
+
version = "0.132.2"
|
|
712
714
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
-
checksum = "
|
|
715
|
+
checksum = "b954c826eddaf1b001402cb8aecf1764c6f6d637ba69fb9e3311f1ebac965be6"
|
|
714
716
|
dependencies = [
|
|
715
717
|
"cranelift-srcgen",
|
|
716
718
|
]
|
|
717
719
|
|
|
718
720
|
[[package]]
|
|
719
721
|
name = "cranelift-bforest"
|
|
720
|
-
version = "0.132.
|
|
722
|
+
version = "0.132.2"
|
|
721
723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
722
|
-
checksum = "
|
|
724
|
+
checksum = "4053fa2575ef4a5c35d2708533df2200400ae979226cea9cc92a578b811bd4e7"
|
|
723
725
|
dependencies = [
|
|
724
726
|
"cranelift-entity",
|
|
725
727
|
"wasmtime-internal-core",
|
|
@@ -727,9 +729,9 @@ dependencies = [
|
|
|
727
729
|
|
|
728
730
|
[[package]]
|
|
729
731
|
name = "cranelift-bitset"
|
|
730
|
-
version = "0.132.
|
|
732
|
+
version = "0.132.2"
|
|
731
733
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
-
checksum = "
|
|
734
|
+
checksum = "d216663191014aa63e1d2cffd058e609eaf207646d40b739d88250f65b2c4f69"
|
|
733
735
|
dependencies = [
|
|
734
736
|
"serde",
|
|
735
737
|
"serde_derive",
|
|
@@ -738,9 +740,9 @@ dependencies = [
|
|
|
738
740
|
|
|
739
741
|
[[package]]
|
|
740
742
|
name = "cranelift-codegen"
|
|
741
|
-
version = "0.132.
|
|
743
|
+
version = "0.132.2"
|
|
742
744
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
743
|
-
checksum = "
|
|
745
|
+
checksum = "9a5e7e7aad6a425a51da1ad7ab9e5d280ea97eb7c7c4545fafb567915a75aadb"
|
|
744
746
|
dependencies = [
|
|
745
747
|
"bumpalo",
|
|
746
748
|
"cranelift-assembler-x64",
|
|
@@ -766,9 +768,9 @@ dependencies = [
|
|
|
766
768
|
|
|
767
769
|
[[package]]
|
|
768
770
|
name = "cranelift-codegen-meta"
|
|
769
|
-
version = "0.132.
|
|
771
|
+
version = "0.132.2"
|
|
770
772
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
-
checksum = "
|
|
773
|
+
checksum = "c421d80a9a85f806cb02a2983b5b5368a335c319795b1f1b4b771a24479af5b0"
|
|
772
774
|
dependencies = [
|
|
773
775
|
"cranelift-assembler-x64-meta",
|
|
774
776
|
"cranelift-codegen-shared",
|
|
@@ -779,24 +781,24 @@ dependencies = [
|
|
|
779
781
|
|
|
780
782
|
[[package]]
|
|
781
783
|
name = "cranelift-codegen-shared"
|
|
782
|
-
version = "0.132.
|
|
784
|
+
version = "0.132.2"
|
|
783
785
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
-
checksum = "
|
|
786
|
+
checksum = "78fdb83ab012d0ee6a44ced7ca8788a444f17cf821c62f95d6ef87c9f0262518"
|
|
785
787
|
|
|
786
788
|
[[package]]
|
|
787
789
|
name = "cranelift-control"
|
|
788
|
-
version = "0.132.
|
|
790
|
+
version = "0.132.2"
|
|
789
791
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
-
checksum = "
|
|
792
|
+
checksum = "1b75adc6eb7bb4ac6365106afb6cac4f12fe1ddfa02ddc9fd7015ca1469b471b"
|
|
791
793
|
dependencies = [
|
|
792
794
|
"arbitrary",
|
|
793
795
|
]
|
|
794
796
|
|
|
795
797
|
[[package]]
|
|
796
798
|
name = "cranelift-entity"
|
|
797
|
-
version = "0.132.
|
|
799
|
+
version = "0.132.2"
|
|
798
800
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
799
|
-
checksum = "
|
|
801
|
+
checksum = "668e56db75a54816cbdd7c7b7bfc558b08bf7b2cda9d0846491517e92f3b393b"
|
|
800
802
|
dependencies = [
|
|
801
803
|
"cranelift-bitset",
|
|
802
804
|
"serde",
|
|
@@ -806,9 +808,9 @@ dependencies = [
|
|
|
806
808
|
|
|
807
809
|
[[package]]
|
|
808
810
|
name = "cranelift-frontend"
|
|
809
|
-
version = "0.132.
|
|
811
|
+
version = "0.132.2"
|
|
810
812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
811
|
-
checksum = "
|
|
813
|
+
checksum = "c63892dc1cc3ae48680183fa66997f60ffe7f1e200c8d390f8ee66edff4aef5a"
|
|
812
814
|
dependencies = [
|
|
813
815
|
"cranelift-codegen",
|
|
814
816
|
"log",
|
|
@@ -818,15 +820,15 @@ dependencies = [
|
|
|
818
820
|
|
|
819
821
|
[[package]]
|
|
820
822
|
name = "cranelift-isle"
|
|
821
|
-
version = "0.132.
|
|
823
|
+
version = "0.132.2"
|
|
822
824
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
-
checksum = "
|
|
825
|
+
checksum = "94eaf429c32a12715429c7c6ddfdd43c170f4cdd7e97bfa507bd68a652091087"
|
|
824
826
|
|
|
825
827
|
[[package]]
|
|
826
828
|
name = "cranelift-native"
|
|
827
|
-
version = "0.132.
|
|
829
|
+
version = "0.132.2"
|
|
828
830
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
829
|
-
checksum = "
|
|
831
|
+
checksum = "cd77674904ae9be11c1e1efdba54788b59f3d6658d747b97534bfbba2909aacc"
|
|
830
832
|
dependencies = [
|
|
831
833
|
"cranelift-codegen",
|
|
832
834
|
"libc",
|
|
@@ -835,9 +837,9 @@ dependencies = [
|
|
|
835
837
|
|
|
836
838
|
[[package]]
|
|
837
839
|
name = "cranelift-srcgen"
|
|
838
|
-
version = "0.132.
|
|
840
|
+
version = "0.132.2"
|
|
839
841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
-
checksum = "
|
|
842
|
+
checksum = "cba7c0ff5941842c36653da155580ce41e675c204a67ac1b4e1c478a9347bbb7"
|
|
841
843
|
|
|
842
844
|
[[package]]
|
|
843
845
|
name = "crc32fast"
|
|
@@ -982,7 +984,6 @@ version = "0.5.8"
|
|
|
982
984
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
983
985
|
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
984
986
|
dependencies = [
|
|
985
|
-
"powerfmt",
|
|
986
987
|
"serde_core",
|
|
987
988
|
]
|
|
988
989
|
|
|
@@ -1033,7 +1034,7 @@ version = "0.11.3"
|
|
|
1033
1034
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
1035
|
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
1035
1036
|
dependencies = [
|
|
1036
|
-
"block-buffer 0.12.
|
|
1037
|
+
"block-buffer 0.12.1",
|
|
1037
1038
|
"const-oid",
|
|
1038
1039
|
"crypto-common 0.2.2",
|
|
1039
1040
|
]
|
|
@@ -1202,12 +1203,6 @@ version = "1.0.7"
|
|
|
1202
1203
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
1204
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1204
1205
|
|
|
1205
|
-
[[package]]
|
|
1206
|
-
name = "foldhash"
|
|
1207
|
-
version = "0.1.5"
|
|
1208
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
-
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1210
|
-
|
|
1211
1206
|
[[package]]
|
|
1212
1207
|
name = "foldhash"
|
|
1213
1208
|
version = "0.2.0"
|
|
@@ -1391,25 +1386,22 @@ dependencies = [
|
|
|
1391
1386
|
|
|
1392
1387
|
[[package]]
|
|
1393
1388
|
name = "getrandom"
|
|
1394
|
-
version = "0.4.
|
|
1389
|
+
version = "0.4.3"
|
|
1395
1390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1396
|
-
checksum = "
|
|
1391
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
1397
1392
|
dependencies = [
|
|
1398
1393
|
"cfg-if",
|
|
1399
1394
|
"libc",
|
|
1400
1395
|
"r-efi 6.0.0",
|
|
1401
1396
|
"rand_core 0.10.1",
|
|
1402
|
-
"wasip2",
|
|
1403
|
-
"wasip3",
|
|
1404
1397
|
]
|
|
1405
1398
|
|
|
1406
1399
|
[[package]]
|
|
1407
1400
|
name = "getset"
|
|
1408
|
-
version = "0.1.
|
|
1401
|
+
version = "0.1.7"
|
|
1409
1402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1410
|
-
checksum = "
|
|
1403
|
+
checksum = "6cf442baaabe4213ce7d1239afc26c039180b6456da2cededa316ae2c8a77a77"
|
|
1411
1404
|
dependencies = [
|
|
1412
|
-
"proc-macro-error2",
|
|
1413
1405
|
"proc-macro2",
|
|
1414
1406
|
"quote",
|
|
1415
1407
|
"syn",
|
|
@@ -1442,9 +1434,9 @@ dependencies = [
|
|
|
1442
1434
|
|
|
1443
1435
|
[[package]]
|
|
1444
1436
|
name = "h2"
|
|
1445
|
-
version = "0.4.
|
|
1437
|
+
version = "0.4.15"
|
|
1446
1438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1447
|
-
checksum = "
|
|
1439
|
+
checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
|
|
1448
1440
|
dependencies = [
|
|
1449
1441
|
"atomic-waker",
|
|
1450
1442
|
"bytes",
|
|
@@ -1476,15 +1468,6 @@ version = "0.12.3"
|
|
|
1476
1468
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1477
1469
|
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
1478
1470
|
|
|
1479
|
-
[[package]]
|
|
1480
|
-
name = "hashbrown"
|
|
1481
|
-
version = "0.15.5"
|
|
1482
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1483
|
-
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1484
|
-
dependencies = [
|
|
1485
|
-
"foldhash 0.1.5",
|
|
1486
|
-
]
|
|
1487
|
-
|
|
1488
1471
|
[[package]]
|
|
1489
1472
|
name = "hashbrown"
|
|
1490
1473
|
version = "0.16.1"
|
|
@@ -1497,7 +1480,7 @@ version = "0.17.1"
|
|
|
1497
1480
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1498
1481
|
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
1499
1482
|
dependencies = [
|
|
1500
|
-
"foldhash
|
|
1483
|
+
"foldhash",
|
|
1501
1484
|
"serde",
|
|
1502
1485
|
"serde_core",
|
|
1503
1486
|
]
|
|
@@ -1522,9 +1505,9 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
|
1522
1505
|
|
|
1523
1506
|
[[package]]
|
|
1524
1507
|
name = "http"
|
|
1525
|
-
version = "1.4.
|
|
1508
|
+
version = "1.4.2"
|
|
1526
1509
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1527
|
-
checksum = "
|
|
1510
|
+
checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
|
|
1528
1511
|
dependencies = [
|
|
1529
1512
|
"bytes",
|
|
1530
1513
|
"itoa",
|
|
@@ -1979,13 +1962,12 @@ dependencies = [
|
|
|
1979
1962
|
|
|
1980
1963
|
[[package]]
|
|
1981
1964
|
name = "js-sys"
|
|
1982
|
-
version = "0.3.
|
|
1965
|
+
version = "0.3.102"
|
|
1983
1966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
|
-
checksum = "
|
|
1967
|
+
checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
|
|
1985
1968
|
dependencies = [
|
|
1986
1969
|
"cfg-if",
|
|
1987
1970
|
"futures-util",
|
|
1988
|
-
"once_cell",
|
|
1989
1971
|
"wasm-bindgen",
|
|
1990
1972
|
]
|
|
1991
1973
|
|
|
@@ -2098,9 +2080,9 @@ dependencies = [
|
|
|
2098
2080
|
|
|
2099
2081
|
[[package]]
|
|
2100
2082
|
name = "log"
|
|
2101
|
-
version = "0.4.
|
|
2083
|
+
version = "0.4.32"
|
|
2102
2084
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2103
|
-
checksum = "
|
|
2085
|
+
checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
|
|
2104
2086
|
|
|
2105
2087
|
[[package]]
|
|
2106
2088
|
name = "lru-slab"
|
|
@@ -2140,9 +2122,9 @@ checksum = "4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4"
|
|
|
2140
2122
|
|
|
2141
2123
|
[[package]]
|
|
2142
2124
|
name = "memchr"
|
|
2143
|
-
version = "2.8.
|
|
2125
|
+
version = "2.8.2"
|
|
2144
2126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2145
|
-
checksum = "
|
|
2127
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
2146
2128
|
|
|
2147
2129
|
[[package]]
|
|
2148
2130
|
name = "memfd"
|
|
@@ -2167,9 +2149,9 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
|
2167
2149
|
|
|
2168
2150
|
[[package]]
|
|
2169
2151
|
name = "minijinja"
|
|
2170
|
-
version = "2.
|
|
2152
|
+
version = "2.21.0"
|
|
2171
2153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2172
|
-
checksum = "
|
|
2154
|
+
checksum = "cb3d648e68cea56d9858d535ee28f9538404e2dd8cb08ed0bd05dca379477f39"
|
|
2173
2155
|
dependencies = [
|
|
2174
2156
|
"memo-map",
|
|
2175
2157
|
"serde",
|
|
@@ -2438,38 +2420,6 @@ dependencies = [
|
|
|
2438
2420
|
"zerocopy",
|
|
2439
2421
|
]
|
|
2440
2422
|
|
|
2441
|
-
[[package]]
|
|
2442
|
-
name = "prettyplease"
|
|
2443
|
-
version = "0.2.37"
|
|
2444
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2445
|
-
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
2446
|
-
dependencies = [
|
|
2447
|
-
"proc-macro2",
|
|
2448
|
-
"syn",
|
|
2449
|
-
]
|
|
2450
|
-
|
|
2451
|
-
[[package]]
|
|
2452
|
-
name = "proc-macro-error-attr2"
|
|
2453
|
-
version = "2.0.0"
|
|
2454
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2455
|
-
checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
|
|
2456
|
-
dependencies = [
|
|
2457
|
-
"proc-macro2",
|
|
2458
|
-
"quote",
|
|
2459
|
-
]
|
|
2460
|
-
|
|
2461
|
-
[[package]]
|
|
2462
|
-
name = "proc-macro-error2"
|
|
2463
|
-
version = "2.0.1"
|
|
2464
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2465
|
-
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
|
|
2466
|
-
dependencies = [
|
|
2467
|
-
"proc-macro-error-attr2",
|
|
2468
|
-
"proc-macro2",
|
|
2469
|
-
"quote",
|
|
2470
|
-
"syn",
|
|
2471
|
-
]
|
|
2472
|
-
|
|
2473
2423
|
[[package]]
|
|
2474
2424
|
name = "proc-macro2"
|
|
2475
2425
|
version = "1.0.106"
|
|
@@ -2495,9 +2445,9 @@ dependencies = [
|
|
|
2495
2445
|
|
|
2496
2446
|
[[package]]
|
|
2497
2447
|
name = "pulley-interpreter"
|
|
2498
|
-
version = "45.0.
|
|
2448
|
+
version = "45.0.2"
|
|
2499
2449
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2500
|
-
checksum = "
|
|
2450
|
+
checksum = "2d9880c1985ccccaed3646b0ef793dc39a4b117403ed4afc6fa3ef6027c5200f"
|
|
2501
2451
|
dependencies = [
|
|
2502
2452
|
"cranelift-bitset",
|
|
2503
2453
|
"log",
|
|
@@ -2507,9 +2457,9 @@ dependencies = [
|
|
|
2507
2457
|
|
|
2508
2458
|
[[package]]
|
|
2509
2459
|
name = "pulley-macros"
|
|
2510
|
-
version = "45.0.
|
|
2460
|
+
version = "45.0.2"
|
|
2511
2461
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2512
|
-
checksum = "
|
|
2462
|
+
checksum = "ee249346855ad102580e474da5463f86f8a7d449e6d49e00fefb304e448e2983"
|
|
2513
2463
|
dependencies = [
|
|
2514
2464
|
"proc-macro2",
|
|
2515
2465
|
"quote",
|
|
@@ -2610,7 +2560,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2610
2560
|
checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
|
|
2611
2561
|
dependencies = [
|
|
2612
2562
|
"chacha20",
|
|
2613
|
-
"getrandom 0.4.
|
|
2563
|
+
"getrandom 0.4.3",
|
|
2614
2564
|
"rand_core 0.10.1",
|
|
2615
2565
|
]
|
|
2616
2566
|
|
|
@@ -2735,9 +2685,9 @@ dependencies = [
|
|
|
2735
2685
|
|
|
2736
2686
|
[[package]]
|
|
2737
2687
|
name = "regex"
|
|
2738
|
-
version = "1.12.
|
|
2688
|
+
version = "1.12.4"
|
|
2739
2689
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2740
|
-
checksum = "
|
|
2690
|
+
checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
|
|
2741
2691
|
dependencies = [
|
|
2742
2692
|
"aho-corasick",
|
|
2743
2693
|
"memchr",
|
|
@@ -2758,9 +2708,9 @@ dependencies = [
|
|
|
2758
2708
|
|
|
2759
2709
|
[[package]]
|
|
2760
2710
|
name = "regex-syntax"
|
|
2761
|
-
version = "0.8.
|
|
2711
|
+
version = "0.8.11"
|
|
2762
2712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2763
|
-
checksum = "
|
|
2713
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
2764
2714
|
|
|
2765
2715
|
[[package]]
|
|
2766
2716
|
name = "reqwest"
|
|
@@ -2885,6 +2835,7 @@ dependencies = [
|
|
|
2885
2835
|
"tokio-util",
|
|
2886
2836
|
"tower-service",
|
|
2887
2837
|
"tracing",
|
|
2838
|
+
"url",
|
|
2888
2839
|
"uuid",
|
|
2889
2840
|
]
|
|
2890
2841
|
|
|
@@ -3175,6 +3126,7 @@ version = "1.0.150"
|
|
|
3175
3126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3176
3127
|
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
3177
3128
|
dependencies = [
|
|
3129
|
+
"indexmap 2.14.0",
|
|
3178
3130
|
"itoa",
|
|
3179
3131
|
"memchr",
|
|
3180
3132
|
"serde",
|
|
@@ -3216,9 +3168,9 @@ dependencies = [
|
|
|
3216
3168
|
|
|
3217
3169
|
[[package]]
|
|
3218
3170
|
name = "serde_with"
|
|
3219
|
-
version = "3.
|
|
3171
|
+
version = "3.21.0"
|
|
3220
3172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3221
|
-
checksum = "
|
|
3173
|
+
checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c"
|
|
3222
3174
|
dependencies = [
|
|
3223
3175
|
"base64",
|
|
3224
3176
|
"bs58",
|
|
@@ -3236,9 +3188,9 @@ dependencies = [
|
|
|
3236
3188
|
|
|
3237
3189
|
[[package]]
|
|
3238
3190
|
name = "serde_with_macros"
|
|
3239
|
-
version = "3.
|
|
3191
|
+
version = "3.21.0"
|
|
3240
3192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3241
|
-
checksum = "
|
|
3193
|
+
checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660"
|
|
3242
3194
|
dependencies = [
|
|
3243
3195
|
"darling 0.23.0",
|
|
3244
3196
|
"proc-macro2",
|
|
@@ -3341,9 +3293,9 @@ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
|
3341
3293
|
|
|
3342
3294
|
[[package]]
|
|
3343
3295
|
name = "smallvec"
|
|
3344
|
-
version = "1.15.
|
|
3296
|
+
version = "1.15.2"
|
|
3345
3297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3346
|
-
checksum = "
|
|
3298
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
3347
3299
|
dependencies = [
|
|
3348
3300
|
"serde",
|
|
3349
3301
|
]
|
|
@@ -3428,9 +3380,9 @@ dependencies = [
|
|
|
3428
3380
|
|
|
3429
3381
|
[[package]]
|
|
3430
3382
|
name = "syn"
|
|
3431
|
-
version = "2.0.
|
|
3383
|
+
version = "2.0.118"
|
|
3432
3384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3433
|
-
checksum = "
|
|
3385
|
+
checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
|
|
3434
3386
|
dependencies = [
|
|
3435
3387
|
"proc-macro2",
|
|
3436
3388
|
"quote",
|
|
@@ -3481,7 +3433,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3481
3433
|
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
3482
3434
|
dependencies = [
|
|
3483
3435
|
"fastrand",
|
|
3484
|
-
"getrandom 0.4.
|
|
3436
|
+
"getrandom 0.4.3",
|
|
3485
3437
|
"once_cell",
|
|
3486
3438
|
"rustix",
|
|
3487
3439
|
"windows-sys 0.61.2",
|
|
@@ -3547,12 +3499,11 @@ dependencies = [
|
|
|
3547
3499
|
|
|
3548
3500
|
[[package]]
|
|
3549
3501
|
name = "time"
|
|
3550
|
-
version = "0.3.
|
|
3502
|
+
version = "0.3.49"
|
|
3551
3503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3552
|
-
checksum = "
|
|
3504
|
+
checksum = "711a53c2d47bbd818258c498c8dbfe186a2526c631495cfe7e078567f86b8469"
|
|
3553
3505
|
dependencies = [
|
|
3554
3506
|
"deranged",
|
|
3555
|
-
"itoa",
|
|
3556
3507
|
"num-conv",
|
|
3557
3508
|
"powerfmt",
|
|
3558
3509
|
"serde_core",
|
|
@@ -3562,15 +3513,15 @@ dependencies = [
|
|
|
3562
3513
|
|
|
3563
3514
|
[[package]]
|
|
3564
3515
|
name = "time-core"
|
|
3565
|
-
version = "0.1.
|
|
3516
|
+
version = "0.1.9"
|
|
3566
3517
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3567
|
-
checksum = "
|
|
3518
|
+
checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
|
|
3568
3519
|
|
|
3569
3520
|
[[package]]
|
|
3570
3521
|
name = "time-macros"
|
|
3571
|
-
version = "0.2.
|
|
3522
|
+
version = "0.2.29"
|
|
3572
3523
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3573
|
-
checksum = "
|
|
3524
|
+
checksum = "71c652a3727a9cbb9a02f707f530b618ce00d0ccd762009c8c23bd191df3c17d"
|
|
3574
3525
|
dependencies = [
|
|
3575
3526
|
"num-conv",
|
|
3576
3527
|
"time-core",
|
|
@@ -3726,6 +3677,18 @@ version = "1.1.1+spec-1.1.0"
|
|
|
3726
3677
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3727
3678
|
checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
|
|
3728
3679
|
|
|
3680
|
+
[[package]]
|
|
3681
|
+
name = "toon-format"
|
|
3682
|
+
version = "0.5.0"
|
|
3683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3684
|
+
checksum = "8f89570c1a68d73941f728cca32a4345b2ffca36667ad921af336c60309a3e7e"
|
|
3685
|
+
dependencies = [
|
|
3686
|
+
"indexmap 2.14.0",
|
|
3687
|
+
"serde",
|
|
3688
|
+
"serde_json",
|
|
3689
|
+
"thiserror 2.0.18",
|
|
3690
|
+
]
|
|
3691
|
+
|
|
3729
3692
|
[[package]]
|
|
3730
3693
|
name = "tower"
|
|
3731
3694
|
version = "0.5.3"
|
|
@@ -3923,11 +3886,11 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
3923
3886
|
|
|
3924
3887
|
[[package]]
|
|
3925
3888
|
name = "uuid"
|
|
3926
|
-
version = "1.23.
|
|
3889
|
+
version = "1.23.3"
|
|
3927
3890
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3928
|
-
checksum = "
|
|
3891
|
+
checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
|
|
3929
3892
|
dependencies = [
|
|
3930
|
-
"getrandom 0.4.
|
|
3893
|
+
"getrandom 0.4.3",
|
|
3931
3894
|
"js-sys",
|
|
3932
3895
|
"wasm-bindgen",
|
|
3933
3896
|
]
|
|
@@ -3971,27 +3934,18 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
|
3971
3934
|
|
|
3972
3935
|
[[package]]
|
|
3973
3936
|
name = "wasip2"
|
|
3974
|
-
version = "1.0.
|
|
3937
|
+
version = "1.0.4+wasi-0.2.12"
|
|
3975
3938
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3976
|
-
checksum = "
|
|
3939
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
3977
3940
|
dependencies = [
|
|
3978
|
-
"wit-bindgen
|
|
3979
|
-
]
|
|
3980
|
-
|
|
3981
|
-
[[package]]
|
|
3982
|
-
name = "wasip3"
|
|
3983
|
-
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
3984
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3985
|
-
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
3986
|
-
dependencies = [
|
|
3987
|
-
"wit-bindgen 0.51.0",
|
|
3941
|
+
"wit-bindgen",
|
|
3988
3942
|
]
|
|
3989
3943
|
|
|
3990
3944
|
[[package]]
|
|
3991
3945
|
name = "wasm-bindgen"
|
|
3992
|
-
version = "0.2.
|
|
3946
|
+
version = "0.2.125"
|
|
3993
3947
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3994
|
-
checksum = "
|
|
3948
|
+
checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
|
|
3995
3949
|
dependencies = [
|
|
3996
3950
|
"cfg-if",
|
|
3997
3951
|
"once_cell",
|
|
@@ -4002,9 +3956,9 @@ dependencies = [
|
|
|
4002
3956
|
|
|
4003
3957
|
[[package]]
|
|
4004
3958
|
name = "wasm-bindgen-futures"
|
|
4005
|
-
version = "0.4.
|
|
3959
|
+
version = "0.4.75"
|
|
4006
3960
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4007
|
-
checksum = "
|
|
3961
|
+
checksum = "503b14d284f2c8dac03b819967e155ea753f573586193b2b2c95990cb5d69280"
|
|
4008
3962
|
dependencies = [
|
|
4009
3963
|
"js-sys",
|
|
4010
3964
|
"wasm-bindgen",
|
|
@@ -4012,9 +3966,9 @@ dependencies = [
|
|
|
4012
3966
|
|
|
4013
3967
|
[[package]]
|
|
4014
3968
|
name = "wasm-bindgen-macro"
|
|
4015
|
-
version = "0.2.
|
|
3969
|
+
version = "0.2.125"
|
|
4016
3970
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4017
|
-
checksum = "
|
|
3971
|
+
checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
|
|
4018
3972
|
dependencies = [
|
|
4019
3973
|
"quote",
|
|
4020
3974
|
"wasm-bindgen-macro-support",
|
|
@@ -4022,9 +3976,9 @@ dependencies = [
|
|
|
4022
3976
|
|
|
4023
3977
|
[[package]]
|
|
4024
3978
|
name = "wasm-bindgen-macro-support"
|
|
4025
|
-
version = "0.2.
|
|
3979
|
+
version = "0.2.125"
|
|
4026
3980
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4027
|
-
checksum = "
|
|
3981
|
+
checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
|
|
4028
3982
|
dependencies = [
|
|
4029
3983
|
"bumpalo",
|
|
4030
3984
|
"proc-macro2",
|
|
@@ -4035,9 +3989,9 @@ dependencies = [
|
|
|
4035
3989
|
|
|
4036
3990
|
[[package]]
|
|
4037
3991
|
name = "wasm-bindgen-shared"
|
|
4038
|
-
version = "0.2.
|
|
3992
|
+
version = "0.2.125"
|
|
4039
3993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4040
|
-
checksum = "
|
|
3994
|
+
checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
|
|
4041
3995
|
dependencies = [
|
|
4042
3996
|
"unicode-ident",
|
|
4043
3997
|
]
|
|
@@ -4059,16 +4013,6 @@ dependencies = [
|
|
|
4059
4013
|
"wat",
|
|
4060
4014
|
]
|
|
4061
4015
|
|
|
4062
|
-
[[package]]
|
|
4063
|
-
name = "wasm-encoder"
|
|
4064
|
-
version = "0.244.0"
|
|
4065
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4066
|
-
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
4067
|
-
dependencies = [
|
|
4068
|
-
"leb128fmt",
|
|
4069
|
-
"wasmparser 0.244.0",
|
|
4070
|
-
]
|
|
4071
|
-
|
|
4072
4016
|
[[package]]
|
|
4073
4017
|
name = "wasm-encoder"
|
|
4074
4018
|
version = "0.248.0"
|
|
@@ -4091,24 +4035,12 @@ dependencies = [
|
|
|
4091
4035
|
|
|
4092
4036
|
[[package]]
|
|
4093
4037
|
name = "wasm-encoder"
|
|
4094
|
-
version = "0.
|
|
4038
|
+
version = "0.252.0"
|
|
4095
4039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4096
|
-
checksum = "
|
|
4040
|
+
checksum = "8185ae345fa5687c054626ff9a50e7089797a343d9904d1dc9820eb4c4d3196f"
|
|
4097
4041
|
dependencies = [
|
|
4098
4042
|
"leb128fmt",
|
|
4099
|
-
"wasmparser 0.
|
|
4100
|
-
]
|
|
4101
|
-
|
|
4102
|
-
[[package]]
|
|
4103
|
-
name = "wasm-metadata"
|
|
4104
|
-
version = "0.244.0"
|
|
4105
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4106
|
-
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
4107
|
-
dependencies = [
|
|
4108
|
-
"anyhow",
|
|
4109
|
-
"indexmap 2.14.0",
|
|
4110
|
-
"wasm-encoder 0.244.0",
|
|
4111
|
-
"wasmparser 0.244.0",
|
|
4043
|
+
"wasmparser 0.252.0",
|
|
4112
4044
|
]
|
|
4113
4045
|
|
|
4114
4046
|
[[package]]
|
|
@@ -4124,18 +4056,6 @@ dependencies = [
|
|
|
4124
4056
|
"web-sys",
|
|
4125
4057
|
]
|
|
4126
4058
|
|
|
4127
|
-
[[package]]
|
|
4128
|
-
name = "wasmparser"
|
|
4129
|
-
version = "0.244.0"
|
|
4130
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4131
|
-
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
4132
|
-
dependencies = [
|
|
4133
|
-
"bitflags",
|
|
4134
|
-
"hashbrown 0.15.5",
|
|
4135
|
-
"indexmap 2.14.0",
|
|
4136
|
-
"semver",
|
|
4137
|
-
]
|
|
4138
|
-
|
|
4139
4059
|
[[package]]
|
|
4140
4060
|
name = "wasmparser"
|
|
4141
4061
|
version = "0.248.0"
|
|
@@ -4164,9 +4084,9 @@ dependencies = [
|
|
|
4164
4084
|
|
|
4165
4085
|
[[package]]
|
|
4166
4086
|
name = "wasmparser"
|
|
4167
|
-
version = "0.
|
|
4087
|
+
version = "0.252.0"
|
|
4168
4088
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4169
|
-
checksum = "
|
|
4089
|
+
checksum = "d3eb099dcadcde5be9eef55e3a337128efd4e44b4c93122487e4d2e4e1c6627c"
|
|
4170
4090
|
dependencies = [
|
|
4171
4091
|
"bitflags",
|
|
4172
4092
|
"indexmap 2.14.0",
|
|
@@ -4186,9 +4106,9 @@ dependencies = [
|
|
|
4186
4106
|
|
|
4187
4107
|
[[package]]
|
|
4188
4108
|
name = "wasmtime"
|
|
4189
|
-
version = "45.0.
|
|
4109
|
+
version = "45.0.2"
|
|
4190
4110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4191
|
-
checksum = "
|
|
4111
|
+
checksum = "5c7ce9aa2c67f75fadcfdc6aa9097d03e7c39485dfe316f2ed6a7c0fd186c527"
|
|
4192
4112
|
dependencies = [
|
|
4193
4113
|
"addr2line",
|
|
4194
4114
|
"async-trait",
|
|
@@ -4240,9 +4160,9 @@ dependencies = [
|
|
|
4240
4160
|
|
|
4241
4161
|
[[package]]
|
|
4242
4162
|
name = "wasmtime-environ"
|
|
4243
|
-
version = "45.0.
|
|
4163
|
+
version = "45.0.2"
|
|
4244
4164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4245
|
-
checksum = "
|
|
4165
|
+
checksum = "c8fb157bd1fbf689ac89d570433a700db6f33bdfcb5ffc30e3f1c49e4c70de71"
|
|
4246
4166
|
dependencies = [
|
|
4247
4167
|
"anyhow",
|
|
4248
4168
|
"cpp_demangle",
|
|
@@ -4271,9 +4191,9 @@ dependencies = [
|
|
|
4271
4191
|
|
|
4272
4192
|
[[package]]
|
|
4273
4193
|
name = "wasmtime-internal-cache"
|
|
4274
|
-
version = "45.0.
|
|
4194
|
+
version = "45.0.2"
|
|
4275
4195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4276
|
-
checksum = "
|
|
4196
|
+
checksum = "e0d1a46c4a2360186b59c6ed7a74a1121ac97925ae9a18db1b2f146cc27ac0b7"
|
|
4277
4197
|
dependencies = [
|
|
4278
4198
|
"base64",
|
|
4279
4199
|
"directories-next",
|
|
@@ -4291,9 +4211,9 @@ dependencies = [
|
|
|
4291
4211
|
|
|
4292
4212
|
[[package]]
|
|
4293
4213
|
name = "wasmtime-internal-component-macro"
|
|
4294
|
-
version = "45.0.
|
|
4214
|
+
version = "45.0.2"
|
|
4295
4215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4296
|
-
checksum = "
|
|
4216
|
+
checksum = "b96c17f35fae2ab574667aba0c58fd56349a6f788ac42541a2e543116d5cfb91"
|
|
4297
4217
|
dependencies = [
|
|
4298
4218
|
"anyhow",
|
|
4299
4219
|
"proc-macro2",
|
|
@@ -4301,20 +4221,20 @@ dependencies = [
|
|
|
4301
4221
|
"syn",
|
|
4302
4222
|
"wasmtime-internal-component-util",
|
|
4303
4223
|
"wasmtime-internal-wit-bindgen",
|
|
4304
|
-
"wit-parser
|
|
4224
|
+
"wit-parser",
|
|
4305
4225
|
]
|
|
4306
4226
|
|
|
4307
4227
|
[[package]]
|
|
4308
4228
|
name = "wasmtime-internal-component-util"
|
|
4309
|
-
version = "45.0.
|
|
4229
|
+
version = "45.0.2"
|
|
4310
4230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4311
|
-
checksum = "
|
|
4231
|
+
checksum = "9d2eeb9b53222859e6f5dc73d2ccfb33254d672469cac11b693a71912e2f3817"
|
|
4312
4232
|
|
|
4313
4233
|
[[package]]
|
|
4314
4234
|
name = "wasmtime-internal-core"
|
|
4315
|
-
version = "45.0.
|
|
4235
|
+
version = "45.0.2"
|
|
4316
4236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4317
|
-
checksum = "
|
|
4237
|
+
checksum = "4a1deaf6bc3430abd7497b00c64f06ca2b97ca0fe41af87836446ca30949965c"
|
|
4318
4238
|
dependencies = [
|
|
4319
4239
|
"anyhow",
|
|
4320
4240
|
"hashbrown 0.17.1",
|
|
@@ -4324,9 +4244,9 @@ dependencies = [
|
|
|
4324
4244
|
|
|
4325
4245
|
[[package]]
|
|
4326
4246
|
name = "wasmtime-internal-cranelift"
|
|
4327
|
-
version = "45.0.
|
|
4247
|
+
version = "45.0.2"
|
|
4328
4248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4329
|
-
checksum = "
|
|
4249
|
+
checksum = "b845f83b5b04b11bc48329b53eb4fa8cf9f28a43c71ed8e1203f68ffa9806d1b"
|
|
4330
4250
|
dependencies = [
|
|
4331
4251
|
"cfg-if",
|
|
4332
4252
|
"cranelift-codegen",
|
|
@@ -4351,9 +4271,9 @@ dependencies = [
|
|
|
4351
4271
|
|
|
4352
4272
|
[[package]]
|
|
4353
4273
|
name = "wasmtime-internal-fiber"
|
|
4354
|
-
version = "45.0.
|
|
4274
|
+
version = "45.0.2"
|
|
4355
4275
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4356
|
-
checksum = "
|
|
4276
|
+
checksum = "e10c8466f72965ae85c250f90aaa7992c089a2f8502009bd0d2c9e7d6409174a"
|
|
4357
4277
|
dependencies = [
|
|
4358
4278
|
"cc",
|
|
4359
4279
|
"cfg-if",
|
|
@@ -4366,9 +4286,9 @@ dependencies = [
|
|
|
4366
4286
|
|
|
4367
4287
|
[[package]]
|
|
4368
4288
|
name = "wasmtime-internal-jit-debug"
|
|
4369
|
-
version = "45.0.
|
|
4289
|
+
version = "45.0.2"
|
|
4370
4290
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4371
|
-
checksum = "
|
|
4291
|
+
checksum = "1d3adfecf5621b14d8f8871f4cb4ed9f844197b1ddefc702ef4c859552cd9551"
|
|
4372
4292
|
dependencies = [
|
|
4373
4293
|
"cc",
|
|
4374
4294
|
"object",
|
|
@@ -4378,9 +4298,9 @@ dependencies = [
|
|
|
4378
4298
|
|
|
4379
4299
|
[[package]]
|
|
4380
4300
|
name = "wasmtime-internal-jit-icache-coherence"
|
|
4381
|
-
version = "45.0.
|
|
4301
|
+
version = "45.0.2"
|
|
4382
4302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4383
|
-
checksum = "
|
|
4303
|
+
checksum = "08d3c1e9fb618ec45c9b3477ea683cd37bee427273d7b13bba5c66a1caaf1dd6"
|
|
4384
4304
|
dependencies = [
|
|
4385
4305
|
"cfg-if",
|
|
4386
4306
|
"libc",
|
|
@@ -4390,9 +4310,9 @@ dependencies = [
|
|
|
4390
4310
|
|
|
4391
4311
|
[[package]]
|
|
4392
4312
|
name = "wasmtime-internal-unwinder"
|
|
4393
|
-
version = "45.0.
|
|
4313
|
+
version = "45.0.2"
|
|
4394
4314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4395
|
-
checksum = "
|
|
4315
|
+
checksum = "7aa91132b81f1e172ec7e7c3c114ac34209ee6b3524b3a8d6943af99803f66c5"
|
|
4396
4316
|
dependencies = [
|
|
4397
4317
|
"cfg-if",
|
|
4398
4318
|
"cranelift-codegen",
|
|
@@ -4403,9 +4323,9 @@ dependencies = [
|
|
|
4403
4323
|
|
|
4404
4324
|
[[package]]
|
|
4405
4325
|
name = "wasmtime-internal-versioned-export-macros"
|
|
4406
|
-
version = "45.0.
|
|
4326
|
+
version = "45.0.2"
|
|
4407
4327
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4408
|
-
checksum = "
|
|
4328
|
+
checksum = "6ea811ffe23f597cc7708327ea25d9eb018dcf760ffe15ccb7d0b27ad635de61"
|
|
4409
4329
|
dependencies = [
|
|
4410
4330
|
"proc-macro2",
|
|
4411
4331
|
"quote",
|
|
@@ -4414,9 +4334,9 @@ dependencies = [
|
|
|
4414
4334
|
|
|
4415
4335
|
[[package]]
|
|
4416
4336
|
name = "wasmtime-internal-winch"
|
|
4417
|
-
version = "45.0.
|
|
4337
|
+
version = "45.0.2"
|
|
4418
4338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4419
|
-
checksum = "
|
|
4339
|
+
checksum = "828b66175c54a0d00b4c1c1c76658d8aa73aeb9fa3553575c5eee56d40f2eb18"
|
|
4420
4340
|
dependencies = [
|
|
4421
4341
|
"cranelift-codegen",
|
|
4422
4342
|
"gimli",
|
|
@@ -4431,22 +4351,22 @@ dependencies = [
|
|
|
4431
4351
|
|
|
4432
4352
|
[[package]]
|
|
4433
4353
|
name = "wasmtime-internal-wit-bindgen"
|
|
4434
|
-
version = "45.0.
|
|
4354
|
+
version = "45.0.2"
|
|
4435
4355
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4436
|
-
checksum = "
|
|
4356
|
+
checksum = "4ae00896ad9bef1b3ca6401ae9a841daa6f357dd91541b6baf87082946d1bde1"
|
|
4437
4357
|
dependencies = [
|
|
4438
4358
|
"anyhow",
|
|
4439
4359
|
"bitflags",
|
|
4440
4360
|
"heck",
|
|
4441
4361
|
"indexmap 2.14.0",
|
|
4442
|
-
"wit-parser
|
|
4362
|
+
"wit-parser",
|
|
4443
4363
|
]
|
|
4444
4364
|
|
|
4445
4365
|
[[package]]
|
|
4446
4366
|
name = "wasmtime-wasi"
|
|
4447
|
-
version = "45.0.
|
|
4367
|
+
version = "45.0.2"
|
|
4448
4368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4449
|
-
checksum = "
|
|
4369
|
+
checksum = "6032ceffcb74cf30a2cdac298a4d6ce219058f08479ce1ab38434aadc044000b"
|
|
4450
4370
|
dependencies = [
|
|
4451
4371
|
"async-trait",
|
|
4452
4372
|
"bitflags",
|
|
@@ -4473,9 +4393,9 @@ dependencies = [
|
|
|
4473
4393
|
|
|
4474
4394
|
[[package]]
|
|
4475
4395
|
name = "wasmtime-wasi-http"
|
|
4476
|
-
version = "45.0.
|
|
4396
|
+
version = "45.0.2"
|
|
4477
4397
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4478
|
-
checksum = "
|
|
4398
|
+
checksum = "bb570dc29e051beeb016aa62839871fde20d9b305b3809655d09461c304d71b2"
|
|
4479
4399
|
dependencies = [
|
|
4480
4400
|
"async-trait",
|
|
4481
4401
|
"bytes",
|
|
@@ -4494,9 +4414,9 @@ dependencies = [
|
|
|
4494
4414
|
|
|
4495
4415
|
[[package]]
|
|
4496
4416
|
name = "wasmtime-wasi-io"
|
|
4497
|
-
version = "45.0.
|
|
4417
|
+
version = "45.0.2"
|
|
4498
4418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4499
|
-
checksum = "
|
|
4419
|
+
checksum = "25b6e6868e5b93e1e10983a17afb631b39c236d8b6b4abe9faffe78f1ee0c6e7"
|
|
4500
4420
|
dependencies = [
|
|
4501
4421
|
"async-trait",
|
|
4502
4422
|
"bytes",
|
|
@@ -4507,31 +4427,31 @@ dependencies = [
|
|
|
4507
4427
|
|
|
4508
4428
|
[[package]]
|
|
4509
4429
|
name = "wast"
|
|
4510
|
-
version = "
|
|
4430
|
+
version = "252.0.0"
|
|
4511
4431
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4512
|
-
checksum = "
|
|
4432
|
+
checksum = "942a3449d6a593fccc111a6241c8df52bda168af30e40bf9580d4394d7374c65"
|
|
4513
4433
|
dependencies = [
|
|
4514
4434
|
"bumpalo",
|
|
4515
4435
|
"leb128fmt",
|
|
4516
4436
|
"memchr",
|
|
4517
4437
|
"unicode-width",
|
|
4518
|
-
"wasm-encoder 0.
|
|
4438
|
+
"wasm-encoder 0.252.0",
|
|
4519
4439
|
]
|
|
4520
4440
|
|
|
4521
4441
|
[[package]]
|
|
4522
4442
|
name = "wat"
|
|
4523
|
-
version = "1.
|
|
4443
|
+
version = "1.252.0"
|
|
4524
4444
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4525
|
-
checksum = "
|
|
4445
|
+
checksum = "c72a4ba7088f7bac94cf516e49882bdf97068904a563768cf249efc839ec42cb"
|
|
4526
4446
|
dependencies = [
|
|
4527
4447
|
"wast",
|
|
4528
4448
|
]
|
|
4529
4449
|
|
|
4530
4450
|
[[package]]
|
|
4531
4451
|
name = "web-sys"
|
|
4532
|
-
version = "0.3.
|
|
4452
|
+
version = "0.3.102"
|
|
4533
4453
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4534
|
-
checksum = "
|
|
4454
|
+
checksum = "a6430a72df5eb332242960fe84b3002a241163998241eb596d4f739b9757061d"
|
|
4535
4455
|
dependencies = [
|
|
4536
4456
|
"js-sys",
|
|
4537
4457
|
"wasm-bindgen",
|
|
@@ -4549,18 +4469,18 @@ dependencies = [
|
|
|
4549
4469
|
|
|
4550
4470
|
[[package]]
|
|
4551
4471
|
name = "webpki-root-certs"
|
|
4552
|
-
version = "1.0.
|
|
4472
|
+
version = "1.0.8"
|
|
4553
4473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4554
|
-
checksum = "
|
|
4474
|
+
checksum = "0d46a5a140e6f7afeccd8eae97eff335163939eac8b929834875168b29b3d267"
|
|
4555
4475
|
dependencies = [
|
|
4556
4476
|
"rustls-pki-types",
|
|
4557
4477
|
]
|
|
4558
4478
|
|
|
4559
4479
|
[[package]]
|
|
4560
4480
|
name = "webpki-roots"
|
|
4561
|
-
version = "1.0.
|
|
4481
|
+
version = "1.0.8"
|
|
4562
4482
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4563
|
-
checksum = "
|
|
4483
|
+
checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
|
|
4564
4484
|
dependencies = [
|
|
4565
4485
|
"rustls-pki-types",
|
|
4566
4486
|
]
|
|
@@ -4598,9 +4518,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
4598
4518
|
|
|
4599
4519
|
[[package]]
|
|
4600
4520
|
name = "winch-codegen"
|
|
4601
|
-
version = "45.0.
|
|
4521
|
+
version = "45.0.2"
|
|
4602
4522
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4603
|
-
checksum = "
|
|
4523
|
+
checksum = "89c09acfdfa281b3340e1e94ef3cf6618d69eab975280f881e154c29f49419c1"
|
|
4604
4524
|
dependencies = [
|
|
4605
4525
|
"cranelift-assembler-x64",
|
|
4606
4526
|
"cranelift-codegen",
|
|
@@ -4912,100 +4832,12 @@ dependencies = [
|
|
|
4912
4832
|
"windows-sys 0.59.0",
|
|
4913
4833
|
]
|
|
4914
4834
|
|
|
4915
|
-
[[package]]
|
|
4916
|
-
name = "wit-bindgen"
|
|
4917
|
-
version = "0.51.0"
|
|
4918
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4919
|
-
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
4920
|
-
dependencies = [
|
|
4921
|
-
"wit-bindgen-rust-macro",
|
|
4922
|
-
]
|
|
4923
|
-
|
|
4924
4835
|
[[package]]
|
|
4925
4836
|
name = "wit-bindgen"
|
|
4926
4837
|
version = "0.57.1"
|
|
4927
4838
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4928
4839
|
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
4929
4840
|
|
|
4930
|
-
[[package]]
|
|
4931
|
-
name = "wit-bindgen-core"
|
|
4932
|
-
version = "0.51.0"
|
|
4933
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4934
|
-
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
4935
|
-
dependencies = [
|
|
4936
|
-
"anyhow",
|
|
4937
|
-
"heck",
|
|
4938
|
-
"wit-parser 0.244.0",
|
|
4939
|
-
]
|
|
4940
|
-
|
|
4941
|
-
[[package]]
|
|
4942
|
-
name = "wit-bindgen-rust"
|
|
4943
|
-
version = "0.51.0"
|
|
4944
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4945
|
-
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
4946
|
-
dependencies = [
|
|
4947
|
-
"anyhow",
|
|
4948
|
-
"heck",
|
|
4949
|
-
"indexmap 2.14.0",
|
|
4950
|
-
"prettyplease",
|
|
4951
|
-
"syn",
|
|
4952
|
-
"wasm-metadata",
|
|
4953
|
-
"wit-bindgen-core",
|
|
4954
|
-
"wit-component",
|
|
4955
|
-
]
|
|
4956
|
-
|
|
4957
|
-
[[package]]
|
|
4958
|
-
name = "wit-bindgen-rust-macro"
|
|
4959
|
-
version = "0.51.0"
|
|
4960
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4961
|
-
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
4962
|
-
dependencies = [
|
|
4963
|
-
"anyhow",
|
|
4964
|
-
"prettyplease",
|
|
4965
|
-
"proc-macro2",
|
|
4966
|
-
"quote",
|
|
4967
|
-
"syn",
|
|
4968
|
-
"wit-bindgen-core",
|
|
4969
|
-
"wit-bindgen-rust",
|
|
4970
|
-
]
|
|
4971
|
-
|
|
4972
|
-
[[package]]
|
|
4973
|
-
name = "wit-component"
|
|
4974
|
-
version = "0.244.0"
|
|
4975
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4976
|
-
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
4977
|
-
dependencies = [
|
|
4978
|
-
"anyhow",
|
|
4979
|
-
"bitflags",
|
|
4980
|
-
"indexmap 2.14.0",
|
|
4981
|
-
"log",
|
|
4982
|
-
"serde",
|
|
4983
|
-
"serde_derive",
|
|
4984
|
-
"serde_json",
|
|
4985
|
-
"wasm-encoder 0.244.0",
|
|
4986
|
-
"wasm-metadata",
|
|
4987
|
-
"wasmparser 0.244.0",
|
|
4988
|
-
"wit-parser 0.244.0",
|
|
4989
|
-
]
|
|
4990
|
-
|
|
4991
|
-
[[package]]
|
|
4992
|
-
name = "wit-parser"
|
|
4993
|
-
version = "0.244.0"
|
|
4994
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4995
|
-
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
4996
|
-
dependencies = [
|
|
4997
|
-
"anyhow",
|
|
4998
|
-
"id-arena",
|
|
4999
|
-
"indexmap 2.14.0",
|
|
5000
|
-
"log",
|
|
5001
|
-
"semver",
|
|
5002
|
-
"serde",
|
|
5003
|
-
"serde_derive",
|
|
5004
|
-
"serde_json",
|
|
5005
|
-
"unicode-xid",
|
|
5006
|
-
"wasmparser 0.244.0",
|
|
5007
|
-
]
|
|
5008
|
-
|
|
5009
4841
|
[[package]]
|
|
5010
4842
|
name = "wit-parser"
|
|
5011
4843
|
version = "0.248.0"
|
|
@@ -5043,9 +4875,9 @@ dependencies = [
|
|
|
5043
4875
|
|
|
5044
4876
|
[[package]]
|
|
5045
4877
|
name = "yoke"
|
|
5046
|
-
version = "0.8.
|
|
4878
|
+
version = "0.8.3"
|
|
5047
4879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5048
|
-
checksum = "
|
|
4880
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
5049
4881
|
dependencies = [
|
|
5050
4882
|
"stable_deref_trait",
|
|
5051
4883
|
"yoke-derive",
|
|
@@ -5066,18 +4898,18 @@ dependencies = [
|
|
|
5066
4898
|
|
|
5067
4899
|
[[package]]
|
|
5068
4900
|
name = "zerocopy"
|
|
5069
|
-
version = "0.8.
|
|
4901
|
+
version = "0.8.52"
|
|
5070
4902
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5071
|
-
checksum = "
|
|
4903
|
+
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
5072
4904
|
dependencies = [
|
|
5073
4905
|
"zerocopy-derive",
|
|
5074
4906
|
]
|
|
5075
4907
|
|
|
5076
4908
|
[[package]]
|
|
5077
4909
|
name = "zerocopy-derive"
|
|
5078
|
-
version = "0.8.
|
|
4910
|
+
version = "0.8.52"
|
|
5079
4911
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5080
|
-
checksum = "
|
|
4912
|
+
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
5081
4913
|
dependencies = [
|
|
5082
4914
|
"proc-macro2",
|
|
5083
4915
|
"quote",
|
|
@@ -5107,18 +4939,18 @@ dependencies = [
|
|
|
5107
4939
|
|
|
5108
4940
|
[[package]]
|
|
5109
4941
|
name = "zeroize"
|
|
5110
|
-
version = "1.
|
|
4942
|
+
version = "1.9.0"
|
|
5111
4943
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5112
|
-
checksum = "
|
|
4944
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
5113
4945
|
dependencies = [
|
|
5114
4946
|
"zeroize_derive",
|
|
5115
4947
|
]
|
|
5116
4948
|
|
|
5117
4949
|
[[package]]
|
|
5118
4950
|
name = "zeroize_derive"
|
|
5119
|
-
version = "1.
|
|
4951
|
+
version = "1.5.0"
|
|
5120
4952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5121
|
-
checksum = "
|
|
4953
|
+
checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
|
|
5122
4954
|
dependencies = [
|
|
5123
4955
|
"proc-macro2",
|
|
5124
4956
|
"quote",
|