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.
Files changed (43) hide show
  1. {act_cli-0.8.2 → act_cli-0.9.0}/Cargo.lock +181 -349
  2. {act_cli-0.8.2 → act_cli-0.9.0}/Cargo.toml +2 -2
  3. {act_cli-0.8.2 → act_cli-0.9.0}/PKG-INFO +3 -3
  4. {act_cli-0.8.2/act-cli → act_cli-0.9.0}/README.md +2 -2
  5. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/Cargo.toml +6 -2
  6. {act_cli-0.8.2/crates/act-store → act_cli-0.9.0/act-cli}/README.md +2 -2
  7. act_cli-0.9.0/act-cli/src/config.rs +769 -0
  8. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/format.rs +181 -31
  9. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/main.rs +334 -100
  10. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/rmcp_bridge.rs +15 -1
  11. act_cli-0.9.0/act-cli/src/runtime/consent.rs +206 -0
  12. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/runtime/effective.rs +155 -60
  13. act_cli-0.9.0/act-cli/src/runtime/elicit.rs +164 -0
  14. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/runtime/fs_matcher.rs +124 -1
  15. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/runtime/fs_policy.rs +364 -105
  16. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/runtime/http_client.rs +5 -0
  17. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/runtime/http_policy.rs +133 -6
  18. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/runtime/mod.rs +22 -2
  19. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/runtime/network.rs +44 -13
  20. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/runtime/sockets_policy.rs +137 -28
  21. {act_cli-0.8.2 → act_cli-0.9.0}/crates/act-store/Cargo.toml +1 -1
  22. {act_cli-0.8.2 → act_cli-0.9.0/crates/act-store}/README.md +2 -2
  23. act_cli-0.8.2/act-cli/src/config.rs +0 -692
  24. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/build.rs +0 -0
  25. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/http.rs +0 -0
  26. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/resolve.rs +0 -0
  27. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/runtime/bindings/mod.rs +0 -0
  28. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/src/runtime/sessions.rs +0 -0
  29. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/wit/deps/act-core/act-core.wit +0 -0
  30. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/wit/deps/act-tools/act-tools.wit +0 -0
  31. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/wit/deps.lock +0 -0
  32. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/wit/deps.toml +0 -0
  33. {act_cli-0.8.2 → act_cli-0.9.0}/act-cli/wit/world.wit +0 -0
  34. {act_cli-0.8.2 → act_cli-0.9.0}/crates/act-store/src/fetch.rs +0 -0
  35. {act_cli-0.8.2 → act_cli-0.9.0}/crates/act-store/src/index.rs +0 -0
  36. {act_cli-0.8.2 → act_cli-0.9.0}/crates/act-store/src/layout.rs +0 -0
  37. {act_cli-0.8.2 → act_cli-0.9.0}/crates/act-store/src/lib.rs +0 -0
  38. {act_cli-0.8.2 → act_cli-0.9.0}/crates/act-store/src/lock.rs +0 -0
  39. {act_cli-0.8.2 → act_cli-0.9.0}/crates/act-store/src/provenance.rs +0 -0
  40. {act_cli-0.8.2 → act_cli-0.9.0}/crates/act-store/src/reference.rs +0 -0
  41. {act_cli-0.8.2 → act_cli-0.9.0}/crates/act-store/src/referrer.rs +0 -0
  42. {act_cli-0.8.2 → act_cli-0.9.0}/crates/act-store/src/store.rs +0 -0
  43. {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.8.2"
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.8.2"
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.1.1"
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.7.1"
110
+ version = "0.11.0"
109
111
  source = "registry+https://github.com/rust-lang/crates.io-index"
110
- checksum = "40744091fc7b75e2f694d0df62476f5dea36c72fc6bf3bed86364ffb1a52c691"
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.12.1"
334
+ version = "2.13.0"
333
335
  source = "registry+https://github.com/rust-lang/crates.io-index"
334
- checksum = "84d7ced0ae9557296835c32bf1b1e02b44c746701f898460fb000d7eaa84f00a"
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.0"
349
+ version = "0.12.1"
348
350
  source = "registry+https://github.com/rust-lang/crates.io-index"
349
- checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
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.11.1"
386
+ version = "1.12.0"
385
387
  source = "registry+https://github.com/rust-lang/crates.io-index"
386
- checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
388
+ checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
387
389
 
388
390
  [[package]]
389
391
  name = "bytesize"
390
- version = "2.3.1"
392
+ version = "2.4.0"
391
393
  source = "registry+https://github.com/rust-lang/crates.io-index"
392
- checksum = "6bd91ee7b2422bcb158d90ef4d14f75ef67f340943fc4149891dcce8f8b972a3"
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.63"
466
+ version = "1.2.64"
465
467
  source = "registry+https://github.com/rust-lang/crates.io-index"
466
- checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
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.44"
501
+ version = "0.4.45"
500
502
  source = "registry+https://github.com/rust-lang/crates.io-index"
501
- checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
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.0"
704
+ version = "0.132.2"
703
705
  source = "registry+https://github.com/rust-lang/crates.io-index"
704
- checksum = "8c80cf55a351448317210f26c434be761bcb25e7b36116ec92f89540b73e2833"
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.0"
713
+ version = "0.132.2"
712
714
  source = "registry+https://github.com/rust-lang/crates.io-index"
713
- checksum = "07937ca8617b340162fe3a4716be885b5847e9b56d6c7a89abbe4d42340fdc91"
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.0"
722
+ version = "0.132.2"
721
723
  source = "registry+https://github.com/rust-lang/crates.io-index"
722
- checksum = "88217b08180882436d54c0133274885c590698ae854e352bede1cda041230800"
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.0"
732
+ version = "0.132.2"
731
733
  source = "registry+https://github.com/rust-lang/crates.io-index"
732
- checksum = "d5c3cf7ba29fa56e56040848e34835d4e45988b2760ef212413409af95ffd8c1"
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.0"
743
+ version = "0.132.2"
742
744
  source = "registry+https://github.com/rust-lang/crates.io-index"
743
- checksum = "ebe1aac2efd4cba2047845fce38a68519935a30e20c8a6294ba7e2f448fe722d"
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.0"
771
+ version = "0.132.2"
770
772
  source = "registry+https://github.com/rust-lang/crates.io-index"
771
- checksum = "0909eaf9d6f18f5bf802d50608cb4368ac340fbd03cc44f2888d1cfcc3faa64e"
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.0"
784
+ version = "0.132.2"
783
785
  source = "registry+https://github.com/rust-lang/crates.io-index"
784
- checksum = "c95a8da8be283f49cda7d0ef228c94f10d791e517b27b0c7e282dadd2e79ce45"
786
+ checksum = "78fdb83ab012d0ee6a44ced7ca8788a444f17cf821c62f95d6ef87c9f0262518"
785
787
 
786
788
  [[package]]
787
789
  name = "cranelift-control"
788
- version = "0.132.0"
790
+ version = "0.132.2"
789
791
  source = "registry+https://github.com/rust-lang/crates.io-index"
790
- checksum = "f5b19c81145146da1f7afda2e7f52111842fe6793512e740ad5cf3f5639e6212"
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.0"
799
+ version = "0.132.2"
798
800
  source = "registry+https://github.com/rust-lang/crates.io-index"
799
- checksum = "4a55309b47e6633ab05821304206cb1e92952e845b1224985562bb7ac1e92323"
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.0"
811
+ version = "0.132.2"
810
812
  source = "registry+https://github.com/rust-lang/crates.io-index"
811
- checksum = "064d2d3533d9608f1cf44c8899cf2f7f33feb70300b0fb83e687b0d9e7b91147"
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.0"
823
+ version = "0.132.2"
822
824
  source = "registry+https://github.com/rust-lang/crates.io-index"
823
- checksum = "1ac4e0bc095b2dab2212d1e99d7a74b62afc1485db023f1c0cb34a68758f7bd1"
825
+ checksum = "94eaf429c32a12715429c7c6ddfdd43c170f4cdd7e97bfa507bd68a652091087"
824
826
 
825
827
  [[package]]
826
828
  name = "cranelift-native"
827
- version = "0.132.0"
829
+ version = "0.132.2"
828
830
  source = "registry+https://github.com/rust-lang/crates.io-index"
829
- checksum = "09a40053f5cb925451dd1d57393d14ad3145c8e0786701c27b5415ebb9a3ba4f"
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.0"
840
+ version = "0.132.2"
839
841
  source = "registry+https://github.com/rust-lang/crates.io-index"
840
- checksum = "a3ceab9a53f7d362c89841fbaa8e63e44d47c40e91dc96ee6f777fca5d6b323b"
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.0",
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.2"
1389
+ version = "0.4.3"
1395
1390
  source = "registry+https://github.com/rust-lang/crates.io-index"
1396
- checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
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.6"
1401
+ version = "0.1.7"
1409
1402
  source = "registry+https://github.com/rust-lang/crates.io-index"
1410
- checksum = "9cf0fc11e47561d47397154977bc219f4cf809b2974facc3ccb3b89e2436f912"
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.14"
1437
+ version = "0.4.15"
1446
1438
  source = "registry+https://github.com/rust-lang/crates.io-index"
1447
- checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
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 0.2.0",
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.1"
1508
+ version = "1.4.2"
1526
1509
  source = "registry+https://github.com/rust-lang/crates.io-index"
1527
- checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
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.99"
1965
+ version = "0.3.102"
1983
1966
  source = "registry+https://github.com/rust-lang/crates.io-index"
1984
- checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
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.31"
2083
+ version = "0.4.32"
2102
2084
  source = "registry+https://github.com/rust-lang/crates.io-index"
2103
- checksum = "113b30b4cd05f7c06868fdb2854f66a7b9fece9a48425351cd532e810d74024f"
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.1"
2125
+ version = "2.8.2"
2144
2126
  source = "registry+https://github.com/rust-lang/crates.io-index"
2145
- checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
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.20.0"
2152
+ version = "2.21.0"
2171
2153
  source = "registry+https://github.com/rust-lang/crates.io-index"
2172
- checksum = "2929e494b2280e1e18959bb2e121da03347ae896896fdfaceaab43c88a02803f"
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.0"
2448
+ version = "45.0.2"
2499
2449
  source = "registry+https://github.com/rust-lang/crates.io-index"
2500
- checksum = "e9204ad9435f2a6fe3bd13bba52389fb8488fa20ba497e35c5d2db638166019d"
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.0"
2460
+ version = "45.0.2"
2511
2461
  source = "registry+https://github.com/rust-lang/crates.io-index"
2512
- checksum = "53009b033747e0d79a76549a744da58e84c9da8076492c7e6d491fdc6cc41b95"
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.2",
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.3"
2688
+ version = "1.12.4"
2739
2689
  source = "registry+https://github.com/rust-lang/crates.io-index"
2740
- checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
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.10"
2711
+ version = "0.8.11"
2762
2712
  source = "registry+https://github.com/rust-lang/crates.io-index"
2763
- checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
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.20.0"
3171
+ version = "3.21.0"
3220
3172
  source = "registry+https://github.com/rust-lang/crates.io-index"
3221
- checksum = "e72c1c2cb7b223fafb600a619537a871c2818583d619401b785e7c0b746ccde2"
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.20.0"
3191
+ version = "3.21.0"
3240
3192
  source = "registry+https://github.com/rust-lang/crates.io-index"
3241
- checksum = "b90c488738ecb4fb0262f41f43bc40efc5868d9fb744319ddf5f5317f417bfac"
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.1"
3296
+ version = "1.15.2"
3345
3297
  source = "registry+https://github.com/rust-lang/crates.io-index"
3346
- checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
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.117"
3383
+ version = "2.0.118"
3432
3384
  source = "registry+https://github.com/rust-lang/crates.io-index"
3433
- checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
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.2",
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.47"
3502
+ version = "0.3.49"
3551
3503
  source = "registry+https://github.com/rust-lang/crates.io-index"
3552
- checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
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.8"
3516
+ version = "0.1.9"
3566
3517
  source = "registry+https://github.com/rust-lang/crates.io-index"
3567
- checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
3518
+ checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
3568
3519
 
3569
3520
  [[package]]
3570
3521
  name = "time-macros"
3571
- version = "0.2.27"
3522
+ version = "0.2.29"
3572
3523
  source = "registry+https://github.com/rust-lang/crates.io-index"
3573
- checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
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.2"
3889
+ version = "1.23.3"
3927
3890
  source = "registry+https://github.com/rust-lang/crates.io-index"
3928
- checksum = "d258b83ceec21034727ecee8c382cfa6c3e133699b0742c64571814fb420c9f7"
3891
+ checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
3929
3892
  dependencies = [
3930
- "getrandom 0.4.2",
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.3+wasi-0.2.9"
3937
+ version = "1.0.4+wasi-0.2.12"
3975
3938
  source = "registry+https://github.com/rust-lang/crates.io-index"
3976
- checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
3939
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
3977
3940
  dependencies = [
3978
- "wit-bindgen 0.57.1",
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.122"
3946
+ version = "0.2.125"
3993
3947
  source = "registry+https://github.com/rust-lang/crates.io-index"
3994
- checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
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.72"
3959
+ version = "0.4.75"
4006
3960
  source = "registry+https://github.com/rust-lang/crates.io-index"
4007
- checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
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.122"
3969
+ version = "0.2.125"
4016
3970
  source = "registry+https://github.com/rust-lang/crates.io-index"
4017
- checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
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.122"
3979
+ version = "0.2.125"
4026
3980
  source = "registry+https://github.com/rust-lang/crates.io-index"
4027
- checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
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.122"
3992
+ version = "0.2.125"
4039
3993
  source = "registry+https://github.com/rust-lang/crates.io-index"
4040
- checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
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.251.0"
4038
+ version = "0.252.0"
4095
4039
  source = "registry+https://github.com/rust-lang/crates.io-index"
4096
- checksum = "5a879a421bd17c528b74721b2abf4c62e8f1d1889c2ba8c3c50d02deaf2ce395"
4040
+ checksum = "8185ae345fa5687c054626ff9a50e7089797a343d9904d1dc9820eb4c4d3196f"
4097
4041
  dependencies = [
4098
4042
  "leb128fmt",
4099
- "wasmparser 0.251.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.251.0"
4087
+ version = "0.252.0"
4168
4088
  source = "registry+https://github.com/rust-lang/crates.io-index"
4169
- checksum = "437970b35b1a85cfde9c74b2398352d8d653f3bd8e3a3db0c063ea8f5b4b36ff"
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.0"
4109
+ version = "45.0.2"
4190
4110
  source = "registry+https://github.com/rust-lang/crates.io-index"
4191
- checksum = "d35aec1e932d00a7c941f816ad589e65ad8db948b9e971bf8ec655a1669f1f67"
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.0"
4163
+ version = "45.0.2"
4244
4164
  source = "registry+https://github.com/rust-lang/crates.io-index"
4245
- checksum = "d7da3dcce82a7e784121c19c8c9c5f69a743088264ff5212033e4a1f1b9dfaaf"
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.0"
4194
+ version = "45.0.2"
4275
4195
  source = "registry+https://github.com/rust-lang/crates.io-index"
4276
- checksum = "ef87f84d976e2f98a541eaf5837df0424e2039837fc20bd6cd4b4b5a322939c0"
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.0"
4214
+ version = "45.0.2"
4295
4215
  source = "registry+https://github.com/rust-lang/crates.io-index"
4296
- checksum = "86991f201391afc1504e4fc363dc29b66f92af0287b4ac2efc3c0b0c19435eeb"
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 0.248.0",
4224
+ "wit-parser",
4305
4225
  ]
4306
4226
 
4307
4227
  [[package]]
4308
4228
  name = "wasmtime-internal-component-util"
4309
- version = "45.0.0"
4229
+ version = "45.0.2"
4310
4230
  source = "registry+https://github.com/rust-lang/crates.io-index"
4311
- checksum = "47fda091250d7ab839ea51e4d98190b6eee37e9de4ab2462e8fe8465369c1986"
4231
+ checksum = "9d2eeb9b53222859e6f5dc73d2ccfb33254d672469cac11b693a71912e2f3817"
4312
4232
 
4313
4233
  [[package]]
4314
4234
  name = "wasmtime-internal-core"
4315
- version = "45.0.0"
4235
+ version = "45.0.2"
4316
4236
  source = "registry+https://github.com/rust-lang/crates.io-index"
4317
- checksum = "1bdae4b55b15a23d774b15f6e7cd90ae0d0aa17c47c12b4db098b3dd11ba9d58"
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.0"
4247
+ version = "45.0.2"
4328
4248
  source = "registry+https://github.com/rust-lang/crates.io-index"
4329
- checksum = "5773b36b87566239b020f1d01aa753a35626df85030485e40e36fc42a97acf4f"
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.0"
4274
+ version = "45.0.2"
4355
4275
  source = "registry+https://github.com/rust-lang/crates.io-index"
4356
- checksum = "402cce4bba4c8c92a6fbaff39a6b23f8aa626d64b218ecf6dd3eeee8705cf096"
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.0"
4289
+ version = "45.0.2"
4370
4290
  source = "registry+https://github.com/rust-lang/crates.io-index"
4371
- checksum = "8b426a5d0ec9c11a1a4525ed4e973b7caf40223b6d392588bb9f6468e4ae9d29"
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.0"
4301
+ version = "45.0.2"
4382
4302
  source = "registry+https://github.com/rust-lang/crates.io-index"
4383
- checksum = "8a312ba8bb77955dcd44294a223e7f124c3071ff966583d385d3f6a4639c62e3"
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.0"
4313
+ version = "45.0.2"
4394
4314
  source = "registry+https://github.com/rust-lang/crates.io-index"
4395
- checksum = "4a62ad422ee3cbf1e87c2242dc0717a01c7a5878fbc3a68abc4b4d2fff3e85e1"
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.0"
4326
+ version = "45.0.2"
4407
4327
  source = "registry+https://github.com/rust-lang/crates.io-index"
4408
- checksum = "2c660c5b091648cffdd84a34dc24ffcdb9d027f9048fe7bd5e01896adbd0935f"
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.0"
4337
+ version = "45.0.2"
4418
4338
  source = "registry+https://github.com/rust-lang/crates.io-index"
4419
- checksum = "d2aceb92b48b6e3a5cc2a05ab7a2dcb565eaf86fb870d04664b7f12cf9bba39a"
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.0"
4354
+ version = "45.0.2"
4435
4355
  source = "registry+https://github.com/rust-lang/crates.io-index"
4436
- checksum = "ce382df367ad2a2d48e139b191dbca3329f7232a43057dc9efc889dac54f1b0b"
4356
+ checksum = "4ae00896ad9bef1b3ca6401ae9a841daa6f357dd91541b6baf87082946d1bde1"
4437
4357
  dependencies = [
4438
4358
  "anyhow",
4439
4359
  "bitflags",
4440
4360
  "heck",
4441
4361
  "indexmap 2.14.0",
4442
- "wit-parser 0.248.0",
4362
+ "wit-parser",
4443
4363
  ]
4444
4364
 
4445
4365
  [[package]]
4446
4366
  name = "wasmtime-wasi"
4447
- version = "45.0.0"
4367
+ version = "45.0.2"
4448
4368
  source = "registry+https://github.com/rust-lang/crates.io-index"
4449
- checksum = "fb1e92a304eaafd672718011c69084041db74fa0fcc3532c5920f492c557b721"
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.0"
4396
+ version = "45.0.2"
4477
4397
  source = "registry+https://github.com/rust-lang/crates.io-index"
4478
- checksum = "c7ac191e49f1cfb8567b335a4e4375d275552f5e5ce199fd7631c8722865b598"
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.0"
4417
+ version = "45.0.2"
4498
4418
  source = "registry+https://github.com/rust-lang/crates.io-index"
4499
- checksum = "8e0013e1f37d2e0e1b030fa186972f6f5819f69814bb07d3b6d3cab0c40b50e2"
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 = "251.0.0"
4430
+ version = "252.0.0"
4511
4431
  source = "registry+https://github.com/rust-lang/crates.io-index"
4512
- checksum = "5cc7467dda0a96142eb2c980329dfb62480b1e1d3622fdeb1a44e2bca6ceed74"
4432
+ checksum = "942a3449d6a593fccc111a6241c8df52bda168af30e40bf9580d4394d7374c65"
4513
4433
  dependencies = [
4514
4434
  "bumpalo",
4515
4435
  "leb128fmt",
4516
4436
  "memchr",
4517
4437
  "unicode-width",
4518
- "wasm-encoder 0.251.0",
4438
+ "wasm-encoder 0.252.0",
4519
4439
  ]
4520
4440
 
4521
4441
  [[package]]
4522
4442
  name = "wat"
4523
- version = "1.251.0"
4443
+ version = "1.252.0"
4524
4444
  source = "registry+https://github.com/rust-lang/crates.io-index"
4525
- checksum = "81b1086c9e85b95bd6a229a928bc6c6d0662e42af0250c88d067b418831ea4d4"
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.99"
4452
+ version = "0.3.102"
4533
4453
  source = "registry+https://github.com/rust-lang/crates.io-index"
4534
- checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
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.7"
4472
+ version = "1.0.8"
4553
4473
  source = "registry+https://github.com/rust-lang/crates.io-index"
4554
- checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
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.7"
4481
+ version = "1.0.8"
4562
4482
  source = "registry+https://github.com/rust-lang/crates.io-index"
4563
- checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
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.0"
4521
+ version = "45.0.2"
4602
4522
  source = "registry+https://github.com/rust-lang/crates.io-index"
4603
- checksum = "3128bd53313b132e8737d7d318edbc438bab1abe525ac037bbf9857839e717e2"
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.2"
4878
+ version = "0.8.3"
5047
4879
  source = "registry+https://github.com/rust-lang/crates.io-index"
5048
- checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
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.50"
4901
+ version = "0.8.52"
5070
4902
  source = "registry+https://github.com/rust-lang/crates.io-index"
5071
- checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
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.50"
4910
+ version = "0.8.52"
5079
4911
  source = "registry+https://github.com/rust-lang/crates.io-index"
5080
- checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
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.8.2"
4942
+ version = "1.9.0"
5111
4943
  source = "registry+https://github.com/rust-lang/crates.io-index"
5112
- checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
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.4.3"
4951
+ version = "1.5.0"
5120
4952
  source = "registry+https://github.com/rust-lang/crates.io-index"
5121
- checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
4953
+ checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
5122
4954
  dependencies = [
5123
4955
  "proc-macro2",
5124
4956
  "quote",