act-cli 0.8.1__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.1 → act_cli-0.8.3}/Cargo.lock +150 -169
- {act_cli-0.8.1 → act_cli-0.8.3}/Cargo.toml +2 -2
- {act_cli-0.8.1 → act_cli-0.8.3}/PKG-INFO +1 -1
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/Cargo.toml +1 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/src/main.rs +42 -1
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/src/runtime/mod.rs +19 -3
- {act_cli-0.8.1 → act_cli-0.8.3}/README.md +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/README.md +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/build.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/src/config.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/src/format.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/src/http.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/src/resolve.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/src/rmcp_bridge.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/src/runtime/bindings/mod.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/src/runtime/effective.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/src/runtime/fs_matcher.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/src/runtime/fs_policy.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/src/runtime/http_client.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/src/runtime/http_policy.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/src/runtime/network.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/src/runtime/sessions.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/src/runtime/sockets_policy.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/wit/deps/act-core/act-core.wit +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/wit/deps/act-tools/act-tools.wit +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/wit/deps.lock +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/wit/deps.toml +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/act-cli/wit/world.wit +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/crates/act-store/Cargo.toml +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/crates/act-store/README.md +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/crates/act-store/src/fetch.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/crates/act-store/src/index.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/crates/act-store/src/layout.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/crates/act-store/src/lib.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/crates/act-store/src/lock.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/crates/act-store/src/provenance.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/crates/act-store/src/reference.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/crates/act-store/src/referrer.rs +0 -0
- {act_cli-0.8.1 → act_cli-0.8.3}/crates/act-store/src/store.rs +0 -0
- {act_cli-0.8.1 → 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",
|
|
@@ -45,6 +45,7 @@ dependencies = [
|
|
|
45
45
|
"axum",
|
|
46
46
|
"base64",
|
|
47
47
|
"bytes",
|
|
48
|
+
"bytesize",
|
|
48
49
|
"ciborium",
|
|
49
50
|
"cidr",
|
|
50
51
|
"clap",
|
|
@@ -104,9 +105,9 @@ dependencies = [
|
|
|
104
105
|
|
|
105
106
|
[[package]]
|
|
106
107
|
name = "act-types"
|
|
107
|
-
version = "0.
|
|
108
|
+
version = "0.9.0"
|
|
108
109
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
-
checksum = "
|
|
110
|
+
checksum = "1c511017d90234b0d3680e0bfa55592337502a1d5e6c3e9d10021b0e7c3d35a2"
|
|
110
111
|
dependencies = [
|
|
111
112
|
"base64",
|
|
112
113
|
"ciborium",
|
|
@@ -328,9 +329,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
|
328
329
|
|
|
329
330
|
[[package]]
|
|
330
331
|
name = "bitflags"
|
|
331
|
-
version = "2.
|
|
332
|
+
version = "2.13.0"
|
|
332
333
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
-
checksum = "
|
|
334
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
334
335
|
|
|
335
336
|
[[package]]
|
|
336
337
|
name = "block-buffer"
|
|
@@ -343,9 +344,9 @@ dependencies = [
|
|
|
343
344
|
|
|
344
345
|
[[package]]
|
|
345
346
|
name = "block-buffer"
|
|
346
|
-
version = "0.12.
|
|
347
|
+
version = "0.12.1"
|
|
347
348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
-
checksum = "
|
|
349
|
+
checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
|
|
349
350
|
dependencies = [
|
|
350
351
|
"hybrid-array",
|
|
351
352
|
]
|
|
@@ -384,6 +385,12 @@ version = "1.11.1"
|
|
|
384
385
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
385
386
|
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
386
387
|
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "bytesize"
|
|
390
|
+
version = "2.4.0"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "49e78e506b9d7633710dab98996f22f95f3d0f488e8f1aa162830556ed9fc14d"
|
|
393
|
+
|
|
387
394
|
[[package]]
|
|
388
395
|
name = "cap-fs-ext"
|
|
389
396
|
version = "3.4.5"
|
|
@@ -454,9 +461,9 @@ dependencies = [
|
|
|
454
461
|
|
|
455
462
|
[[package]]
|
|
456
463
|
name = "cc"
|
|
457
|
-
version = "1.2.
|
|
464
|
+
version = "1.2.64"
|
|
458
465
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
-
checksum = "
|
|
466
|
+
checksum = "dad887fd958be91b5098c0248def011f4523ab786cd411be668777e55063501f"
|
|
460
467
|
dependencies = [
|
|
461
468
|
"find-msvc-tools",
|
|
462
469
|
"jobserver",
|
|
@@ -489,9 +496,9 @@ dependencies = [
|
|
|
489
496
|
|
|
490
497
|
[[package]]
|
|
491
498
|
name = "chrono"
|
|
492
|
-
version = "0.4.
|
|
499
|
+
version = "0.4.45"
|
|
493
500
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
-
checksum = "
|
|
501
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
495
502
|
dependencies = [
|
|
496
503
|
"iana-time-zone",
|
|
497
504
|
"js-sys",
|
|
@@ -692,27 +699,27 @@ dependencies = [
|
|
|
692
699
|
|
|
693
700
|
[[package]]
|
|
694
701
|
name = "cranelift-assembler-x64"
|
|
695
|
-
version = "0.132.
|
|
702
|
+
version = "0.132.2"
|
|
696
703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
-
checksum = "
|
|
704
|
+
checksum = "0bc293b86236abcc45f2f72e2d18e2bd636f2a08b75eb286bae31e71e1430c91"
|
|
698
705
|
dependencies = [
|
|
699
706
|
"cranelift-assembler-x64-meta",
|
|
700
707
|
]
|
|
701
708
|
|
|
702
709
|
[[package]]
|
|
703
710
|
name = "cranelift-assembler-x64-meta"
|
|
704
|
-
version = "0.132.
|
|
711
|
+
version = "0.132.2"
|
|
705
712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
-
checksum = "
|
|
713
|
+
checksum = "b954c826eddaf1b001402cb8aecf1764c6f6d637ba69fb9e3311f1ebac965be6"
|
|
707
714
|
dependencies = [
|
|
708
715
|
"cranelift-srcgen",
|
|
709
716
|
]
|
|
710
717
|
|
|
711
718
|
[[package]]
|
|
712
719
|
name = "cranelift-bforest"
|
|
713
|
-
version = "0.132.
|
|
720
|
+
version = "0.132.2"
|
|
714
721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
-
checksum = "
|
|
722
|
+
checksum = "4053fa2575ef4a5c35d2708533df2200400ae979226cea9cc92a578b811bd4e7"
|
|
716
723
|
dependencies = [
|
|
717
724
|
"cranelift-entity",
|
|
718
725
|
"wasmtime-internal-core",
|
|
@@ -720,9 +727,9 @@ dependencies = [
|
|
|
720
727
|
|
|
721
728
|
[[package]]
|
|
722
729
|
name = "cranelift-bitset"
|
|
723
|
-
version = "0.132.
|
|
730
|
+
version = "0.132.2"
|
|
724
731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
-
checksum = "
|
|
732
|
+
checksum = "d216663191014aa63e1d2cffd058e609eaf207646d40b739d88250f65b2c4f69"
|
|
726
733
|
dependencies = [
|
|
727
734
|
"serde",
|
|
728
735
|
"serde_derive",
|
|
@@ -731,9 +738,9 @@ dependencies = [
|
|
|
731
738
|
|
|
732
739
|
[[package]]
|
|
733
740
|
name = "cranelift-codegen"
|
|
734
|
-
version = "0.132.
|
|
741
|
+
version = "0.132.2"
|
|
735
742
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
-
checksum = "
|
|
743
|
+
checksum = "9a5e7e7aad6a425a51da1ad7ab9e5d280ea97eb7c7c4545fafb567915a75aadb"
|
|
737
744
|
dependencies = [
|
|
738
745
|
"bumpalo",
|
|
739
746
|
"cranelift-assembler-x64",
|
|
@@ -759,9 +766,9 @@ dependencies = [
|
|
|
759
766
|
|
|
760
767
|
[[package]]
|
|
761
768
|
name = "cranelift-codegen-meta"
|
|
762
|
-
version = "0.132.
|
|
769
|
+
version = "0.132.2"
|
|
763
770
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
-
checksum = "
|
|
771
|
+
checksum = "c421d80a9a85f806cb02a2983b5b5368a335c319795b1f1b4b771a24479af5b0"
|
|
765
772
|
dependencies = [
|
|
766
773
|
"cranelift-assembler-x64-meta",
|
|
767
774
|
"cranelift-codegen-shared",
|
|
@@ -772,24 +779,24 @@ dependencies = [
|
|
|
772
779
|
|
|
773
780
|
[[package]]
|
|
774
781
|
name = "cranelift-codegen-shared"
|
|
775
|
-
version = "0.132.
|
|
782
|
+
version = "0.132.2"
|
|
776
783
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
-
checksum = "
|
|
784
|
+
checksum = "78fdb83ab012d0ee6a44ced7ca8788a444f17cf821c62f95d6ef87c9f0262518"
|
|
778
785
|
|
|
779
786
|
[[package]]
|
|
780
787
|
name = "cranelift-control"
|
|
781
|
-
version = "0.132.
|
|
788
|
+
version = "0.132.2"
|
|
782
789
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
783
|
-
checksum = "
|
|
790
|
+
checksum = "1b75adc6eb7bb4ac6365106afb6cac4f12fe1ddfa02ddc9fd7015ca1469b471b"
|
|
784
791
|
dependencies = [
|
|
785
792
|
"arbitrary",
|
|
786
793
|
]
|
|
787
794
|
|
|
788
795
|
[[package]]
|
|
789
796
|
name = "cranelift-entity"
|
|
790
|
-
version = "0.132.
|
|
797
|
+
version = "0.132.2"
|
|
791
798
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
|
-
checksum = "
|
|
799
|
+
checksum = "668e56db75a54816cbdd7c7b7bfc558b08bf7b2cda9d0846491517e92f3b393b"
|
|
793
800
|
dependencies = [
|
|
794
801
|
"cranelift-bitset",
|
|
795
802
|
"serde",
|
|
@@ -799,9 +806,9 @@ dependencies = [
|
|
|
799
806
|
|
|
800
807
|
[[package]]
|
|
801
808
|
name = "cranelift-frontend"
|
|
802
|
-
version = "0.132.
|
|
809
|
+
version = "0.132.2"
|
|
803
810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
804
|
-
checksum = "
|
|
811
|
+
checksum = "c63892dc1cc3ae48680183fa66997f60ffe7f1e200c8d390f8ee66edff4aef5a"
|
|
805
812
|
dependencies = [
|
|
806
813
|
"cranelift-codegen",
|
|
807
814
|
"log",
|
|
@@ -811,15 +818,15 @@ dependencies = [
|
|
|
811
818
|
|
|
812
819
|
[[package]]
|
|
813
820
|
name = "cranelift-isle"
|
|
814
|
-
version = "0.132.
|
|
821
|
+
version = "0.132.2"
|
|
815
822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
816
|
-
checksum = "
|
|
823
|
+
checksum = "94eaf429c32a12715429c7c6ddfdd43c170f4cdd7e97bfa507bd68a652091087"
|
|
817
824
|
|
|
818
825
|
[[package]]
|
|
819
826
|
name = "cranelift-native"
|
|
820
|
-
version = "0.132.
|
|
827
|
+
version = "0.132.2"
|
|
821
828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
-
checksum = "
|
|
829
|
+
checksum = "cd77674904ae9be11c1e1efdba54788b59f3d6658d747b97534bfbba2909aacc"
|
|
823
830
|
dependencies = [
|
|
824
831
|
"cranelift-codegen",
|
|
825
832
|
"libc",
|
|
@@ -828,9 +835,9 @@ dependencies = [
|
|
|
828
835
|
|
|
829
836
|
[[package]]
|
|
830
837
|
name = "cranelift-srcgen"
|
|
831
|
-
version = "0.132.
|
|
838
|
+
version = "0.132.2"
|
|
832
839
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
-
checksum = "
|
|
840
|
+
checksum = "cba7c0ff5941842c36653da155580ce41e675c204a67ac1b4e1c478a9347bbb7"
|
|
834
841
|
|
|
835
842
|
[[package]]
|
|
836
843
|
name = "crc32fast"
|
|
@@ -975,7 +982,6 @@ version = "0.5.8"
|
|
|
975
982
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
983
|
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
977
984
|
dependencies = [
|
|
978
|
-
"powerfmt",
|
|
979
985
|
"serde_core",
|
|
980
986
|
]
|
|
981
987
|
|
|
@@ -1026,7 +1032,7 @@ version = "0.11.3"
|
|
|
1026
1032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
1033
|
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
1028
1034
|
dependencies = [
|
|
1029
|
-
"block-buffer 0.12.
|
|
1035
|
+
"block-buffer 0.12.1",
|
|
1030
1036
|
"const-oid",
|
|
1031
1037
|
"crypto-common 0.2.2",
|
|
1032
1038
|
]
|
|
@@ -1398,11 +1404,10 @@ dependencies = [
|
|
|
1398
1404
|
|
|
1399
1405
|
[[package]]
|
|
1400
1406
|
name = "getset"
|
|
1401
|
-
version = "0.1.
|
|
1407
|
+
version = "0.1.7"
|
|
1402
1408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1403
|
-
checksum = "
|
|
1409
|
+
checksum = "6cf442baaabe4213ce7d1239afc26c039180b6456da2cededa316ae2c8a77a77"
|
|
1404
1410
|
dependencies = [
|
|
1405
|
-
"proc-macro-error2",
|
|
1406
1411
|
"proc-macro2",
|
|
1407
1412
|
"quote",
|
|
1408
1413
|
"syn",
|
|
@@ -1435,9 +1440,9 @@ dependencies = [
|
|
|
1435
1440
|
|
|
1436
1441
|
[[package]]
|
|
1437
1442
|
name = "h2"
|
|
1438
|
-
version = "0.4.
|
|
1443
|
+
version = "0.4.15"
|
|
1439
1444
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1440
|
-
checksum = "
|
|
1445
|
+
checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
|
|
1441
1446
|
dependencies = [
|
|
1442
1447
|
"atomic-waker",
|
|
1443
1448
|
"bytes",
|
|
@@ -1515,9 +1520,9 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
|
1515
1520
|
|
|
1516
1521
|
[[package]]
|
|
1517
1522
|
name = "http"
|
|
1518
|
-
version = "1.4.
|
|
1523
|
+
version = "1.4.2"
|
|
1519
1524
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1520
|
-
checksum = "
|
|
1525
|
+
checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
|
|
1521
1526
|
dependencies = [
|
|
1522
1527
|
"bytes",
|
|
1523
1528
|
"itoa",
|
|
@@ -1972,13 +1977,12 @@ dependencies = [
|
|
|
1972
1977
|
|
|
1973
1978
|
[[package]]
|
|
1974
1979
|
name = "js-sys"
|
|
1975
|
-
version = "0.3.
|
|
1980
|
+
version = "0.3.102"
|
|
1976
1981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1977
|
-
checksum = "
|
|
1982
|
+
checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
|
|
1978
1983
|
dependencies = [
|
|
1979
1984
|
"cfg-if",
|
|
1980
1985
|
"futures-util",
|
|
1981
|
-
"once_cell",
|
|
1982
1986
|
"wasm-bindgen",
|
|
1983
1987
|
]
|
|
1984
1988
|
|
|
@@ -2091,9 +2095,9 @@ dependencies = [
|
|
|
2091
2095
|
|
|
2092
2096
|
[[package]]
|
|
2093
2097
|
name = "log"
|
|
2094
|
-
version = "0.4.
|
|
2098
|
+
version = "0.4.32"
|
|
2095
2099
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2096
|
-
checksum = "
|
|
2100
|
+
checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
|
|
2097
2101
|
|
|
2098
2102
|
[[package]]
|
|
2099
2103
|
name = "lru-slab"
|
|
@@ -2133,9 +2137,9 @@ checksum = "4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4"
|
|
|
2133
2137
|
|
|
2134
2138
|
[[package]]
|
|
2135
2139
|
name = "memchr"
|
|
2136
|
-
version = "2.8.
|
|
2140
|
+
version = "2.8.2"
|
|
2137
2141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2138
|
-
checksum = "
|
|
2142
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
2139
2143
|
|
|
2140
2144
|
[[package]]
|
|
2141
2145
|
name = "memfd"
|
|
@@ -2441,28 +2445,6 @@ dependencies = [
|
|
|
2441
2445
|
"syn",
|
|
2442
2446
|
]
|
|
2443
2447
|
|
|
2444
|
-
[[package]]
|
|
2445
|
-
name = "proc-macro-error-attr2"
|
|
2446
|
-
version = "2.0.0"
|
|
2447
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2448
|
-
checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
|
|
2449
|
-
dependencies = [
|
|
2450
|
-
"proc-macro2",
|
|
2451
|
-
"quote",
|
|
2452
|
-
]
|
|
2453
|
-
|
|
2454
|
-
[[package]]
|
|
2455
|
-
name = "proc-macro-error2"
|
|
2456
|
-
version = "2.0.1"
|
|
2457
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2458
|
-
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
|
|
2459
|
-
dependencies = [
|
|
2460
|
-
"proc-macro-error-attr2",
|
|
2461
|
-
"proc-macro2",
|
|
2462
|
-
"quote",
|
|
2463
|
-
"syn",
|
|
2464
|
-
]
|
|
2465
|
-
|
|
2466
2448
|
[[package]]
|
|
2467
2449
|
name = "proc-macro2"
|
|
2468
2450
|
version = "1.0.106"
|
|
@@ -2488,9 +2470,9 @@ dependencies = [
|
|
|
2488
2470
|
|
|
2489
2471
|
[[package]]
|
|
2490
2472
|
name = "pulley-interpreter"
|
|
2491
|
-
version = "45.0.
|
|
2473
|
+
version = "45.0.2"
|
|
2492
2474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2493
|
-
checksum = "
|
|
2475
|
+
checksum = "2d9880c1985ccccaed3646b0ef793dc39a4b117403ed4afc6fa3ef6027c5200f"
|
|
2494
2476
|
dependencies = [
|
|
2495
2477
|
"cranelift-bitset",
|
|
2496
2478
|
"log",
|
|
@@ -2500,9 +2482,9 @@ dependencies = [
|
|
|
2500
2482
|
|
|
2501
2483
|
[[package]]
|
|
2502
2484
|
name = "pulley-macros"
|
|
2503
|
-
version = "45.0.
|
|
2485
|
+
version = "45.0.2"
|
|
2504
2486
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2505
|
-
checksum = "
|
|
2487
|
+
checksum = "ee249346855ad102580e474da5463f86f8a7d449e6d49e00fefb304e448e2983"
|
|
2506
2488
|
dependencies = [
|
|
2507
2489
|
"proc-macro2",
|
|
2508
2490
|
"quote",
|
|
@@ -2728,9 +2710,9 @@ dependencies = [
|
|
|
2728
2710
|
|
|
2729
2711
|
[[package]]
|
|
2730
2712
|
name = "regex"
|
|
2731
|
-
version = "1.12.
|
|
2713
|
+
version = "1.12.4"
|
|
2732
2714
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2733
|
-
checksum = "
|
|
2715
|
+
checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
|
|
2734
2716
|
dependencies = [
|
|
2735
2717
|
"aho-corasick",
|
|
2736
2718
|
"memchr",
|
|
@@ -2751,9 +2733,9 @@ dependencies = [
|
|
|
2751
2733
|
|
|
2752
2734
|
[[package]]
|
|
2753
2735
|
name = "regex-syntax"
|
|
2754
|
-
version = "0.8.
|
|
2736
|
+
version = "0.8.11"
|
|
2755
2737
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2756
|
-
checksum = "
|
|
2738
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
2757
2739
|
|
|
2758
2740
|
[[package]]
|
|
2759
2741
|
name = "reqwest"
|
|
@@ -3209,9 +3191,9 @@ dependencies = [
|
|
|
3209
3191
|
|
|
3210
3192
|
[[package]]
|
|
3211
3193
|
name = "serde_with"
|
|
3212
|
-
version = "3.
|
|
3194
|
+
version = "3.21.0"
|
|
3213
3195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3214
|
-
checksum = "
|
|
3196
|
+
checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c"
|
|
3215
3197
|
dependencies = [
|
|
3216
3198
|
"base64",
|
|
3217
3199
|
"bs58",
|
|
@@ -3229,9 +3211,9 @@ dependencies = [
|
|
|
3229
3211
|
|
|
3230
3212
|
[[package]]
|
|
3231
3213
|
name = "serde_with_macros"
|
|
3232
|
-
version = "3.
|
|
3214
|
+
version = "3.21.0"
|
|
3233
3215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3234
|
-
checksum = "
|
|
3216
|
+
checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660"
|
|
3235
3217
|
dependencies = [
|
|
3236
3218
|
"darling 0.23.0",
|
|
3237
3219
|
"proc-macro2",
|
|
@@ -3334,9 +3316,9 @@ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
|
3334
3316
|
|
|
3335
3317
|
[[package]]
|
|
3336
3318
|
name = "smallvec"
|
|
3337
|
-
version = "1.15.
|
|
3319
|
+
version = "1.15.2"
|
|
3338
3320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3339
|
-
checksum = "
|
|
3321
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
3340
3322
|
dependencies = [
|
|
3341
3323
|
"serde",
|
|
3342
3324
|
]
|
|
@@ -3540,12 +3522,11 @@ dependencies = [
|
|
|
3540
3522
|
|
|
3541
3523
|
[[package]]
|
|
3542
3524
|
name = "time"
|
|
3543
|
-
version = "0.3.
|
|
3525
|
+
version = "0.3.49"
|
|
3544
3526
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3545
|
-
checksum = "
|
|
3527
|
+
checksum = "711a53c2d47bbd818258c498c8dbfe186a2526c631495cfe7e078567f86b8469"
|
|
3546
3528
|
dependencies = [
|
|
3547
3529
|
"deranged",
|
|
3548
|
-
"itoa",
|
|
3549
3530
|
"num-conv",
|
|
3550
3531
|
"powerfmt",
|
|
3551
3532
|
"serde_core",
|
|
@@ -3555,15 +3536,15 @@ dependencies = [
|
|
|
3555
3536
|
|
|
3556
3537
|
[[package]]
|
|
3557
3538
|
name = "time-core"
|
|
3558
|
-
version = "0.1.
|
|
3539
|
+
version = "0.1.9"
|
|
3559
3540
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3560
|
-
checksum = "
|
|
3541
|
+
checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
|
|
3561
3542
|
|
|
3562
3543
|
[[package]]
|
|
3563
3544
|
name = "time-macros"
|
|
3564
|
-
version = "0.2.
|
|
3545
|
+
version = "0.2.29"
|
|
3565
3546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3566
|
-
checksum = "
|
|
3547
|
+
checksum = "71c652a3727a9cbb9a02f707f530b618ce00d0ccd762009c8c23bd191df3c17d"
|
|
3567
3548
|
dependencies = [
|
|
3568
3549
|
"num-conv",
|
|
3569
3550
|
"time-core",
|
|
@@ -3916,9 +3897,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
3916
3897
|
|
|
3917
3898
|
[[package]]
|
|
3918
3899
|
name = "uuid"
|
|
3919
|
-
version = "1.23.
|
|
3900
|
+
version = "1.23.3"
|
|
3920
3901
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3921
|
-
checksum = "
|
|
3902
|
+
checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
|
|
3922
3903
|
dependencies = [
|
|
3923
3904
|
"getrandom 0.4.2",
|
|
3924
3905
|
"js-sys",
|
|
@@ -3964,9 +3945,9 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
|
3964
3945
|
|
|
3965
3946
|
[[package]]
|
|
3966
3947
|
name = "wasip2"
|
|
3967
|
-
version = "1.0.
|
|
3948
|
+
version = "1.0.4+wasi-0.2.12"
|
|
3968
3949
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3969
|
-
checksum = "
|
|
3950
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
3970
3951
|
dependencies = [
|
|
3971
3952
|
"wit-bindgen 0.57.1",
|
|
3972
3953
|
]
|
|
@@ -3982,9 +3963,9 @@ dependencies = [
|
|
|
3982
3963
|
|
|
3983
3964
|
[[package]]
|
|
3984
3965
|
name = "wasm-bindgen"
|
|
3985
|
-
version = "0.2.
|
|
3966
|
+
version = "0.2.125"
|
|
3986
3967
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3987
|
-
checksum = "
|
|
3968
|
+
checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
|
|
3988
3969
|
dependencies = [
|
|
3989
3970
|
"cfg-if",
|
|
3990
3971
|
"once_cell",
|
|
@@ -3995,9 +3976,9 @@ dependencies = [
|
|
|
3995
3976
|
|
|
3996
3977
|
[[package]]
|
|
3997
3978
|
name = "wasm-bindgen-futures"
|
|
3998
|
-
version = "0.4.
|
|
3979
|
+
version = "0.4.75"
|
|
3999
3980
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4000
|
-
checksum = "
|
|
3981
|
+
checksum = "503b14d284f2c8dac03b819967e155ea753f573586193b2b2c95990cb5d69280"
|
|
4001
3982
|
dependencies = [
|
|
4002
3983
|
"js-sys",
|
|
4003
3984
|
"wasm-bindgen",
|
|
@@ -4005,9 +3986,9 @@ dependencies = [
|
|
|
4005
3986
|
|
|
4006
3987
|
[[package]]
|
|
4007
3988
|
name = "wasm-bindgen-macro"
|
|
4008
|
-
version = "0.2.
|
|
3989
|
+
version = "0.2.125"
|
|
4009
3990
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4010
|
-
checksum = "
|
|
3991
|
+
checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
|
|
4011
3992
|
dependencies = [
|
|
4012
3993
|
"quote",
|
|
4013
3994
|
"wasm-bindgen-macro-support",
|
|
@@ -4015,9 +3996,9 @@ dependencies = [
|
|
|
4015
3996
|
|
|
4016
3997
|
[[package]]
|
|
4017
3998
|
name = "wasm-bindgen-macro-support"
|
|
4018
|
-
version = "0.2.
|
|
3999
|
+
version = "0.2.125"
|
|
4019
4000
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4020
|
-
checksum = "
|
|
4001
|
+
checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
|
|
4021
4002
|
dependencies = [
|
|
4022
4003
|
"bumpalo",
|
|
4023
4004
|
"proc-macro2",
|
|
@@ -4028,9 +4009,9 @@ dependencies = [
|
|
|
4028
4009
|
|
|
4029
4010
|
[[package]]
|
|
4030
4011
|
name = "wasm-bindgen-shared"
|
|
4031
|
-
version = "0.2.
|
|
4012
|
+
version = "0.2.125"
|
|
4032
4013
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4033
|
-
checksum = "
|
|
4014
|
+
checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
|
|
4034
4015
|
dependencies = [
|
|
4035
4016
|
"unicode-ident",
|
|
4036
4017
|
]
|
|
@@ -4084,12 +4065,12 @@ dependencies = [
|
|
|
4084
4065
|
|
|
4085
4066
|
[[package]]
|
|
4086
4067
|
name = "wasm-encoder"
|
|
4087
|
-
version = "0.
|
|
4068
|
+
version = "0.252.0"
|
|
4088
4069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4089
|
-
checksum = "
|
|
4070
|
+
checksum = "8185ae345fa5687c054626ff9a50e7089797a343d9904d1dc9820eb4c4d3196f"
|
|
4090
4071
|
dependencies = [
|
|
4091
4072
|
"leb128fmt",
|
|
4092
|
-
"wasmparser 0.
|
|
4073
|
+
"wasmparser 0.252.0",
|
|
4093
4074
|
]
|
|
4094
4075
|
|
|
4095
4076
|
[[package]]
|
|
@@ -4157,9 +4138,9 @@ dependencies = [
|
|
|
4157
4138
|
|
|
4158
4139
|
[[package]]
|
|
4159
4140
|
name = "wasmparser"
|
|
4160
|
-
version = "0.
|
|
4141
|
+
version = "0.252.0"
|
|
4161
4142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4162
|
-
checksum = "
|
|
4143
|
+
checksum = "d3eb099dcadcde5be9eef55e3a337128efd4e44b4c93122487e4d2e4e1c6627c"
|
|
4163
4144
|
dependencies = [
|
|
4164
4145
|
"bitflags",
|
|
4165
4146
|
"indexmap 2.14.0",
|
|
@@ -4179,9 +4160,9 @@ dependencies = [
|
|
|
4179
4160
|
|
|
4180
4161
|
[[package]]
|
|
4181
4162
|
name = "wasmtime"
|
|
4182
|
-
version = "45.0.
|
|
4163
|
+
version = "45.0.2"
|
|
4183
4164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4184
|
-
checksum = "
|
|
4165
|
+
checksum = "5c7ce9aa2c67f75fadcfdc6aa9097d03e7c39485dfe316f2ed6a7c0fd186c527"
|
|
4185
4166
|
dependencies = [
|
|
4186
4167
|
"addr2line",
|
|
4187
4168
|
"async-trait",
|
|
@@ -4233,9 +4214,9 @@ dependencies = [
|
|
|
4233
4214
|
|
|
4234
4215
|
[[package]]
|
|
4235
4216
|
name = "wasmtime-environ"
|
|
4236
|
-
version = "45.0.
|
|
4217
|
+
version = "45.0.2"
|
|
4237
4218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4238
|
-
checksum = "
|
|
4219
|
+
checksum = "c8fb157bd1fbf689ac89d570433a700db6f33bdfcb5ffc30e3f1c49e4c70de71"
|
|
4239
4220
|
dependencies = [
|
|
4240
4221
|
"anyhow",
|
|
4241
4222
|
"cpp_demangle",
|
|
@@ -4264,9 +4245,9 @@ dependencies = [
|
|
|
4264
4245
|
|
|
4265
4246
|
[[package]]
|
|
4266
4247
|
name = "wasmtime-internal-cache"
|
|
4267
|
-
version = "45.0.
|
|
4248
|
+
version = "45.0.2"
|
|
4268
4249
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4269
|
-
checksum = "
|
|
4250
|
+
checksum = "e0d1a46c4a2360186b59c6ed7a74a1121ac97925ae9a18db1b2f146cc27ac0b7"
|
|
4270
4251
|
dependencies = [
|
|
4271
4252
|
"base64",
|
|
4272
4253
|
"directories-next",
|
|
@@ -4284,9 +4265,9 @@ dependencies = [
|
|
|
4284
4265
|
|
|
4285
4266
|
[[package]]
|
|
4286
4267
|
name = "wasmtime-internal-component-macro"
|
|
4287
|
-
version = "45.0.
|
|
4268
|
+
version = "45.0.2"
|
|
4288
4269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4289
|
-
checksum = "
|
|
4270
|
+
checksum = "b96c17f35fae2ab574667aba0c58fd56349a6f788ac42541a2e543116d5cfb91"
|
|
4290
4271
|
dependencies = [
|
|
4291
4272
|
"anyhow",
|
|
4292
4273
|
"proc-macro2",
|
|
@@ -4299,15 +4280,15 @@ dependencies = [
|
|
|
4299
4280
|
|
|
4300
4281
|
[[package]]
|
|
4301
4282
|
name = "wasmtime-internal-component-util"
|
|
4302
|
-
version = "45.0.
|
|
4283
|
+
version = "45.0.2"
|
|
4303
4284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4304
|
-
checksum = "
|
|
4285
|
+
checksum = "9d2eeb9b53222859e6f5dc73d2ccfb33254d672469cac11b693a71912e2f3817"
|
|
4305
4286
|
|
|
4306
4287
|
[[package]]
|
|
4307
4288
|
name = "wasmtime-internal-core"
|
|
4308
|
-
version = "45.0.
|
|
4289
|
+
version = "45.0.2"
|
|
4309
4290
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4310
|
-
checksum = "
|
|
4291
|
+
checksum = "4a1deaf6bc3430abd7497b00c64f06ca2b97ca0fe41af87836446ca30949965c"
|
|
4311
4292
|
dependencies = [
|
|
4312
4293
|
"anyhow",
|
|
4313
4294
|
"hashbrown 0.17.1",
|
|
@@ -4317,9 +4298,9 @@ dependencies = [
|
|
|
4317
4298
|
|
|
4318
4299
|
[[package]]
|
|
4319
4300
|
name = "wasmtime-internal-cranelift"
|
|
4320
|
-
version = "45.0.
|
|
4301
|
+
version = "45.0.2"
|
|
4321
4302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4322
|
-
checksum = "
|
|
4303
|
+
checksum = "b845f83b5b04b11bc48329b53eb4fa8cf9f28a43c71ed8e1203f68ffa9806d1b"
|
|
4323
4304
|
dependencies = [
|
|
4324
4305
|
"cfg-if",
|
|
4325
4306
|
"cranelift-codegen",
|
|
@@ -4344,9 +4325,9 @@ dependencies = [
|
|
|
4344
4325
|
|
|
4345
4326
|
[[package]]
|
|
4346
4327
|
name = "wasmtime-internal-fiber"
|
|
4347
|
-
version = "45.0.
|
|
4328
|
+
version = "45.0.2"
|
|
4348
4329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4349
|
-
checksum = "
|
|
4330
|
+
checksum = "e10c8466f72965ae85c250f90aaa7992c089a2f8502009bd0d2c9e7d6409174a"
|
|
4350
4331
|
dependencies = [
|
|
4351
4332
|
"cc",
|
|
4352
4333
|
"cfg-if",
|
|
@@ -4359,9 +4340,9 @@ dependencies = [
|
|
|
4359
4340
|
|
|
4360
4341
|
[[package]]
|
|
4361
4342
|
name = "wasmtime-internal-jit-debug"
|
|
4362
|
-
version = "45.0.
|
|
4343
|
+
version = "45.0.2"
|
|
4363
4344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4364
|
-
checksum = "
|
|
4345
|
+
checksum = "1d3adfecf5621b14d8f8871f4cb4ed9f844197b1ddefc702ef4c859552cd9551"
|
|
4365
4346
|
dependencies = [
|
|
4366
4347
|
"cc",
|
|
4367
4348
|
"object",
|
|
@@ -4371,9 +4352,9 @@ dependencies = [
|
|
|
4371
4352
|
|
|
4372
4353
|
[[package]]
|
|
4373
4354
|
name = "wasmtime-internal-jit-icache-coherence"
|
|
4374
|
-
version = "45.0.
|
|
4355
|
+
version = "45.0.2"
|
|
4375
4356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4376
|
-
checksum = "
|
|
4357
|
+
checksum = "08d3c1e9fb618ec45c9b3477ea683cd37bee427273d7b13bba5c66a1caaf1dd6"
|
|
4377
4358
|
dependencies = [
|
|
4378
4359
|
"cfg-if",
|
|
4379
4360
|
"libc",
|
|
@@ -4383,9 +4364,9 @@ dependencies = [
|
|
|
4383
4364
|
|
|
4384
4365
|
[[package]]
|
|
4385
4366
|
name = "wasmtime-internal-unwinder"
|
|
4386
|
-
version = "45.0.
|
|
4367
|
+
version = "45.0.2"
|
|
4387
4368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4388
|
-
checksum = "
|
|
4369
|
+
checksum = "7aa91132b81f1e172ec7e7c3c114ac34209ee6b3524b3a8d6943af99803f66c5"
|
|
4389
4370
|
dependencies = [
|
|
4390
4371
|
"cfg-if",
|
|
4391
4372
|
"cranelift-codegen",
|
|
@@ -4396,9 +4377,9 @@ dependencies = [
|
|
|
4396
4377
|
|
|
4397
4378
|
[[package]]
|
|
4398
4379
|
name = "wasmtime-internal-versioned-export-macros"
|
|
4399
|
-
version = "45.0.
|
|
4380
|
+
version = "45.0.2"
|
|
4400
4381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4401
|
-
checksum = "
|
|
4382
|
+
checksum = "6ea811ffe23f597cc7708327ea25d9eb018dcf760ffe15ccb7d0b27ad635de61"
|
|
4402
4383
|
dependencies = [
|
|
4403
4384
|
"proc-macro2",
|
|
4404
4385
|
"quote",
|
|
@@ -4407,9 +4388,9 @@ dependencies = [
|
|
|
4407
4388
|
|
|
4408
4389
|
[[package]]
|
|
4409
4390
|
name = "wasmtime-internal-winch"
|
|
4410
|
-
version = "45.0.
|
|
4391
|
+
version = "45.0.2"
|
|
4411
4392
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4412
|
-
checksum = "
|
|
4393
|
+
checksum = "828b66175c54a0d00b4c1c1c76658d8aa73aeb9fa3553575c5eee56d40f2eb18"
|
|
4413
4394
|
dependencies = [
|
|
4414
4395
|
"cranelift-codegen",
|
|
4415
4396
|
"gimli",
|
|
@@ -4424,9 +4405,9 @@ dependencies = [
|
|
|
4424
4405
|
|
|
4425
4406
|
[[package]]
|
|
4426
4407
|
name = "wasmtime-internal-wit-bindgen"
|
|
4427
|
-
version = "45.0.
|
|
4408
|
+
version = "45.0.2"
|
|
4428
4409
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4429
|
-
checksum = "
|
|
4410
|
+
checksum = "4ae00896ad9bef1b3ca6401ae9a841daa6f357dd91541b6baf87082946d1bde1"
|
|
4430
4411
|
dependencies = [
|
|
4431
4412
|
"anyhow",
|
|
4432
4413
|
"bitflags",
|
|
@@ -4437,9 +4418,9 @@ dependencies = [
|
|
|
4437
4418
|
|
|
4438
4419
|
[[package]]
|
|
4439
4420
|
name = "wasmtime-wasi"
|
|
4440
|
-
version = "45.0.
|
|
4421
|
+
version = "45.0.2"
|
|
4441
4422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4442
|
-
checksum = "
|
|
4423
|
+
checksum = "6032ceffcb74cf30a2cdac298a4d6ce219058f08479ce1ab38434aadc044000b"
|
|
4443
4424
|
dependencies = [
|
|
4444
4425
|
"async-trait",
|
|
4445
4426
|
"bitflags",
|
|
@@ -4466,9 +4447,9 @@ dependencies = [
|
|
|
4466
4447
|
|
|
4467
4448
|
[[package]]
|
|
4468
4449
|
name = "wasmtime-wasi-http"
|
|
4469
|
-
version = "45.0.
|
|
4450
|
+
version = "45.0.2"
|
|
4470
4451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4471
|
-
checksum = "
|
|
4452
|
+
checksum = "bb570dc29e051beeb016aa62839871fde20d9b305b3809655d09461c304d71b2"
|
|
4472
4453
|
dependencies = [
|
|
4473
4454
|
"async-trait",
|
|
4474
4455
|
"bytes",
|
|
@@ -4487,9 +4468,9 @@ dependencies = [
|
|
|
4487
4468
|
|
|
4488
4469
|
[[package]]
|
|
4489
4470
|
name = "wasmtime-wasi-io"
|
|
4490
|
-
version = "45.0.
|
|
4471
|
+
version = "45.0.2"
|
|
4491
4472
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4492
|
-
checksum = "
|
|
4473
|
+
checksum = "25b6e6868e5b93e1e10983a17afb631b39c236d8b6b4abe9faffe78f1ee0c6e7"
|
|
4493
4474
|
dependencies = [
|
|
4494
4475
|
"async-trait",
|
|
4495
4476
|
"bytes",
|
|
@@ -4500,31 +4481,31 @@ dependencies = [
|
|
|
4500
4481
|
|
|
4501
4482
|
[[package]]
|
|
4502
4483
|
name = "wast"
|
|
4503
|
-
version = "
|
|
4484
|
+
version = "252.0.0"
|
|
4504
4485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4505
|
-
checksum = "
|
|
4486
|
+
checksum = "942a3449d6a593fccc111a6241c8df52bda168af30e40bf9580d4394d7374c65"
|
|
4506
4487
|
dependencies = [
|
|
4507
4488
|
"bumpalo",
|
|
4508
4489
|
"leb128fmt",
|
|
4509
4490
|
"memchr",
|
|
4510
4491
|
"unicode-width",
|
|
4511
|
-
"wasm-encoder 0.
|
|
4492
|
+
"wasm-encoder 0.252.0",
|
|
4512
4493
|
]
|
|
4513
4494
|
|
|
4514
4495
|
[[package]]
|
|
4515
4496
|
name = "wat"
|
|
4516
|
-
version = "1.
|
|
4497
|
+
version = "1.252.0"
|
|
4517
4498
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4518
|
-
checksum = "
|
|
4499
|
+
checksum = "c72a4ba7088f7bac94cf516e49882bdf97068904a563768cf249efc839ec42cb"
|
|
4519
4500
|
dependencies = [
|
|
4520
4501
|
"wast",
|
|
4521
4502
|
]
|
|
4522
4503
|
|
|
4523
4504
|
[[package]]
|
|
4524
4505
|
name = "web-sys"
|
|
4525
|
-
version = "0.3.
|
|
4506
|
+
version = "0.3.102"
|
|
4526
4507
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4527
|
-
checksum = "
|
|
4508
|
+
checksum = "a6430a72df5eb332242960fe84b3002a241163998241eb596d4f739b9757061d"
|
|
4528
4509
|
dependencies = [
|
|
4529
4510
|
"js-sys",
|
|
4530
4511
|
"wasm-bindgen",
|
|
@@ -4591,9 +4572,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
4591
4572
|
|
|
4592
4573
|
[[package]]
|
|
4593
4574
|
name = "winch-codegen"
|
|
4594
|
-
version = "45.0.
|
|
4575
|
+
version = "45.0.2"
|
|
4595
4576
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4596
|
-
checksum = "
|
|
4577
|
+
checksum = "89c09acfdfa281b3340e1e94ef3cf6618d69eab975280f881e154c29f49419c1"
|
|
4597
4578
|
dependencies = [
|
|
4598
4579
|
"cranelift-assembler-x64",
|
|
4599
4580
|
"cranelift-codegen",
|
|
@@ -5036,9 +5017,9 @@ dependencies = [
|
|
|
5036
5017
|
|
|
5037
5018
|
[[package]]
|
|
5038
5019
|
name = "yoke"
|
|
5039
|
-
version = "0.8.
|
|
5020
|
+
version = "0.8.3"
|
|
5040
5021
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5041
|
-
checksum = "
|
|
5022
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
5042
5023
|
dependencies = [
|
|
5043
5024
|
"stable_deref_trait",
|
|
5044
5025
|
"yoke-derive",
|
|
@@ -5059,18 +5040,18 @@ dependencies = [
|
|
|
5059
5040
|
|
|
5060
5041
|
[[package]]
|
|
5061
5042
|
name = "zerocopy"
|
|
5062
|
-
version = "0.8.
|
|
5043
|
+
version = "0.8.52"
|
|
5063
5044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5064
|
-
checksum = "
|
|
5045
|
+
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
5065
5046
|
dependencies = [
|
|
5066
5047
|
"zerocopy-derive",
|
|
5067
5048
|
]
|
|
5068
5049
|
|
|
5069
5050
|
[[package]]
|
|
5070
5051
|
name = "zerocopy-derive"
|
|
5071
|
-
version = "0.8.
|
|
5052
|
+
version = "0.8.52"
|
|
5072
5053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5073
|
-
checksum = "
|
|
5054
|
+
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
5074
5055
|
dependencies = [
|
|
5075
5056
|
"proc-macro2",
|
|
5076
5057
|
"quote",
|
|
@@ -5100,18 +5081,18 @@ dependencies = [
|
|
|
5100
5081
|
|
|
5101
5082
|
[[package]]
|
|
5102
5083
|
name = "zeroize"
|
|
5103
|
-
version = "1.
|
|
5084
|
+
version = "1.9.0"
|
|
5104
5085
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5105
|
-
checksum = "
|
|
5086
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
5106
5087
|
dependencies = [
|
|
5107
5088
|
"zeroize_derive",
|
|
5108
5089
|
]
|
|
5109
5090
|
|
|
5110
5091
|
[[package]]
|
|
5111
5092
|
name = "zeroize_derive"
|
|
5112
|
-
version = "1.
|
|
5093
|
+
version = "1.5.0"
|
|
5113
5094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5114
|
-
checksum = "
|
|
5095
|
+
checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
|
|
5115
5096
|
dependencies = [
|
|
5116
5097
|
"proc-macro2",
|
|
5117
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]
|
|
@@ -55,6 +55,12 @@ struct CommonOpts {
|
|
|
55
55
|
#[arg(long = "deny-socket")]
|
|
56
56
|
sockets_deny: Vec<String>,
|
|
57
57
|
|
|
58
|
+
/// Cap the component's wasm linear memory. Accepts a byte count or a size
|
|
59
|
+
/// with a unit — binary (`512MiB`) or decimal (`512MB`). Growth past the cap
|
|
60
|
+
/// fails inside the guest instead of ballooning the host process.
|
|
61
|
+
#[arg(long = "max-memory", value_parser = parse_max_memory)]
|
|
62
|
+
max_memory: Option<usize>,
|
|
63
|
+
|
|
58
64
|
/// Use a named profile from the config file
|
|
59
65
|
#[arg(long)]
|
|
60
66
|
profile: Option<String>,
|
|
@@ -318,6 +324,22 @@ fn parse_cli_metadata(
|
|
|
318
324
|
}
|
|
319
325
|
}
|
|
320
326
|
|
|
327
|
+
/// Parse a `--max-memory` value via the `bytesize` crate: a byte count or a
|
|
328
|
+
/// size with a unit, decimal (`512MB` = 512·10⁶) or binary (`512MiB` = 512·2²⁰).
|
|
329
|
+
fn parse_max_memory(s: &str) -> Result<usize, String> {
|
|
330
|
+
let bytes = s
|
|
331
|
+
.trim()
|
|
332
|
+
.parse::<bytesize::ByteSize>()
|
|
333
|
+
.map_err(|e| format!("invalid --max-memory value '{s}': {e}"))?
|
|
334
|
+
.as_u64();
|
|
335
|
+
let bytes =
|
|
336
|
+
usize::try_from(bytes).map_err(|_| format!("--max-memory value too large: '{s}'"))?;
|
|
337
|
+
if bytes == 0 {
|
|
338
|
+
return Err(format!("--max-memory must be greater than 0: '{s}'"));
|
|
339
|
+
}
|
|
340
|
+
Ok(bytes)
|
|
341
|
+
}
|
|
342
|
+
|
|
321
343
|
struct ResolvedOpts {
|
|
322
344
|
#[allow(dead_code)]
|
|
323
345
|
config_file: config::ConfigFile,
|
|
@@ -325,6 +347,7 @@ struct ResolvedOpts {
|
|
|
325
347
|
http: config::HttpConfig,
|
|
326
348
|
sockets: config::SocketsConfig,
|
|
327
349
|
metadata: Option<serde_json::Value>,
|
|
350
|
+
max_memory: Option<usize>,
|
|
328
351
|
}
|
|
329
352
|
|
|
330
353
|
fn resolve_opts(opts: &CommonOpts) -> Result<ResolvedOpts> {
|
|
@@ -360,6 +383,7 @@ fn resolve_opts(opts: &CommonOpts) -> Result<ResolvedOpts> {
|
|
|
360
383
|
http,
|
|
361
384
|
sockets,
|
|
362
385
|
metadata,
|
|
386
|
+
max_memory: opts.max_memory,
|
|
363
387
|
})
|
|
364
388
|
}
|
|
365
389
|
|
|
@@ -388,6 +412,7 @@ async fn prepare_component(
|
|
|
388
412
|
let fs = resolved.fs;
|
|
389
413
|
let http = resolved.http;
|
|
390
414
|
let sockets = resolved.sockets;
|
|
415
|
+
let max_memory = resolved.max_memory;
|
|
391
416
|
|
|
392
417
|
let mut preopens = runtime::fs_policy::derive_preopens(&fs);
|
|
393
418
|
let mount_root = info.std.capabilities.fs_mount_root().unwrap_or("/");
|
|
@@ -410,7 +435,7 @@ async fn prepare_component(
|
|
|
410
435
|
let wasm = runtime::load_component(&engine, &component_path)?;
|
|
411
436
|
let linker = runtime::create_linker(&engine)?;
|
|
412
437
|
let (instance, session_provider, store) = runtime::instantiate_component(
|
|
413
|
-
&engine, &wasm, &linker, &preopens, &http, &fs, &sockets, &info,
|
|
438
|
+
&engine, &wasm, &linker, &preopens, &http, &fs, &sockets, &info, max_memory,
|
|
414
439
|
)
|
|
415
440
|
.await?;
|
|
416
441
|
let has_sessions = session_provider.is_some();
|
|
@@ -969,6 +994,22 @@ mod tests {
|
|
|
969
994
|
assert_eq!(result, Some(serde_json::json!({"key": "value"})));
|
|
970
995
|
}
|
|
971
996
|
|
|
997
|
+
#[test]
|
|
998
|
+
fn parse_max_memory_units_and_bytes() {
|
|
999
|
+
assert_eq!(parse_max_memory("268435456").unwrap(), 256 << 20); // bare = bytes
|
|
1000
|
+
assert_eq!(parse_max_memory("256MiB").unwrap(), 256 << 20); // binary
|
|
1001
|
+
assert_eq!(parse_max_memory("1GiB").unwrap(), 1 << 30);
|
|
1002
|
+
assert_eq!(parse_max_memory("512KiB").unwrap(), 512 << 10);
|
|
1003
|
+
assert_eq!(parse_max_memory("256MB").unwrap(), 256_000_000); // decimal
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
#[test]
|
|
1007
|
+
fn parse_max_memory_rejects_garbage_and_zero() {
|
|
1008
|
+
assert!(parse_max_memory("12xyz").is_err());
|
|
1009
|
+
assert!(parse_max_memory("").is_err());
|
|
1010
|
+
assert!(parse_max_memory("0").is_err());
|
|
1011
|
+
}
|
|
1012
|
+
|
|
972
1013
|
#[test]
|
|
973
1014
|
fn parse_cli_metadata_from_file() {
|
|
974
1015
|
let mut file = NamedTempFile::new().unwrap();
|
|
@@ -5,7 +5,9 @@ use std::pin::Pin;
|
|
|
5
5
|
use std::task::{Context, Poll};
|
|
6
6
|
use tokio::sync::{mpsc, oneshot};
|
|
7
7
|
use wasmtime::component::{Component, Linker, ResourceTable, Source, StreamConsumer, StreamResult};
|
|
8
|
-
use wasmtime::{
|
|
8
|
+
use wasmtime::{
|
|
9
|
+
AsContextMut, Config, Engine, Store, StoreContextMut, StoreLimits, StoreLimitsBuilder,
|
|
10
|
+
};
|
|
9
11
|
use wasmtime_wasi::{WasiCtx, WasiCtxBuilder, WasiCtxView, WasiView};
|
|
10
12
|
use wasmtime_wasi_http::WasiHttpCtx;
|
|
11
13
|
use wasmtime_wasi_http::p3::WasiHttpCtxView;
|
|
@@ -36,6 +38,9 @@ pub struct HostState {
|
|
|
36
38
|
fs_matcher: crate::runtime::fs_matcher::FsMatcher,
|
|
37
39
|
fs_mode: crate::config::PolicyMode,
|
|
38
40
|
fd_paths: crate::runtime::fs_policy::FdPathMap,
|
|
41
|
+
/// Caps the component's wasm linear memory growth (via `store.limiter`).
|
|
42
|
+
/// Default `StoreLimits` is unlimited.
|
|
43
|
+
limits: StoreLimits,
|
|
39
44
|
}
|
|
40
45
|
|
|
41
46
|
impl HostState {
|
|
@@ -153,6 +158,7 @@ pub async fn create_store(
|
|
|
153
158
|
fs: &crate::config::FsConfig,
|
|
154
159
|
sockets: &crate::config::SocketsConfig,
|
|
155
160
|
info: &ComponentInfo,
|
|
161
|
+
max_memory: Option<usize>,
|
|
156
162
|
) -> Result<Store<HostState>> {
|
|
157
163
|
// Intersect user policy with the component's declared capabilities.
|
|
158
164
|
let effective_fs = crate::runtime::effective::effective_fs(fs, &info.std.capabilities).config;
|
|
@@ -208,8 +214,17 @@ pub async fn create_store(
|
|
|
208
214
|
preopens: preopen_pairs,
|
|
209
215
|
by_rep: Default::default(),
|
|
210
216
|
},
|
|
217
|
+
limits: match max_memory {
|
|
218
|
+
Some(bytes) => StoreLimitsBuilder::new().memory_size(bytes).build(),
|
|
219
|
+
None => StoreLimits::default(),
|
|
220
|
+
},
|
|
211
221
|
};
|
|
212
|
-
|
|
222
|
+
let mut store = Store::new(engine, state);
|
|
223
|
+
// Enforce the linear-memory cap: when the guest grows memory past the limit,
|
|
224
|
+
// `memory.grow` fails (the guest typically traps OOM) instead of letting the
|
|
225
|
+
// host process balloon. No-op when `max_memory` is None (default limits).
|
|
226
|
+
store.limiter(|state| &mut state.limits);
|
|
227
|
+
Ok(store)
|
|
213
228
|
}
|
|
214
229
|
|
|
215
230
|
// ── Component info from custom section ──
|
|
@@ -346,12 +361,13 @@ pub async fn instantiate_component(
|
|
|
346
361
|
fs: &crate::config::FsConfig,
|
|
347
362
|
sockets: &crate::config::SocketsConfig,
|
|
348
363
|
info: &ComponentInfo,
|
|
364
|
+
max_memory: Option<usize>,
|
|
349
365
|
) -> Result<(
|
|
350
366
|
ActWorld,
|
|
351
367
|
Option<sessions::SessionProvider>,
|
|
352
368
|
Store<HostState>,
|
|
353
369
|
)> {
|
|
354
|
-
let mut store = create_store(engine, preopens, http, fs, sockets, info).await?;
|
|
370
|
+
let mut store = create_store(engine, preopens, http, fs, sockets, info, max_memory).await?;
|
|
355
371
|
|
|
356
372
|
// Manual instantiation flow (replicates ActWorld::instantiate_async)
|
|
357
373
|
// so we keep access to the raw `Instance` for session-provider lookup.
|
|
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
|