act-cli 0.8.2__tar.gz → 0.8.3__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.8.3}/Cargo.lock +145 -171
- {act_cli-0.8.2 → act_cli-0.8.3}/Cargo.toml +2 -2
- {act_cli-0.8.2 → act_cli-0.8.3}/PKG-INFO +1 -1
- {act_cli-0.8.2 → act_cli-0.8.3}/README.md +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/Cargo.toml +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/README.md +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/build.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/src/config.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/src/format.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/src/http.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/src/main.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/src/resolve.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/src/rmcp_bridge.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/src/runtime/bindings/mod.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/src/runtime/effective.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/src/runtime/fs_matcher.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/src/runtime/fs_policy.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/src/runtime/http_client.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/src/runtime/http_policy.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/src/runtime/mod.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/src/runtime/network.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/src/runtime/sessions.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/src/runtime/sockets_policy.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/wit/deps/act-core/act-core.wit +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/wit/deps/act-tools/act-tools.wit +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/wit/deps.lock +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/wit/deps.toml +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/act-cli/wit/world.wit +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/crates/act-store/Cargo.toml +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/crates/act-store/README.md +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/crates/act-store/src/fetch.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/crates/act-store/src/index.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/crates/act-store/src/layout.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/crates/act-store/src/lib.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/crates/act-store/src/lock.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/crates/act-store/src/provenance.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/crates/act-store/src/reference.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/crates/act-store/src/referrer.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/crates/act-store/src/store.rs +0 -0
- {act_cli-0.8.2 → act_cli-0.8.3}/pyproject.toml +0 -0
|
@@ -4,7 +4,7 @@ version = 4
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "act-build"
|
|
7
|
-
version = "0.8.
|
|
7
|
+
version = "0.8.3"
|
|
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.8.
|
|
40
|
+
version = "0.8.3"
|
|
41
41
|
dependencies = [
|
|
42
42
|
"act-store",
|
|
43
43
|
"act-types",
|
|
@@ -105,9 +105,9 @@ dependencies = [
|
|
|
105
105
|
|
|
106
106
|
[[package]]
|
|
107
107
|
name = "act-types"
|
|
108
|
-
version = "0.
|
|
108
|
+
version = "0.9.0"
|
|
109
109
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
|
-
checksum = "
|
|
110
|
+
checksum = "1c511017d90234b0d3680e0bfa55592337502a1d5e6c3e9d10021b0e7c3d35a2"
|
|
111
111
|
dependencies = [
|
|
112
112
|
"base64",
|
|
113
113
|
"ciborium",
|
|
@@ -329,9 +329,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
|
329
329
|
|
|
330
330
|
[[package]]
|
|
331
331
|
name = "bitflags"
|
|
332
|
-
version = "2.
|
|
332
|
+
version = "2.13.0"
|
|
333
333
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
-
checksum = "
|
|
334
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
335
335
|
|
|
336
336
|
[[package]]
|
|
337
337
|
name = "block-buffer"
|
|
@@ -344,9 +344,9 @@ dependencies = [
|
|
|
344
344
|
|
|
345
345
|
[[package]]
|
|
346
346
|
name = "block-buffer"
|
|
347
|
-
version = "0.12.
|
|
347
|
+
version = "0.12.1"
|
|
348
348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
|
-
checksum = "
|
|
349
|
+
checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
|
|
350
350
|
dependencies = [
|
|
351
351
|
"hybrid-array",
|
|
352
352
|
]
|
|
@@ -387,9 +387,9 @@ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
|
387
387
|
|
|
388
388
|
[[package]]
|
|
389
389
|
name = "bytesize"
|
|
390
|
-
version = "2.
|
|
390
|
+
version = "2.4.0"
|
|
391
391
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
-
checksum = "
|
|
392
|
+
checksum = "49e78e506b9d7633710dab98996f22f95f3d0f488e8f1aa162830556ed9fc14d"
|
|
393
393
|
|
|
394
394
|
[[package]]
|
|
395
395
|
name = "cap-fs-ext"
|
|
@@ -461,9 +461,9 @@ dependencies = [
|
|
|
461
461
|
|
|
462
462
|
[[package]]
|
|
463
463
|
name = "cc"
|
|
464
|
-
version = "1.2.
|
|
464
|
+
version = "1.2.64"
|
|
465
465
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
-
checksum = "
|
|
466
|
+
checksum = "dad887fd958be91b5098c0248def011f4523ab786cd411be668777e55063501f"
|
|
467
467
|
dependencies = [
|
|
468
468
|
"find-msvc-tools",
|
|
469
469
|
"jobserver",
|
|
@@ -496,9 +496,9 @@ dependencies = [
|
|
|
496
496
|
|
|
497
497
|
[[package]]
|
|
498
498
|
name = "chrono"
|
|
499
|
-
version = "0.4.
|
|
499
|
+
version = "0.4.45"
|
|
500
500
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
-
checksum = "
|
|
501
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
502
502
|
dependencies = [
|
|
503
503
|
"iana-time-zone",
|
|
504
504
|
"js-sys",
|
|
@@ -699,27 +699,27 @@ dependencies = [
|
|
|
699
699
|
|
|
700
700
|
[[package]]
|
|
701
701
|
name = "cranelift-assembler-x64"
|
|
702
|
-
version = "0.132.
|
|
702
|
+
version = "0.132.2"
|
|
703
703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
-
checksum = "
|
|
704
|
+
checksum = "0bc293b86236abcc45f2f72e2d18e2bd636f2a08b75eb286bae31e71e1430c91"
|
|
705
705
|
dependencies = [
|
|
706
706
|
"cranelift-assembler-x64-meta",
|
|
707
707
|
]
|
|
708
708
|
|
|
709
709
|
[[package]]
|
|
710
710
|
name = "cranelift-assembler-x64-meta"
|
|
711
|
-
version = "0.132.
|
|
711
|
+
version = "0.132.2"
|
|
712
712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
-
checksum = "
|
|
713
|
+
checksum = "b954c826eddaf1b001402cb8aecf1764c6f6d637ba69fb9e3311f1ebac965be6"
|
|
714
714
|
dependencies = [
|
|
715
715
|
"cranelift-srcgen",
|
|
716
716
|
]
|
|
717
717
|
|
|
718
718
|
[[package]]
|
|
719
719
|
name = "cranelift-bforest"
|
|
720
|
-
version = "0.132.
|
|
720
|
+
version = "0.132.2"
|
|
721
721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
722
|
-
checksum = "
|
|
722
|
+
checksum = "4053fa2575ef4a5c35d2708533df2200400ae979226cea9cc92a578b811bd4e7"
|
|
723
723
|
dependencies = [
|
|
724
724
|
"cranelift-entity",
|
|
725
725
|
"wasmtime-internal-core",
|
|
@@ -727,9 +727,9 @@ dependencies = [
|
|
|
727
727
|
|
|
728
728
|
[[package]]
|
|
729
729
|
name = "cranelift-bitset"
|
|
730
|
-
version = "0.132.
|
|
730
|
+
version = "0.132.2"
|
|
731
731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
-
checksum = "
|
|
732
|
+
checksum = "d216663191014aa63e1d2cffd058e609eaf207646d40b739d88250f65b2c4f69"
|
|
733
733
|
dependencies = [
|
|
734
734
|
"serde",
|
|
735
735
|
"serde_derive",
|
|
@@ -738,9 +738,9 @@ dependencies = [
|
|
|
738
738
|
|
|
739
739
|
[[package]]
|
|
740
740
|
name = "cranelift-codegen"
|
|
741
|
-
version = "0.132.
|
|
741
|
+
version = "0.132.2"
|
|
742
742
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
743
|
-
checksum = "
|
|
743
|
+
checksum = "9a5e7e7aad6a425a51da1ad7ab9e5d280ea97eb7c7c4545fafb567915a75aadb"
|
|
744
744
|
dependencies = [
|
|
745
745
|
"bumpalo",
|
|
746
746
|
"cranelift-assembler-x64",
|
|
@@ -766,9 +766,9 @@ dependencies = [
|
|
|
766
766
|
|
|
767
767
|
[[package]]
|
|
768
768
|
name = "cranelift-codegen-meta"
|
|
769
|
-
version = "0.132.
|
|
769
|
+
version = "0.132.2"
|
|
770
770
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
-
checksum = "
|
|
771
|
+
checksum = "c421d80a9a85f806cb02a2983b5b5368a335c319795b1f1b4b771a24479af5b0"
|
|
772
772
|
dependencies = [
|
|
773
773
|
"cranelift-assembler-x64-meta",
|
|
774
774
|
"cranelift-codegen-shared",
|
|
@@ -779,24 +779,24 @@ dependencies = [
|
|
|
779
779
|
|
|
780
780
|
[[package]]
|
|
781
781
|
name = "cranelift-codegen-shared"
|
|
782
|
-
version = "0.132.
|
|
782
|
+
version = "0.132.2"
|
|
783
783
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
-
checksum = "
|
|
784
|
+
checksum = "78fdb83ab012d0ee6a44ced7ca8788a444f17cf821c62f95d6ef87c9f0262518"
|
|
785
785
|
|
|
786
786
|
[[package]]
|
|
787
787
|
name = "cranelift-control"
|
|
788
|
-
version = "0.132.
|
|
788
|
+
version = "0.132.2"
|
|
789
789
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
-
checksum = "
|
|
790
|
+
checksum = "1b75adc6eb7bb4ac6365106afb6cac4f12fe1ddfa02ddc9fd7015ca1469b471b"
|
|
791
791
|
dependencies = [
|
|
792
792
|
"arbitrary",
|
|
793
793
|
]
|
|
794
794
|
|
|
795
795
|
[[package]]
|
|
796
796
|
name = "cranelift-entity"
|
|
797
|
-
version = "0.132.
|
|
797
|
+
version = "0.132.2"
|
|
798
798
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
799
|
-
checksum = "
|
|
799
|
+
checksum = "668e56db75a54816cbdd7c7b7bfc558b08bf7b2cda9d0846491517e92f3b393b"
|
|
800
800
|
dependencies = [
|
|
801
801
|
"cranelift-bitset",
|
|
802
802
|
"serde",
|
|
@@ -806,9 +806,9 @@ dependencies = [
|
|
|
806
806
|
|
|
807
807
|
[[package]]
|
|
808
808
|
name = "cranelift-frontend"
|
|
809
|
-
version = "0.132.
|
|
809
|
+
version = "0.132.2"
|
|
810
810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
811
|
-
checksum = "
|
|
811
|
+
checksum = "c63892dc1cc3ae48680183fa66997f60ffe7f1e200c8d390f8ee66edff4aef5a"
|
|
812
812
|
dependencies = [
|
|
813
813
|
"cranelift-codegen",
|
|
814
814
|
"log",
|
|
@@ -818,15 +818,15 @@ dependencies = [
|
|
|
818
818
|
|
|
819
819
|
[[package]]
|
|
820
820
|
name = "cranelift-isle"
|
|
821
|
-
version = "0.132.
|
|
821
|
+
version = "0.132.2"
|
|
822
822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
-
checksum = "
|
|
823
|
+
checksum = "94eaf429c32a12715429c7c6ddfdd43c170f4cdd7e97bfa507bd68a652091087"
|
|
824
824
|
|
|
825
825
|
[[package]]
|
|
826
826
|
name = "cranelift-native"
|
|
827
|
-
version = "0.132.
|
|
827
|
+
version = "0.132.2"
|
|
828
828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
829
|
-
checksum = "
|
|
829
|
+
checksum = "cd77674904ae9be11c1e1efdba54788b59f3d6658d747b97534bfbba2909aacc"
|
|
830
830
|
dependencies = [
|
|
831
831
|
"cranelift-codegen",
|
|
832
832
|
"libc",
|
|
@@ -835,9 +835,9 @@ dependencies = [
|
|
|
835
835
|
|
|
836
836
|
[[package]]
|
|
837
837
|
name = "cranelift-srcgen"
|
|
838
|
-
version = "0.132.
|
|
838
|
+
version = "0.132.2"
|
|
839
839
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
-
checksum = "
|
|
840
|
+
checksum = "cba7c0ff5941842c36653da155580ce41e675c204a67ac1b4e1c478a9347bbb7"
|
|
841
841
|
|
|
842
842
|
[[package]]
|
|
843
843
|
name = "crc32fast"
|
|
@@ -982,7 +982,6 @@ version = "0.5.8"
|
|
|
982
982
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
983
983
|
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
984
984
|
dependencies = [
|
|
985
|
-
"powerfmt",
|
|
986
985
|
"serde_core",
|
|
987
986
|
]
|
|
988
987
|
|
|
@@ -1033,7 +1032,7 @@ version = "0.11.3"
|
|
|
1033
1032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
1033
|
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
1035
1034
|
dependencies = [
|
|
1036
|
-
"block-buffer 0.12.
|
|
1035
|
+
"block-buffer 0.12.1",
|
|
1037
1036
|
"const-oid",
|
|
1038
1037
|
"crypto-common 0.2.2",
|
|
1039
1038
|
]
|
|
@@ -1405,11 +1404,10 @@ dependencies = [
|
|
|
1405
1404
|
|
|
1406
1405
|
[[package]]
|
|
1407
1406
|
name = "getset"
|
|
1408
|
-
version = "0.1.
|
|
1407
|
+
version = "0.1.7"
|
|
1409
1408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1410
|
-
checksum = "
|
|
1409
|
+
checksum = "6cf442baaabe4213ce7d1239afc26c039180b6456da2cededa316ae2c8a77a77"
|
|
1411
1410
|
dependencies = [
|
|
1412
|
-
"proc-macro-error2",
|
|
1413
1411
|
"proc-macro2",
|
|
1414
1412
|
"quote",
|
|
1415
1413
|
"syn",
|
|
@@ -1442,9 +1440,9 @@ dependencies = [
|
|
|
1442
1440
|
|
|
1443
1441
|
[[package]]
|
|
1444
1442
|
name = "h2"
|
|
1445
|
-
version = "0.4.
|
|
1443
|
+
version = "0.4.15"
|
|
1446
1444
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1447
|
-
checksum = "
|
|
1445
|
+
checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
|
|
1448
1446
|
dependencies = [
|
|
1449
1447
|
"atomic-waker",
|
|
1450
1448
|
"bytes",
|
|
@@ -1522,9 +1520,9 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
|
1522
1520
|
|
|
1523
1521
|
[[package]]
|
|
1524
1522
|
name = "http"
|
|
1525
|
-
version = "1.4.
|
|
1523
|
+
version = "1.4.2"
|
|
1526
1524
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1527
|
-
checksum = "
|
|
1525
|
+
checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
|
|
1528
1526
|
dependencies = [
|
|
1529
1527
|
"bytes",
|
|
1530
1528
|
"itoa",
|
|
@@ -1979,13 +1977,12 @@ dependencies = [
|
|
|
1979
1977
|
|
|
1980
1978
|
[[package]]
|
|
1981
1979
|
name = "js-sys"
|
|
1982
|
-
version = "0.3.
|
|
1980
|
+
version = "0.3.102"
|
|
1983
1981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
|
-
checksum = "
|
|
1982
|
+
checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
|
|
1985
1983
|
dependencies = [
|
|
1986
1984
|
"cfg-if",
|
|
1987
1985
|
"futures-util",
|
|
1988
|
-
"once_cell",
|
|
1989
1986
|
"wasm-bindgen",
|
|
1990
1987
|
]
|
|
1991
1988
|
|
|
@@ -2098,9 +2095,9 @@ dependencies = [
|
|
|
2098
2095
|
|
|
2099
2096
|
[[package]]
|
|
2100
2097
|
name = "log"
|
|
2101
|
-
version = "0.4.
|
|
2098
|
+
version = "0.4.32"
|
|
2102
2099
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2103
|
-
checksum = "
|
|
2100
|
+
checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
|
|
2104
2101
|
|
|
2105
2102
|
[[package]]
|
|
2106
2103
|
name = "lru-slab"
|
|
@@ -2140,9 +2137,9 @@ checksum = "4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4"
|
|
|
2140
2137
|
|
|
2141
2138
|
[[package]]
|
|
2142
2139
|
name = "memchr"
|
|
2143
|
-
version = "2.8.
|
|
2140
|
+
version = "2.8.2"
|
|
2144
2141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2145
|
-
checksum = "
|
|
2142
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
2146
2143
|
|
|
2147
2144
|
[[package]]
|
|
2148
2145
|
name = "memfd"
|
|
@@ -2448,28 +2445,6 @@ dependencies = [
|
|
|
2448
2445
|
"syn",
|
|
2449
2446
|
]
|
|
2450
2447
|
|
|
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
2448
|
[[package]]
|
|
2474
2449
|
name = "proc-macro2"
|
|
2475
2450
|
version = "1.0.106"
|
|
@@ -2495,9 +2470,9 @@ dependencies = [
|
|
|
2495
2470
|
|
|
2496
2471
|
[[package]]
|
|
2497
2472
|
name = "pulley-interpreter"
|
|
2498
|
-
version = "45.0.
|
|
2473
|
+
version = "45.0.2"
|
|
2499
2474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2500
|
-
checksum = "
|
|
2475
|
+
checksum = "2d9880c1985ccccaed3646b0ef793dc39a4b117403ed4afc6fa3ef6027c5200f"
|
|
2501
2476
|
dependencies = [
|
|
2502
2477
|
"cranelift-bitset",
|
|
2503
2478
|
"log",
|
|
@@ -2507,9 +2482,9 @@ dependencies = [
|
|
|
2507
2482
|
|
|
2508
2483
|
[[package]]
|
|
2509
2484
|
name = "pulley-macros"
|
|
2510
|
-
version = "45.0.
|
|
2485
|
+
version = "45.0.2"
|
|
2511
2486
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2512
|
-
checksum = "
|
|
2487
|
+
checksum = "ee249346855ad102580e474da5463f86f8a7d449e6d49e00fefb304e448e2983"
|
|
2513
2488
|
dependencies = [
|
|
2514
2489
|
"proc-macro2",
|
|
2515
2490
|
"quote",
|
|
@@ -2735,9 +2710,9 @@ dependencies = [
|
|
|
2735
2710
|
|
|
2736
2711
|
[[package]]
|
|
2737
2712
|
name = "regex"
|
|
2738
|
-
version = "1.12.
|
|
2713
|
+
version = "1.12.4"
|
|
2739
2714
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2740
|
-
checksum = "
|
|
2715
|
+
checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
|
|
2741
2716
|
dependencies = [
|
|
2742
2717
|
"aho-corasick",
|
|
2743
2718
|
"memchr",
|
|
@@ -2758,9 +2733,9 @@ dependencies = [
|
|
|
2758
2733
|
|
|
2759
2734
|
[[package]]
|
|
2760
2735
|
name = "regex-syntax"
|
|
2761
|
-
version = "0.8.
|
|
2736
|
+
version = "0.8.11"
|
|
2762
2737
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2763
|
-
checksum = "
|
|
2738
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
2764
2739
|
|
|
2765
2740
|
[[package]]
|
|
2766
2741
|
name = "reqwest"
|
|
@@ -3216,9 +3191,9 @@ dependencies = [
|
|
|
3216
3191
|
|
|
3217
3192
|
[[package]]
|
|
3218
3193
|
name = "serde_with"
|
|
3219
|
-
version = "3.
|
|
3194
|
+
version = "3.21.0"
|
|
3220
3195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3221
|
-
checksum = "
|
|
3196
|
+
checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c"
|
|
3222
3197
|
dependencies = [
|
|
3223
3198
|
"base64",
|
|
3224
3199
|
"bs58",
|
|
@@ -3236,9 +3211,9 @@ dependencies = [
|
|
|
3236
3211
|
|
|
3237
3212
|
[[package]]
|
|
3238
3213
|
name = "serde_with_macros"
|
|
3239
|
-
version = "3.
|
|
3214
|
+
version = "3.21.0"
|
|
3240
3215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3241
|
-
checksum = "
|
|
3216
|
+
checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660"
|
|
3242
3217
|
dependencies = [
|
|
3243
3218
|
"darling 0.23.0",
|
|
3244
3219
|
"proc-macro2",
|
|
@@ -3341,9 +3316,9 @@ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
|
3341
3316
|
|
|
3342
3317
|
[[package]]
|
|
3343
3318
|
name = "smallvec"
|
|
3344
|
-
version = "1.15.
|
|
3319
|
+
version = "1.15.2"
|
|
3345
3320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3346
|
-
checksum = "
|
|
3321
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
3347
3322
|
dependencies = [
|
|
3348
3323
|
"serde",
|
|
3349
3324
|
]
|
|
@@ -3547,12 +3522,11 @@ dependencies = [
|
|
|
3547
3522
|
|
|
3548
3523
|
[[package]]
|
|
3549
3524
|
name = "time"
|
|
3550
|
-
version = "0.3.
|
|
3525
|
+
version = "0.3.49"
|
|
3551
3526
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3552
|
-
checksum = "
|
|
3527
|
+
checksum = "711a53c2d47bbd818258c498c8dbfe186a2526c631495cfe7e078567f86b8469"
|
|
3553
3528
|
dependencies = [
|
|
3554
3529
|
"deranged",
|
|
3555
|
-
"itoa",
|
|
3556
3530
|
"num-conv",
|
|
3557
3531
|
"powerfmt",
|
|
3558
3532
|
"serde_core",
|
|
@@ -3562,15 +3536,15 @@ dependencies = [
|
|
|
3562
3536
|
|
|
3563
3537
|
[[package]]
|
|
3564
3538
|
name = "time-core"
|
|
3565
|
-
version = "0.1.
|
|
3539
|
+
version = "0.1.9"
|
|
3566
3540
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3567
|
-
checksum = "
|
|
3541
|
+
checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
|
|
3568
3542
|
|
|
3569
3543
|
[[package]]
|
|
3570
3544
|
name = "time-macros"
|
|
3571
|
-
version = "0.2.
|
|
3545
|
+
version = "0.2.29"
|
|
3572
3546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3573
|
-
checksum = "
|
|
3547
|
+
checksum = "71c652a3727a9cbb9a02f707f530b618ce00d0ccd762009c8c23bd191df3c17d"
|
|
3574
3548
|
dependencies = [
|
|
3575
3549
|
"num-conv",
|
|
3576
3550
|
"time-core",
|
|
@@ -3923,9 +3897,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
3923
3897
|
|
|
3924
3898
|
[[package]]
|
|
3925
3899
|
name = "uuid"
|
|
3926
|
-
version = "1.23.
|
|
3900
|
+
version = "1.23.3"
|
|
3927
3901
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3928
|
-
checksum = "
|
|
3902
|
+
checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
|
|
3929
3903
|
dependencies = [
|
|
3930
3904
|
"getrandom 0.4.2",
|
|
3931
3905
|
"js-sys",
|
|
@@ -3971,9 +3945,9 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
|
3971
3945
|
|
|
3972
3946
|
[[package]]
|
|
3973
3947
|
name = "wasip2"
|
|
3974
|
-
version = "1.0.
|
|
3948
|
+
version = "1.0.4+wasi-0.2.12"
|
|
3975
3949
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3976
|
-
checksum = "
|
|
3950
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
3977
3951
|
dependencies = [
|
|
3978
3952
|
"wit-bindgen 0.57.1",
|
|
3979
3953
|
]
|
|
@@ -3989,9 +3963,9 @@ dependencies = [
|
|
|
3989
3963
|
|
|
3990
3964
|
[[package]]
|
|
3991
3965
|
name = "wasm-bindgen"
|
|
3992
|
-
version = "0.2.
|
|
3966
|
+
version = "0.2.125"
|
|
3993
3967
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3994
|
-
checksum = "
|
|
3968
|
+
checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
|
|
3995
3969
|
dependencies = [
|
|
3996
3970
|
"cfg-if",
|
|
3997
3971
|
"once_cell",
|
|
@@ -4002,9 +3976,9 @@ dependencies = [
|
|
|
4002
3976
|
|
|
4003
3977
|
[[package]]
|
|
4004
3978
|
name = "wasm-bindgen-futures"
|
|
4005
|
-
version = "0.4.
|
|
3979
|
+
version = "0.4.75"
|
|
4006
3980
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4007
|
-
checksum = "
|
|
3981
|
+
checksum = "503b14d284f2c8dac03b819967e155ea753f573586193b2b2c95990cb5d69280"
|
|
4008
3982
|
dependencies = [
|
|
4009
3983
|
"js-sys",
|
|
4010
3984
|
"wasm-bindgen",
|
|
@@ -4012,9 +3986,9 @@ dependencies = [
|
|
|
4012
3986
|
|
|
4013
3987
|
[[package]]
|
|
4014
3988
|
name = "wasm-bindgen-macro"
|
|
4015
|
-
version = "0.2.
|
|
3989
|
+
version = "0.2.125"
|
|
4016
3990
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4017
|
-
checksum = "
|
|
3991
|
+
checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
|
|
4018
3992
|
dependencies = [
|
|
4019
3993
|
"quote",
|
|
4020
3994
|
"wasm-bindgen-macro-support",
|
|
@@ -4022,9 +3996,9 @@ dependencies = [
|
|
|
4022
3996
|
|
|
4023
3997
|
[[package]]
|
|
4024
3998
|
name = "wasm-bindgen-macro-support"
|
|
4025
|
-
version = "0.2.
|
|
3999
|
+
version = "0.2.125"
|
|
4026
4000
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4027
|
-
checksum = "
|
|
4001
|
+
checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
|
|
4028
4002
|
dependencies = [
|
|
4029
4003
|
"bumpalo",
|
|
4030
4004
|
"proc-macro2",
|
|
@@ -4035,9 +4009,9 @@ dependencies = [
|
|
|
4035
4009
|
|
|
4036
4010
|
[[package]]
|
|
4037
4011
|
name = "wasm-bindgen-shared"
|
|
4038
|
-
version = "0.2.
|
|
4012
|
+
version = "0.2.125"
|
|
4039
4013
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4040
|
-
checksum = "
|
|
4014
|
+
checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
|
|
4041
4015
|
dependencies = [
|
|
4042
4016
|
"unicode-ident",
|
|
4043
4017
|
]
|
|
@@ -4091,12 +4065,12 @@ dependencies = [
|
|
|
4091
4065
|
|
|
4092
4066
|
[[package]]
|
|
4093
4067
|
name = "wasm-encoder"
|
|
4094
|
-
version = "0.
|
|
4068
|
+
version = "0.252.0"
|
|
4095
4069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4096
|
-
checksum = "
|
|
4070
|
+
checksum = "8185ae345fa5687c054626ff9a50e7089797a343d9904d1dc9820eb4c4d3196f"
|
|
4097
4071
|
dependencies = [
|
|
4098
4072
|
"leb128fmt",
|
|
4099
|
-
"wasmparser 0.
|
|
4073
|
+
"wasmparser 0.252.0",
|
|
4100
4074
|
]
|
|
4101
4075
|
|
|
4102
4076
|
[[package]]
|
|
@@ -4164,9 +4138,9 @@ dependencies = [
|
|
|
4164
4138
|
|
|
4165
4139
|
[[package]]
|
|
4166
4140
|
name = "wasmparser"
|
|
4167
|
-
version = "0.
|
|
4141
|
+
version = "0.252.0"
|
|
4168
4142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4169
|
-
checksum = "
|
|
4143
|
+
checksum = "d3eb099dcadcde5be9eef55e3a337128efd4e44b4c93122487e4d2e4e1c6627c"
|
|
4170
4144
|
dependencies = [
|
|
4171
4145
|
"bitflags",
|
|
4172
4146
|
"indexmap 2.14.0",
|
|
@@ -4186,9 +4160,9 @@ dependencies = [
|
|
|
4186
4160
|
|
|
4187
4161
|
[[package]]
|
|
4188
4162
|
name = "wasmtime"
|
|
4189
|
-
version = "45.0.
|
|
4163
|
+
version = "45.0.2"
|
|
4190
4164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4191
|
-
checksum = "
|
|
4165
|
+
checksum = "5c7ce9aa2c67f75fadcfdc6aa9097d03e7c39485dfe316f2ed6a7c0fd186c527"
|
|
4192
4166
|
dependencies = [
|
|
4193
4167
|
"addr2line",
|
|
4194
4168
|
"async-trait",
|
|
@@ -4240,9 +4214,9 @@ dependencies = [
|
|
|
4240
4214
|
|
|
4241
4215
|
[[package]]
|
|
4242
4216
|
name = "wasmtime-environ"
|
|
4243
|
-
version = "45.0.
|
|
4217
|
+
version = "45.0.2"
|
|
4244
4218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4245
|
-
checksum = "
|
|
4219
|
+
checksum = "c8fb157bd1fbf689ac89d570433a700db6f33bdfcb5ffc30e3f1c49e4c70de71"
|
|
4246
4220
|
dependencies = [
|
|
4247
4221
|
"anyhow",
|
|
4248
4222
|
"cpp_demangle",
|
|
@@ -4271,9 +4245,9 @@ dependencies = [
|
|
|
4271
4245
|
|
|
4272
4246
|
[[package]]
|
|
4273
4247
|
name = "wasmtime-internal-cache"
|
|
4274
|
-
version = "45.0.
|
|
4248
|
+
version = "45.0.2"
|
|
4275
4249
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4276
|
-
checksum = "
|
|
4250
|
+
checksum = "e0d1a46c4a2360186b59c6ed7a74a1121ac97925ae9a18db1b2f146cc27ac0b7"
|
|
4277
4251
|
dependencies = [
|
|
4278
4252
|
"base64",
|
|
4279
4253
|
"directories-next",
|
|
@@ -4291,9 +4265,9 @@ dependencies = [
|
|
|
4291
4265
|
|
|
4292
4266
|
[[package]]
|
|
4293
4267
|
name = "wasmtime-internal-component-macro"
|
|
4294
|
-
version = "45.0.
|
|
4268
|
+
version = "45.0.2"
|
|
4295
4269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4296
|
-
checksum = "
|
|
4270
|
+
checksum = "b96c17f35fae2ab574667aba0c58fd56349a6f788ac42541a2e543116d5cfb91"
|
|
4297
4271
|
dependencies = [
|
|
4298
4272
|
"anyhow",
|
|
4299
4273
|
"proc-macro2",
|
|
@@ -4306,15 +4280,15 @@ dependencies = [
|
|
|
4306
4280
|
|
|
4307
4281
|
[[package]]
|
|
4308
4282
|
name = "wasmtime-internal-component-util"
|
|
4309
|
-
version = "45.0.
|
|
4283
|
+
version = "45.0.2"
|
|
4310
4284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4311
|
-
checksum = "
|
|
4285
|
+
checksum = "9d2eeb9b53222859e6f5dc73d2ccfb33254d672469cac11b693a71912e2f3817"
|
|
4312
4286
|
|
|
4313
4287
|
[[package]]
|
|
4314
4288
|
name = "wasmtime-internal-core"
|
|
4315
|
-
version = "45.0.
|
|
4289
|
+
version = "45.0.2"
|
|
4316
4290
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4317
|
-
checksum = "
|
|
4291
|
+
checksum = "4a1deaf6bc3430abd7497b00c64f06ca2b97ca0fe41af87836446ca30949965c"
|
|
4318
4292
|
dependencies = [
|
|
4319
4293
|
"anyhow",
|
|
4320
4294
|
"hashbrown 0.17.1",
|
|
@@ -4324,9 +4298,9 @@ dependencies = [
|
|
|
4324
4298
|
|
|
4325
4299
|
[[package]]
|
|
4326
4300
|
name = "wasmtime-internal-cranelift"
|
|
4327
|
-
version = "45.0.
|
|
4301
|
+
version = "45.0.2"
|
|
4328
4302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4329
|
-
checksum = "
|
|
4303
|
+
checksum = "b845f83b5b04b11bc48329b53eb4fa8cf9f28a43c71ed8e1203f68ffa9806d1b"
|
|
4330
4304
|
dependencies = [
|
|
4331
4305
|
"cfg-if",
|
|
4332
4306
|
"cranelift-codegen",
|
|
@@ -4351,9 +4325,9 @@ dependencies = [
|
|
|
4351
4325
|
|
|
4352
4326
|
[[package]]
|
|
4353
4327
|
name = "wasmtime-internal-fiber"
|
|
4354
|
-
version = "45.0.
|
|
4328
|
+
version = "45.0.2"
|
|
4355
4329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4356
|
-
checksum = "
|
|
4330
|
+
checksum = "e10c8466f72965ae85c250f90aaa7992c089a2f8502009bd0d2c9e7d6409174a"
|
|
4357
4331
|
dependencies = [
|
|
4358
4332
|
"cc",
|
|
4359
4333
|
"cfg-if",
|
|
@@ -4366,9 +4340,9 @@ dependencies = [
|
|
|
4366
4340
|
|
|
4367
4341
|
[[package]]
|
|
4368
4342
|
name = "wasmtime-internal-jit-debug"
|
|
4369
|
-
version = "45.0.
|
|
4343
|
+
version = "45.0.2"
|
|
4370
4344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4371
|
-
checksum = "
|
|
4345
|
+
checksum = "1d3adfecf5621b14d8f8871f4cb4ed9f844197b1ddefc702ef4c859552cd9551"
|
|
4372
4346
|
dependencies = [
|
|
4373
4347
|
"cc",
|
|
4374
4348
|
"object",
|
|
@@ -4378,9 +4352,9 @@ dependencies = [
|
|
|
4378
4352
|
|
|
4379
4353
|
[[package]]
|
|
4380
4354
|
name = "wasmtime-internal-jit-icache-coherence"
|
|
4381
|
-
version = "45.0.
|
|
4355
|
+
version = "45.0.2"
|
|
4382
4356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4383
|
-
checksum = "
|
|
4357
|
+
checksum = "08d3c1e9fb618ec45c9b3477ea683cd37bee427273d7b13bba5c66a1caaf1dd6"
|
|
4384
4358
|
dependencies = [
|
|
4385
4359
|
"cfg-if",
|
|
4386
4360
|
"libc",
|
|
@@ -4390,9 +4364,9 @@ dependencies = [
|
|
|
4390
4364
|
|
|
4391
4365
|
[[package]]
|
|
4392
4366
|
name = "wasmtime-internal-unwinder"
|
|
4393
|
-
version = "45.0.
|
|
4367
|
+
version = "45.0.2"
|
|
4394
4368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4395
|
-
checksum = "
|
|
4369
|
+
checksum = "7aa91132b81f1e172ec7e7c3c114ac34209ee6b3524b3a8d6943af99803f66c5"
|
|
4396
4370
|
dependencies = [
|
|
4397
4371
|
"cfg-if",
|
|
4398
4372
|
"cranelift-codegen",
|
|
@@ -4403,9 +4377,9 @@ dependencies = [
|
|
|
4403
4377
|
|
|
4404
4378
|
[[package]]
|
|
4405
4379
|
name = "wasmtime-internal-versioned-export-macros"
|
|
4406
|
-
version = "45.0.
|
|
4380
|
+
version = "45.0.2"
|
|
4407
4381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4408
|
-
checksum = "
|
|
4382
|
+
checksum = "6ea811ffe23f597cc7708327ea25d9eb018dcf760ffe15ccb7d0b27ad635de61"
|
|
4409
4383
|
dependencies = [
|
|
4410
4384
|
"proc-macro2",
|
|
4411
4385
|
"quote",
|
|
@@ -4414,9 +4388,9 @@ dependencies = [
|
|
|
4414
4388
|
|
|
4415
4389
|
[[package]]
|
|
4416
4390
|
name = "wasmtime-internal-winch"
|
|
4417
|
-
version = "45.0.
|
|
4391
|
+
version = "45.0.2"
|
|
4418
4392
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4419
|
-
checksum = "
|
|
4393
|
+
checksum = "828b66175c54a0d00b4c1c1c76658d8aa73aeb9fa3553575c5eee56d40f2eb18"
|
|
4420
4394
|
dependencies = [
|
|
4421
4395
|
"cranelift-codegen",
|
|
4422
4396
|
"gimli",
|
|
@@ -4431,9 +4405,9 @@ dependencies = [
|
|
|
4431
4405
|
|
|
4432
4406
|
[[package]]
|
|
4433
4407
|
name = "wasmtime-internal-wit-bindgen"
|
|
4434
|
-
version = "45.0.
|
|
4408
|
+
version = "45.0.2"
|
|
4435
4409
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4436
|
-
checksum = "
|
|
4410
|
+
checksum = "4ae00896ad9bef1b3ca6401ae9a841daa6f357dd91541b6baf87082946d1bde1"
|
|
4437
4411
|
dependencies = [
|
|
4438
4412
|
"anyhow",
|
|
4439
4413
|
"bitflags",
|
|
@@ -4444,9 +4418,9 @@ dependencies = [
|
|
|
4444
4418
|
|
|
4445
4419
|
[[package]]
|
|
4446
4420
|
name = "wasmtime-wasi"
|
|
4447
|
-
version = "45.0.
|
|
4421
|
+
version = "45.0.2"
|
|
4448
4422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4449
|
-
checksum = "
|
|
4423
|
+
checksum = "6032ceffcb74cf30a2cdac298a4d6ce219058f08479ce1ab38434aadc044000b"
|
|
4450
4424
|
dependencies = [
|
|
4451
4425
|
"async-trait",
|
|
4452
4426
|
"bitflags",
|
|
@@ -4473,9 +4447,9 @@ dependencies = [
|
|
|
4473
4447
|
|
|
4474
4448
|
[[package]]
|
|
4475
4449
|
name = "wasmtime-wasi-http"
|
|
4476
|
-
version = "45.0.
|
|
4450
|
+
version = "45.0.2"
|
|
4477
4451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4478
|
-
checksum = "
|
|
4452
|
+
checksum = "bb570dc29e051beeb016aa62839871fde20d9b305b3809655d09461c304d71b2"
|
|
4479
4453
|
dependencies = [
|
|
4480
4454
|
"async-trait",
|
|
4481
4455
|
"bytes",
|
|
@@ -4494,9 +4468,9 @@ dependencies = [
|
|
|
4494
4468
|
|
|
4495
4469
|
[[package]]
|
|
4496
4470
|
name = "wasmtime-wasi-io"
|
|
4497
|
-
version = "45.0.
|
|
4471
|
+
version = "45.0.2"
|
|
4498
4472
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4499
|
-
checksum = "
|
|
4473
|
+
checksum = "25b6e6868e5b93e1e10983a17afb631b39c236d8b6b4abe9faffe78f1ee0c6e7"
|
|
4500
4474
|
dependencies = [
|
|
4501
4475
|
"async-trait",
|
|
4502
4476
|
"bytes",
|
|
@@ -4507,31 +4481,31 @@ dependencies = [
|
|
|
4507
4481
|
|
|
4508
4482
|
[[package]]
|
|
4509
4483
|
name = "wast"
|
|
4510
|
-
version = "
|
|
4484
|
+
version = "252.0.0"
|
|
4511
4485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4512
|
-
checksum = "
|
|
4486
|
+
checksum = "942a3449d6a593fccc111a6241c8df52bda168af30e40bf9580d4394d7374c65"
|
|
4513
4487
|
dependencies = [
|
|
4514
4488
|
"bumpalo",
|
|
4515
4489
|
"leb128fmt",
|
|
4516
4490
|
"memchr",
|
|
4517
4491
|
"unicode-width",
|
|
4518
|
-
"wasm-encoder 0.
|
|
4492
|
+
"wasm-encoder 0.252.0",
|
|
4519
4493
|
]
|
|
4520
4494
|
|
|
4521
4495
|
[[package]]
|
|
4522
4496
|
name = "wat"
|
|
4523
|
-
version = "1.
|
|
4497
|
+
version = "1.252.0"
|
|
4524
4498
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4525
|
-
checksum = "
|
|
4499
|
+
checksum = "c72a4ba7088f7bac94cf516e49882bdf97068904a563768cf249efc839ec42cb"
|
|
4526
4500
|
dependencies = [
|
|
4527
4501
|
"wast",
|
|
4528
4502
|
]
|
|
4529
4503
|
|
|
4530
4504
|
[[package]]
|
|
4531
4505
|
name = "web-sys"
|
|
4532
|
-
version = "0.3.
|
|
4506
|
+
version = "0.3.102"
|
|
4533
4507
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4534
|
-
checksum = "
|
|
4508
|
+
checksum = "a6430a72df5eb332242960fe84b3002a241163998241eb596d4f739b9757061d"
|
|
4535
4509
|
dependencies = [
|
|
4536
4510
|
"js-sys",
|
|
4537
4511
|
"wasm-bindgen",
|
|
@@ -4598,9 +4572,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
4598
4572
|
|
|
4599
4573
|
[[package]]
|
|
4600
4574
|
name = "winch-codegen"
|
|
4601
|
-
version = "45.0.
|
|
4575
|
+
version = "45.0.2"
|
|
4602
4576
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4603
|
-
checksum = "
|
|
4577
|
+
checksum = "89c09acfdfa281b3340e1e94ef3cf6618d69eab975280f881e154c29f49419c1"
|
|
4604
4578
|
dependencies = [
|
|
4605
4579
|
"cranelift-assembler-x64",
|
|
4606
4580
|
"cranelift-codegen",
|
|
@@ -5043,9 +5017,9 @@ dependencies = [
|
|
|
5043
5017
|
|
|
5044
5018
|
[[package]]
|
|
5045
5019
|
name = "yoke"
|
|
5046
|
-
version = "0.8.
|
|
5020
|
+
version = "0.8.3"
|
|
5047
5021
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5048
|
-
checksum = "
|
|
5022
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
5049
5023
|
dependencies = [
|
|
5050
5024
|
"stable_deref_trait",
|
|
5051
5025
|
"yoke-derive",
|
|
@@ -5066,18 +5040,18 @@ dependencies = [
|
|
|
5066
5040
|
|
|
5067
5041
|
[[package]]
|
|
5068
5042
|
name = "zerocopy"
|
|
5069
|
-
version = "0.8.
|
|
5043
|
+
version = "0.8.52"
|
|
5070
5044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5071
|
-
checksum = "
|
|
5045
|
+
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
5072
5046
|
dependencies = [
|
|
5073
5047
|
"zerocopy-derive",
|
|
5074
5048
|
]
|
|
5075
5049
|
|
|
5076
5050
|
[[package]]
|
|
5077
5051
|
name = "zerocopy-derive"
|
|
5078
|
-
version = "0.8.
|
|
5052
|
+
version = "0.8.52"
|
|
5079
5053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5080
|
-
checksum = "
|
|
5054
|
+
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
5081
5055
|
dependencies = [
|
|
5082
5056
|
"proc-macro2",
|
|
5083
5057
|
"quote",
|
|
@@ -5107,18 +5081,18 @@ dependencies = [
|
|
|
5107
5081
|
|
|
5108
5082
|
[[package]]
|
|
5109
5083
|
name = "zeroize"
|
|
5110
|
-
version = "1.
|
|
5084
|
+
version = "1.9.0"
|
|
5111
5085
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5112
|
-
checksum = "
|
|
5086
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
5113
5087
|
dependencies = [
|
|
5114
5088
|
"zeroize_derive",
|
|
5115
5089
|
]
|
|
5116
5090
|
|
|
5117
5091
|
[[package]]
|
|
5118
5092
|
name = "zeroize_derive"
|
|
5119
|
-
version = "1.
|
|
5093
|
+
version = "1.5.0"
|
|
5120
5094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5121
|
-
checksum = "
|
|
5095
|
+
checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
|
|
5122
5096
|
dependencies = [
|
|
5123
5097
|
"proc-macro2",
|
|
5124
5098
|
"quote",
|
|
@@ -3,7 +3,7 @@ members = ["act-cli", "crates/act-store"]
|
|
|
3
3
|
resolver = "3"
|
|
4
4
|
|
|
5
5
|
[workspace.package]
|
|
6
|
-
version = "0.8.
|
|
6
|
+
version = "0.8.3"
|
|
7
7
|
edition = "2024"
|
|
8
8
|
license = "MIT OR Apache-2.0"
|
|
9
9
|
repository = "https://github.com/actcore/act-cli"
|
|
@@ -11,7 +11,7 @@ homepage = "https://actcore.dev"
|
|
|
11
11
|
readme = "README.md"
|
|
12
12
|
|
|
13
13
|
[workspace.dependencies]
|
|
14
|
-
act-types = "0.
|
|
14
|
+
act-types = "0.9"
|
|
15
15
|
wasmparser = "0.250.0"
|
|
16
16
|
|
|
17
17
|
[profile.release]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|