zizmor 1.6.0__tar.gz → 1.8.0rc1__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.

Potentially problematic release.


This version of zizmor might be problematic. Click here for more details.

Files changed (385) hide show
  1. {zizmor-1.6.0 → zizmor-1.8.0rc1}/Cargo.lock +691 -326
  2. zizmor-1.8.0rc1/Cargo.toml +64 -0
  3. {zizmor-1.6.0 → zizmor-1.8.0rc1}/PKG-INFO +16 -15
  4. zizmor-1.8.0rc1/crates/github-actions-expressions/Cargo.toml +20 -0
  5. zizmor-1.8.0rc1/crates/github-actions-expressions/README.md +16 -0
  6. zizmor-1.8.0rc1/crates/github-actions-expressions/src/context.rs +365 -0
  7. {zizmor-1.6.0/src/expr → zizmor-1.8.0rc1/crates/github-actions-expressions/src}/expr.pest +9 -3
  8. zizmor-1.6.0/src/expr/mod.rs → zizmor-1.8.0rc1/crates/github-actions-expressions/src/lib.rs +225 -99
  9. zizmor-1.8.0rc1/crates/github-actions-models/Cargo.toml +20 -0
  10. zizmor-1.8.0rc1/crates/github-actions-models/README.md +28 -0
  11. zizmor-1.8.0rc1/crates/github-actions-models/src/action.rs +196 -0
  12. zizmor-1.8.0rc1/crates/github-actions-models/src/common/expr.rs +140 -0
  13. zizmor-1.8.0rc1/crates/github-actions-models/src/common.rs +639 -0
  14. zizmor-1.8.0rc1/crates/github-actions-models/src/dependabot/mod.rs +3 -0
  15. zizmor-1.8.0rc1/crates/github-actions-models/src/dependabot/v2.rs +293 -0
  16. zizmor-1.8.0rc1/crates/github-actions-models/src/lib.rs +11 -0
  17. zizmor-1.8.0rc1/crates/github-actions-models/src/workflow/event.rs +343 -0
  18. zizmor-1.8.0rc1/crates/github-actions-models/src/workflow/job.rs +273 -0
  19. zizmor-1.8.0rc1/crates/github-actions-models/src/workflow/mod.rs +164 -0
  20. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-actions/gh-action-pip-audit.yml +88 -0
  21. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-actions/gh-action-pypi-publish.yml +128 -0
  22. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-actions/gh-action-sigstore-python.yml +146 -0
  23. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-actions/no-input-output-descriptions.yml +16 -0
  24. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-actions/setup-python.yml +67 -0
  25. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-dependabot/v2/pip-audit.yml +13 -0
  26. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-dependabot/v2/sigstore-python.yml +45 -0
  27. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/adafruit-circuitpython-run-tests.yml +92 -0
  28. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/false-condition.yml +12 -0
  29. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/gh-action-sigstore-python-selftest.yml +351 -0
  30. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/git-annex-built-windows.yaml +457 -0
  31. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/guacsec-guac-ci.yml +261 -0
  32. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/homebrew-core-automerge-triggers.yml +47 -0
  33. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/homebrew-core-dispatch-rebottle.yml +325 -0
  34. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/intel-llvm-sycl-linux-run-tests.yml +332 -0
  35. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/issue-35.yml +21 -0
  36. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/jazzband-tablib-docs-lint.yml +64 -0
  37. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/letsencrypt-boulder-boulder-ci.yml +171 -0
  38. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/mhils-workflows-python-deploy.yml +73 -0
  39. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/openbao-openbao-test-go.yml +313 -0
  40. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/pip-api-test.yml +123 -0
  41. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/pip-audit-ci.yml +48 -0
  42. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/pip-audit-scorecards.yml +69 -0
  43. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/pwn-requests.yml +30 -0
  44. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/pyca-cryptography-ci.yml +497 -0
  45. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/pypi-attestations-release.yml +47 -0
  46. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/reusable-workflow-unpinned.yml +11 -0
  47. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/rnpgp-rnp-centos-and-fedora.yml +503 -0
  48. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/runs-on-expr.yml +12 -0
  49. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/runs-on-group-only.yml +18 -0
  50. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/scalar-trigger-type.yml +10 -0
  51. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/vil02-puzzle_generator-check_examples.yml +63 -0
  52. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/zizmor-issue-646.yml +15 -0
  53. zizmor-1.8.0rc1/crates/github-actions-models/tests/sample-workflows/zizmor-issue-650.yml +31 -0
  54. zizmor-1.8.0rc1/crates/github-actions-models/tests/test_action.rs +48 -0
  55. zizmor-1.8.0rc1/crates/github-actions-models/tests/test_dependabot_v2.rs +67 -0
  56. zizmor-1.8.0rc1/crates/github-actions-models/tests/test_workflow.rs +96 -0
  57. zizmor-1.8.0rc1/crates/yamlpath/Cargo.toml +21 -0
  58. zizmor-1.8.0rc1/crates/yamlpath/LICENSE +21 -0
  59. zizmor-1.8.0rc1/crates/yamlpath/README.md +45 -0
  60. zizmor-1.8.0rc1/crates/yamlpath/src/lib.rs +715 -0
  61. zizmor-1.8.0rc1/crates/yamlpath/tests/integration_test.rs +66 -0
  62. zizmor-1.8.0rc1/crates/yamlpath/tests/testcases/basic.yml +18 -0
  63. zizmor-1.8.0rc1/crates/yamlpath/tests/testcases/comments.yml +29 -0
  64. zizmor-1.8.0rc1/crates/yamlpath/tests/testcases/directives.yml +12 -0
  65. zizmor-1.8.0rc1/crates/yamlpath/tests/testcases/flow.yml +21 -0
  66. zizmor-1.8.0rc1/crates/yamlpath/tests/testcases/interceding-comment.yml +25 -0
  67. zizmor-1.8.0rc1/crates/yamlpath/tests/testcases/quoted-key.yml +21 -0
  68. zizmor-1.8.0rc1/crates/zizmor/Cargo.toml +69 -0
  69. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/README.md +13 -12
  70. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/audit/artipacked.rs +3 -3
  71. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/audit/bot_conditions.rs +9 -12
  72. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/audit/cache_poisoning.rs +56 -66
  73. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/audit/dangerous_triggers.rs +1 -1
  74. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/audit/excessive_permissions.rs +3 -3
  75. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/audit/forbidden_uses.rs +33 -48
  76. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/audit/github_env.rs +13 -5
  77. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/audit/hardcoded_container_credentials.rs +3 -3
  78. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/audit/impostor_commit.rs +2 -2
  79. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/audit/insecure_commands.rs +17 -17
  80. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/audit/known_vulnerable_actions.rs +41 -65
  81. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/audit/mod.rs +27 -25
  82. zizmor-1.8.0rc1/crates/zizmor/src/audit/obfuscation.rs +143 -0
  83. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/audit/overprovisioned_secrets.rs +11 -7
  84. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/audit/ref_confusion.rs +4 -4
  85. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/audit/secrets_inherit.rs +3 -3
  86. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/audit/self_hosted_runner.rs +3 -3
  87. zizmor-1.8.0rc1/crates/zizmor/src/audit/stale_action_refs.rs +86 -0
  88. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/audit/template_injection.rs +85 -97
  89. zizmor-1.8.0rc1/crates/zizmor/src/audit/unpinned_images.rs +109 -0
  90. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/audit/unpinned_uses.rs +47 -51
  91. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/audit/unredacted_secrets.rs +10 -9
  92. zizmor-1.8.0rc1/crates/zizmor/src/audit/unsound_contains.rs +187 -0
  93. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/audit/use_trusted_publishing.rs +5 -2
  94. zizmor-1.8.0rc1/crates/zizmor/src/data/github-action.json +695 -0
  95. zizmor-1.8.0rc1/crates/zizmor/src/data/github-workflow.json +1715 -0
  96. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/finding/mod.rs +53 -55
  97. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/github_api.rs +56 -42
  98. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/main.rs +77 -36
  99. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/models/coordinate.rs +35 -18
  100. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/models/uses.rs +136 -80
  101. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/models.rs +161 -161
  102. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/output/plain.rs +7 -6
  103. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/output/sarif.rs +6 -12
  104. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/registry.rs +75 -32
  105. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/utils.rs +101 -7
  106. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/acceptance.rs +37 -2
  107. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/common.rs +33 -1
  108. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/e2e.rs +45 -2
  109. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshot.rs +62 -17
  110. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__e2e__gha_hazmat.snap +26 -2
  111. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_config_file.snap +9 -0
  112. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-10.snap +11 -0
  113. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-2.snap +12 -0
  114. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-3.snap +11 -0
  115. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-4.snap +11 -0
  116. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-5.snap +11 -0
  117. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-6.snap +11 -0
  118. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-7.snap +11 -0
  119. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-8.snap +19 -0
  120. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-9.snap +11 -0
  121. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs.snap +13 -0
  122. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__e2e__issue_569.snap +10 -1
  123. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_726.snap +17 -0
  124. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__e2e__menagerie-2.snap +1 -1
  125. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__e2e__menagerie.snap +1 -1
  126. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__artipacked-2.snap +1 -2
  127. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__artipacked-3.snap +1 -2
  128. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__artipacked-4.snap +1 -2
  129. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__artipacked.snap +1 -2
  130. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__bot_conditions.snap +1 -2
  131. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__cache_poisoning-11.snap +0 -1
  132. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__cache_poisoning-3.snap +1 -2
  133. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__cache_poisoning-5.snap +1 -2
  134. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-7.snap +5 -0
  135. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning.snap +5 -0
  136. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__cant_retrieve.snap +1 -2
  137. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__excessive_permissions-10.snap +1 -2
  138. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__excessive_permissions-11.snap +1 -2
  139. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__excessive_permissions-12.snap +1 -2
  140. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__excessive_permissions-2.snap +1 -2
  141. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__excessive_permissions-3.snap +1 -2
  142. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__excessive_permissions-4.snap +1 -2
  143. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__excessive_permissions-5.snap +1 -2
  144. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-6.snap +5 -0
  145. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__excessive_permissions-7.snap +1 -2
  146. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__excessive_permissions-8.snap +1 -2
  147. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-9.snap +5 -0
  148. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions.snap +5 -0
  149. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__forbidden_uses-2.snap +0 -1
  150. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__forbidden_uses-3.snap +0 -1
  151. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__forbidden_uses-4.snap +0 -1
  152. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-5.snap +22 -0
  153. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-6.snap +14 -0
  154. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__forbidden_uses.snap +0 -1
  155. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__github_env-2.snap +1 -2
  156. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__github_env-3.snap +1 -2
  157. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__github_env.snap +1 -2
  158. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__insecure_commands-2.snap +1 -2
  159. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__insecure_commands-3.snap +1 -2
  160. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__insecure_commands.snap +1 -2
  161. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__snapshot__obfuscation.snap +190 -0
  162. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__overprovisioned_secrets.snap +1 -2
  163. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__ref_confusion-2.snap +0 -1
  164. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__ref_confusion.snap +0 -1
  165. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__secrets_inherit.snap +1 -2
  166. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-2.snap +5 -0
  167. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__self_hosted-3.snap +1 -2
  168. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__self_hosted-4.snap +1 -2
  169. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__self_hosted-5.snap +1 -2
  170. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__self_hosted-6.snap +1 -2
  171. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-7.snap +5 -0
  172. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-8.snap +5 -0
  173. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__self_hosted.snap +1 -2
  174. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__snapshot__stale_action_refs.snap +13 -0
  175. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-10.snap +5 -0
  176. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__template_injection-2.snap +1 -2
  177. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__template_injection-3.snap +0 -1
  178. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__template_injection-4.snap +1 -2
  179. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__template_injection-5.snap +1 -2
  180. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__template_injection-7.snap +0 -1
  181. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__template_injection-8.snap +0 -1
  182. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection.snap +5 -0
  183. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__unpinned-uses-composite-config-2.snap +0 -1
  184. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__unpinned-uses-composite-config.snap +0 -1
  185. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__unpinned-uses-default-config.snap +0 -1
  186. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__unpinned-uses-empty-config.snap +0 -1
  187. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__unpinned-uses-hash-pin-everything-config.snap +0 -1
  188. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__unpinned-uses-ref-pin-everything-config.snap +0 -1
  189. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_images.snap +53 -0
  190. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__unpinned_uses-10.snap +2 -2
  191. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__unpinned_uses-11.snap +2 -2
  192. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-12.snap +12 -0
  193. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__unpinned_uses-2.snap +0 -1
  194. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__unpinned_uses-3.snap +0 -1
  195. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-4.snap +5 -0
  196. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__unpinned_uses-5.snap +0 -1
  197. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__unpinned_uses-6.snap +2 -2
  198. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__unpinned_uses-7.snap +2 -2
  199. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__unpinned_uses-8.snap +2 -2
  200. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__unpinned_uses-9.snap +2 -2
  201. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__unpinned_uses.snap +0 -1
  202. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__unredacted_secrets.snap +1 -2
  203. zizmor-1.8.0rc1/crates/zizmor/tests/integration/snapshots/integration__snapshot__unsound_contains.snap +46 -0
  204. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/artipacked/issue-447-repro.yml +1 -1
  205. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/cache-poisoning/issue-343-repro.yml +1 -1
  206. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/cache-poisoning/issue-378-repro.yml +1 -1
  207. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/cache-poisoning/issue-642-repro.yml +1 -1
  208. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/excessive-permissions/issue-472-repro.yml +1 -1
  209. zizmor-1.8.0rc1/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/allow-some-refs.yml +13 -0
  210. zizmor-1.8.0rc1/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/deny-some-refs.yml +13 -0
  211. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/inlined-ignores.yml +1 -1
  212. zizmor-1.8.0rc1/crates/zizmor/tests/integration/test-data/invalid/bad-yaml-1.yml +1 -0
  213. zizmor-1.8.0rc1/crates/zizmor/tests/integration/test-data/invalid/bad-yaml-2.yml +3 -0
  214. zizmor-1.8.0rc1/crates/zizmor/tests/integration/test-data/invalid/blank.yml +2 -0
  215. zizmor-1.8.0rc1/crates/zizmor/tests/integration/test-data/invalid/comment-only.yml +1 -0
  216. zizmor-1.8.0rc1/crates/zizmor/tests/integration/test-data/invalid/empty-action/action.yml +0 -0
  217. zizmor-1.8.0rc1/crates/zizmor/tests/integration/test-data/invalid/empty.yml +0 -0
  218. zizmor-1.8.0rc1/crates/zizmor/tests/integration/test-data/invalid/invalid-action-1/action.yml +11 -0
  219. zizmor-1.8.0rc1/crates/zizmor/tests/integration/test-data/invalid/invalid-action-2/action.yml +3 -0
  220. zizmor-1.8.0rc1/crates/zizmor/tests/integration/test-data/invalid/invalid-workflow-2.yml +17 -0
  221. zizmor-1.8.0rc1/crates/zizmor/tests/integration/test-data/obfuscation.yml +52 -0
  222. zizmor-1.8.0rc1/crates/zizmor/tests/integration/test-data/stale-action-refs.yml +30 -0
  223. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/template-injection/issue-22-repro.yml +1 -1
  224. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/template-injection/issue-339-repro.yml +1 -1
  225. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/template-injection/issue-418-repro.yml +1 -1
  226. zizmor-1.8.0rc1/crates/zizmor/tests/integration/test-data/template-injection/issue-749-repro.yml +20 -0
  227. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/template-injection/pr-317-repro.yml +1 -1
  228. zizmor-1.8.0rc1/crates/zizmor/tests/integration/test-data/unpinned-images.yml +71 -0
  229. zizmor-1.8.0rc1/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-6.yml +7 -0
  230. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/unpinned-uses/issue-433-repro.yml +1 -1
  231. zizmor-1.8.0rc1/crates/zizmor/tests/integration/test-data/unsound-contains.yml +33 -0
  232. zizmor-1.6.0/.github/ISSUE_TEMPLATE/bug-report.yml +0 -77
  233. zizmor-1.6.0/.github/ISSUE_TEMPLATE/config.yml +0 -8
  234. zizmor-1.6.0/.github/ISSUE_TEMPLATE/feature-request.yml +0 -52
  235. zizmor-1.6.0/.github/dependabot.yml +0 -28
  236. zizmor-1.6.0/.github/workflows/ci.yml +0 -74
  237. zizmor-1.6.0/.github/workflows/docker.yml +0 -158
  238. zizmor-1.6.0/.github/workflows/pypi.yml +0 -174
  239. zizmor-1.6.0/.github/workflows/release.yml +0 -21
  240. zizmor-1.6.0/.github/workflows/site.yml +0 -50
  241. zizmor-1.6.0/.github/workflows/test-output.yml +0 -71
  242. zizmor-1.6.0/.github/workflows/zizmor.yml +0 -33
  243. zizmor-1.6.0/.gitignore +0 -9
  244. zizmor-1.6.0/CONTRIBUTING.md +0 -84
  245. zizmor-1.6.0/Cargo.toml +0 -78
  246. zizmor-1.6.0/Dockerfile +0 -18
  247. zizmor-1.6.0/Makefile +0 -27
  248. zizmor-1.6.0/docs/assets/favicon48x48.png +0 -0
  249. zizmor-1.6.0/docs/assets/rainbow.svg +0 -1
  250. zizmor-1.6.0/docs/assets/zizmor-demo.gif +0 -0
  251. zizmor-1.6.0/docs/audits.md +0 -1259
  252. zizmor-1.6.0/docs/configuration.md +0 -90
  253. zizmor-1.6.0/docs/development.md +0 -337
  254. zizmor-1.6.0/docs/index.md +0 -27
  255. zizmor-1.6.0/docs/installation.md +0 -140
  256. zizmor-1.6.0/docs/magiclink.css +0 -107
  257. zizmor-1.6.0/docs/quickstart.md +0 -88
  258. zizmor-1.6.0/docs/release-notes.md +0 -703
  259. zizmor-1.6.0/docs/snippets/help.txt +0 -48
  260. zizmor-1.6.0/docs/snippets/render-sponsors.py +0 -56
  261. zizmor-1.6.0/docs/snippets/render-trophies.py +0 -40
  262. zizmor-1.6.0/docs/snippets/sponsors.html +0 -15
  263. zizmor-1.6.0/docs/snippets/sponsors.json +0 -7
  264. zizmor-1.6.0/docs/snippets/trophies.md +0 -1077
  265. zizmor-1.6.0/docs/snippets/trophies.txt +0 -201
  266. zizmor-1.6.0/docs/trophy-case.md +0 -18
  267. zizmor-1.6.0/docs/usage.md +0 -833
  268. zizmor-1.6.0/mkdocs.yml +0 -122
  269. zizmor-1.6.0/tests/integration/snapshots/integration__e2e__invalid_config_file.snap +0 -9
  270. zizmor-1.6.0/tests/integration/snapshots/integration__snapshot__cache_poisoning-7.snap +0 -6
  271. zizmor-1.6.0/tests/integration/snapshots/integration__snapshot__cache_poisoning.snap +0 -6
  272. zizmor-1.6.0/tests/integration/snapshots/integration__snapshot__excessive_permissions-6.snap +0 -6
  273. zizmor-1.6.0/tests/integration/snapshots/integration__snapshot__excessive_permissions-9.snap +0 -6
  274. zizmor-1.6.0/tests/integration/snapshots/integration__snapshot__excessive_permissions.snap +0 -6
  275. zizmor-1.6.0/tests/integration/snapshots/integration__snapshot__invalid_inputs.snap +0 -18
  276. zizmor-1.6.0/tests/integration/snapshots/integration__snapshot__self_hosted-2.snap +0 -6
  277. zizmor-1.6.0/tests/integration/snapshots/integration__snapshot__self_hosted-7.snap +0 -6
  278. zizmor-1.6.0/tests/integration/snapshots/integration__snapshot__self_hosted-8.snap +0 -6
  279. zizmor-1.6.0/tests/integration/snapshots/integration__snapshot__template_injection.snap +0 -6
  280. zizmor-1.6.0/tests/integration/snapshots/integration__snapshot__unpinned_uses-4.snap +0 -6
  281. zizmor-1.6.0/uv.lock +0 -869
  282. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/github-actions-models}/LICENSE +0 -0
  283. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/config.rs +0 -0
  284. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/output/github.rs +0 -0
  285. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/output/mod.rs +0 -0
  286. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/src/state.rs +0 -0
  287. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/main.rs +0 -0
  288. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__e2e__issue_612_repro.snap +0 -0
  289. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__cache_poisoning-10.snap +0 -0
  290. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__cache_poisoning-12.snap +0 -0
  291. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__cache_poisoning-13.snap +0 -0
  292. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__cache_poisoning-14.snap +0 -0
  293. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__cache_poisoning-15.snap +0 -0
  294. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__cache_poisoning-2.snap +0 -0
  295. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__cache_poisoning-4.snap +0 -0
  296. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__cache_poisoning-6.snap +0 -0
  297. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__cache_poisoning-8.snap +0 -0
  298. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__cache_poisoning-9.snap +0 -0
  299. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__github_output.snap +0 -0
  300. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__template_injection-6.snap +0 -0
  301. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/snapshots/integration__snapshot__template_injection-9.snap +0 -0
  302. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/artipacked.yml +0 -0
  303. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/bot-conditions.yml +0 -0
  304. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/cache-poisoning/caching-disabled-by-default.yml +0 -0
  305. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/cache-poisoning/caching-enabled-by-default.yml +0 -0
  306. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/cache-poisoning/caching-not-configurable.yml +0 -0
  307. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/cache-poisoning/caching-opt-in-boolean-toggle.yml +0 -0
  308. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/cache-poisoning/caching-opt-in-boolish-toggle.yml +0 -0
  309. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/cache-poisoning/caching-opt-in-expression.yml +0 -0
  310. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/cache-poisoning/caching-opt-in-multi-value-toggle.yml +0 -0
  311. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/cache-poisoning/caching-opt-out.yml +0 -0
  312. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/cache-poisoning/no-cache-aware-steps.yml +0 -0
  313. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/cache-poisoning/publisher-step.yml +0 -0
  314. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/cache-poisoning/workflow-release-branch-trigger.yml +0 -0
  315. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/cache-poisoning/workflow-tag-trigger.yml +0 -0
  316. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/cache-poisoning.yml +0 -0
  317. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/e2e-menagerie/.github/dummy-action-2/action.yml +0 -0
  318. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/e2e-menagerie/.github/workflows/another-dummy.yml +0 -0
  319. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/e2e-menagerie/.github/workflows/dummy.yml +0 -0
  320. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/e2e-menagerie/.github/workflows/ignored.yaml +0 -0
  321. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/e2e-menagerie/.gitignore +0 -0
  322. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/e2e-menagerie/README.md +0 -0
  323. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/e2e-menagerie/dummy-action-1/action.yaml +0 -0
  324. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/excessive-permissions/issue-336-repro.yml +0 -0
  325. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/excessive-permissions/jobs-broaden-permissions.yml +0 -0
  326. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/excessive-permissions/reusable-workflow-call.yml +0 -0
  327. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/excessive-permissions/reusable-workflow-other-triggers.yml +0 -0
  328. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/excessive-permissions/workflow-default-perms-all-jobs-explicit.yml +0 -0
  329. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/excessive-permissions/workflow-default-perms.yml +0 -0
  330. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/excessive-permissions/workflow-empty-perms.yml +0 -0
  331. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/excessive-permissions/workflow-read-all.yml +0 -0
  332. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/excessive-permissions/workflow-write-all.yml +0 -0
  333. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/excessive-permissions/workflow-write-explicit.yml +0 -0
  334. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/excessive-permissions.yml +0 -0
  335. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/forbidden-uses/configs/allow-all.yml +0 -0
  336. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/forbidden-uses/configs/allow-some.yml +0 -0
  337. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/forbidden-uses/configs/deny-all.yml +0 -0
  338. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/forbidden-uses/configs/deny-some.yml +0 -0
  339. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/forbidden-uses/forbidden-uses-menagerie.yml +0 -0
  340. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/github-env/action.yml +0 -0
  341. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/github-env/github-path.yml +0 -0
  342. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/github-env/issue-397-repro.yml +0 -0
  343. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/github_env.yml +0 -0
  344. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/hardcoded-credentials.yml +0 -0
  345. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/insecure-commands/action.yml +0 -0
  346. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/insecure-commands.yml +0 -0
  347. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/invalid/invalid-workflow.yml +0 -0
  348. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/issue-612-repro/action.yml +0 -0
  349. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/overprovisioned-secrets.yml +0 -0
  350. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/ref-confusion/issue-518-repro.yml +0 -0
  351. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/ref-confusion.yml +0 -0
  352. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/secrets-inherit.yml +0 -0
  353. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/self-hosted/issue-283-repro.yml +0 -0
  354. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/self-hosted/self-hosted-matrix-dimension.yml +0 -0
  355. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/self-hosted/self-hosted-matrix-exclusion.yml +0 -0
  356. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/self-hosted/self-hosted-matrix-inclusion.yml +0 -0
  357. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/self-hosted/self-hosted-runner-group.yml +0 -0
  358. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/self-hosted/self-hosted-runner-label.yml +0 -0
  359. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/self-hosted.yml +0 -0
  360. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/several-vulnerabilities.yml +0 -0
  361. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/template-injection/dataflow.yml +0 -0
  362. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/template-injection/false-positive-menagerie.yml +0 -0
  363. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/template-injection/pr-425-backstop/action.yml +0 -0
  364. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/template-injection/static-env.yml +0 -0
  365. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/template-injection/template-injection-dynamic-matrix.yml +0 -0
  366. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/template-injection/template-injection-static-matrix.yml +0 -0
  367. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/template-injection.yml +0 -0
  368. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/unpinned-uses/action.yml +0 -0
  369. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/unpinned-uses/configs/composite-2.yml +0 -0
  370. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/unpinned-uses/configs/composite.yml +0 -0
  371. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/unpinned-uses/configs/empty.yml +0 -0
  372. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/unpinned-uses/configs/hash-pin-everything.yml +0 -0
  373. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-1.yml +0 -0
  374. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-2.yml +0 -0
  375. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-3.yml +0 -0
  376. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-4.yml +0 -0
  377. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-5.yml +0 -0
  378. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/unpinned-uses/configs/invalid-wrong-policy-object.yml +0 -0
  379. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/unpinned-uses/configs/ref-pin-everything.yml +0 -0
  380. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/unpinned-uses/issue-659-repro.yml +0 -0
  381. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/unpinned-uses/menagerie-of-uses.yml +0 -0
  382. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/unpinned-uses.yml +0 -0
  383. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/unredacted-secrets.yml +0 -0
  384. {zizmor-1.6.0 → zizmor-1.8.0rc1/crates/zizmor}/tests/integration/test-data/use-trusted-publishing.yml +0 -0
  385. {zizmor-1.6.0 → zizmor-1.8.0rc1}/pyproject.toml +0 -0
@@ -27,6 +27,20 @@ version = "2.0.0"
27
27
  source = "registry+https://github.com/rust-lang/crates.io-index"
28
28
  checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
29
29
 
30
+ [[package]]
31
+ name = "ahash"
32
+ version = "0.8.11"
33
+ source = "registry+https://github.com/rust-lang/crates.io-index"
34
+ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
35
+ dependencies = [
36
+ "cfg-if",
37
+ "getrandom 0.2.16",
38
+ "once_cell",
39
+ "serde",
40
+ "version_check",
41
+ "zerocopy 0.7.35",
42
+ ]
43
+
30
44
  [[package]]
31
45
  name = "aho-corasick"
32
46
  version = "1.1.3"
@@ -87,11 +101,12 @@ dependencies = [
87
101
 
88
102
  [[package]]
89
103
  name = "anstyle-wincon"
90
- version = "3.0.6"
104
+ version = "3.0.7"
91
105
  source = "registry+https://github.com/rust-lang/crates.io-index"
92
- checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125"
106
+ checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
93
107
  dependencies = [
94
108
  "anstyle",
109
+ "once_cell",
95
110
  "windows-sys 0.59.0",
96
111
  ]
97
112
 
@@ -109,9 +124,9 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
109
124
 
110
125
  [[package]]
111
126
  name = "assert_cmd"
112
- version = "2.0.16"
127
+ version = "2.0.17"
113
128
  source = "registry+https://github.com/rust-lang/crates.io-index"
114
- checksum = "dc1835b7f27878de8525dc71410b5a31cdcc5f230aed5ba5df968e09c201b23d"
129
+ checksum = "2bd389a4b2970a01282ee455294913c0a43724daedcd1a24c3eb0ec1c1320b66"
115
130
  dependencies = [
116
131
  "anstyle",
117
132
  "bstr",
@@ -125,13 +140,13 @@ dependencies = [
125
140
 
126
141
  [[package]]
127
142
  name = "async-trait"
128
- version = "0.1.86"
143
+ version = "0.1.88"
129
144
  source = "registry+https://github.com/rust-lang/crates.io-index"
130
- checksum = "644dd749086bf3771a2fbc5f256fdb982d53f011c7d5d560304eafeecebce79d"
145
+ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
131
146
  dependencies = [
132
147
  "proc-macro2",
133
148
  "quote",
134
- "syn 2.0.90",
149
+ "syn 2.0.101",
135
150
  ]
136
151
 
137
152
  [[package]]
@@ -176,11 +191,26 @@ dependencies = [
176
191
  "serde",
177
192
  ]
178
193
 
194
+ [[package]]
195
+ name = "bit-set"
196
+ version = "0.8.0"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
199
+ dependencies = [
200
+ "bit-vec",
201
+ ]
202
+
203
+ [[package]]
204
+ name = "bit-vec"
205
+ version = "0.8.0"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
208
+
179
209
  [[package]]
180
210
  name = "bitflags"
181
- version = "2.6.0"
211
+ version = "2.9.0"
182
212
  source = "registry+https://github.com/rust-lang/crates.io-index"
183
- checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
213
+ checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
184
214
 
185
215
  [[package]]
186
216
  name = "block-buffer"
@@ -191,11 +221,17 @@ dependencies = [
191
221
  "generic-array",
192
222
  ]
193
223
 
224
+ [[package]]
225
+ name = "borrow-or-share"
226
+ version = "0.2.2"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "3eeab4423108c5d7c744f4d234de88d18d636100093ae04caf4825134b9c3a32"
229
+
194
230
  [[package]]
195
231
  name = "bstr"
196
- version = "1.11.0"
232
+ version = "1.12.0"
197
233
  source = "registry+https://github.com/rust-lang/crates.io-index"
198
- checksum = "1a68f1f47cdf0ec8ee4b941b2eee2a80cb796db73118c0dd09ac63fbe405be22"
234
+ checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
199
235
  dependencies = [
200
236
  "memchr",
201
237
  "regex-automata 0.4.9",
@@ -204,21 +240,21 @@ dependencies = [
204
240
 
205
241
  [[package]]
206
242
  name = "bumpalo"
207
- version = "3.16.0"
243
+ version = "3.17.0"
208
244
  source = "registry+https://github.com/rust-lang/crates.io-index"
209
- checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
245
+ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
210
246
 
211
247
  [[package]]
212
- name = "byteorder"
213
- version = "1.5.0"
248
+ name = "bytecount"
249
+ version = "0.6.8"
214
250
  source = "registry+https://github.com/rust-lang/crates.io-index"
215
- checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
251
+ checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
216
252
 
217
253
  [[package]]
218
254
  name = "bytes"
219
- version = "1.8.0"
255
+ version = "1.10.1"
220
256
  source = "registry+https://github.com/rust-lang/crates.io-index"
221
- checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da"
257
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
222
258
 
223
259
  [[package]]
224
260
  name = "cacache"
@@ -258,9 +294,9 @@ dependencies = [
258
294
 
259
295
  [[package]]
260
296
  name = "cc"
261
- version = "1.2.16"
297
+ version = "1.2.20"
262
298
  source = "registry+https://github.com/rust-lang/crates.io-index"
263
- checksum = "be714c154be609ec7f5dad223a33bf1482fff90472de28f7362806e6d4832b8c"
299
+ checksum = "04da6a0d40b948dfc4fa8f5bbf402b0fc1a64a28dbf7d12ffd683550f2c1b63a"
264
300
  dependencies = [
265
301
  "shlex",
266
302
  ]
@@ -271,11 +307,17 @@ version = "1.0.0"
271
307
  source = "registry+https://github.com/rust-lang/crates.io-index"
272
308
  checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
273
309
 
310
+ [[package]]
311
+ name = "cfg_aliases"
312
+ version = "0.2.1"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
315
+
274
316
  [[package]]
275
317
  name = "clap"
276
- version = "4.5.36"
318
+ version = "4.5.38"
277
319
  source = "registry+https://github.com/rust-lang/crates.io-index"
278
- checksum = "2df961d8c8a0d08aa9945718ccf584145eee3f3aa06cddbeac12933781102e04"
320
+ checksum = "ed93b9805f8ba930df42c2590f05453d5ec36cbb85d018868a5b24d31f6ac000"
279
321
  dependencies = [
280
322
  "clap_builder",
281
323
  "clap_derive",
@@ -293,9 +335,9 @@ dependencies = [
293
335
 
294
336
  [[package]]
295
337
  name = "clap_builder"
296
- version = "4.5.36"
338
+ version = "4.5.38"
297
339
  source = "registry+https://github.com/rust-lang/crates.io-index"
298
- checksum = "132dbda40fb6753878316a489d5a1242a8ef2f0d9e47ba01c951ea8aa7d013a5"
340
+ checksum = "379026ff283facf611b0ea629334361c4211d1b12ee01024eec1591133b04120"
299
341
  dependencies = [
300
342
  "anstream",
301
343
  "anstyle",
@@ -303,6 +345,15 @@ dependencies = [
303
345
  "strsim",
304
346
  ]
305
347
 
348
+ [[package]]
349
+ name = "clap_complete"
350
+ version = "4.5.50"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "c91d3baa3bcd889d60e6ef28874126a0b384fd225ab83aa6d8a801c519194ce1"
353
+ dependencies = [
354
+ "clap",
355
+ ]
356
+
306
357
  [[package]]
307
358
  name = "clap_derive"
308
359
  version = "4.5.32"
@@ -312,7 +363,7 @@ dependencies = [
312
363
  "heck",
313
364
  "proc-macro2",
314
365
  "quote",
315
- "syn 2.0.90",
366
+ "syn 2.0.101",
316
367
  ]
317
368
 
318
369
  [[package]]
@@ -329,22 +380,22 @@ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
329
380
 
330
381
  [[package]]
331
382
  name = "console"
332
- version = "0.15.8"
383
+ version = "0.15.11"
333
384
  source = "registry+https://github.com/rust-lang/crates.io-index"
334
- checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb"
385
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
335
386
  dependencies = [
336
387
  "encode_unicode",
337
- "lazy_static",
338
388
  "libc",
339
- "unicode-width 0.1.14",
340
- "windows-sys 0.52.0",
389
+ "once_cell",
390
+ "unicode-width 0.2.0",
391
+ "windows-sys 0.59.0",
341
392
  ]
342
393
 
343
394
  [[package]]
344
395
  name = "cpufeatures"
345
- version = "0.2.16"
396
+ version = "0.2.17"
346
397
  source = "registry+https://github.com/rust-lang/crates.io-index"
347
- checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3"
398
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
348
399
  dependencies = [
349
400
  "libc",
350
401
  ]
@@ -395,9 +446,9 @@ dependencies = [
395
446
 
396
447
  [[package]]
397
448
  name = "deranged"
398
- version = "0.3.11"
449
+ version = "0.4.0"
399
450
  source = "registry+https://github.com/rust-lang/crates.io-index"
400
- checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
451
+ checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
401
452
  dependencies = [
402
453
  "powerfmt",
403
454
  ]
@@ -432,7 +483,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
432
483
  dependencies = [
433
484
  "proc-macro2",
434
485
  "quote",
435
- "syn 2.0.90",
486
+ "syn 2.0.101",
436
487
  ]
437
488
 
438
489
  [[package]]
@@ -443,27 +494,36 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
443
494
 
444
495
  [[package]]
445
496
  name = "either"
446
- version = "1.13.0"
497
+ version = "1.15.0"
447
498
  source = "registry+https://github.com/rust-lang/crates.io-index"
448
- checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
499
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
500
+
501
+ [[package]]
502
+ name = "email_address"
503
+ version = "0.2.9"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "e079f19b08ca6239f47f8ba8509c11cf3ea30095831f7fed61441475edd8c449"
506
+ dependencies = [
507
+ "serde",
508
+ ]
449
509
 
450
510
  [[package]]
451
511
  name = "encode_unicode"
452
- version = "0.3.6"
512
+ version = "1.0.0"
453
513
  source = "registry+https://github.com/rust-lang/crates.io-index"
454
- checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
514
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
455
515
 
456
516
  [[package]]
457
517
  name = "equivalent"
458
- version = "1.0.1"
518
+ version = "1.0.2"
459
519
  source = "registry+https://github.com/rust-lang/crates.io-index"
460
- checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
520
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
461
521
 
462
522
  [[package]]
463
523
  name = "errno"
464
- version = "0.3.10"
524
+ version = "0.3.11"
465
525
  source = "registry+https://github.com/rust-lang/crates.io-index"
466
- checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
526
+ checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
467
527
  dependencies = [
468
528
  "libc",
469
529
  "windows-sys 0.59.0",
@@ -480,6 +540,17 @@ dependencies = [
480
540
  "windows-sys 0.59.0",
481
541
  ]
482
542
 
543
+ [[package]]
544
+ name = "fancy-regex"
545
+ version = "0.14.0"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "6e24cb5a94bcae1e5408b0effca5cd7172ea3c5755049c5f3af4cd283a165298"
548
+ dependencies = [
549
+ "bit-set",
550
+ "regex-automata 0.4.9",
551
+ "regex-syntax 0.8.5",
552
+ ]
553
+
483
554
  [[package]]
484
555
  name = "fastrand"
485
556
  version = "2.3.0"
@@ -508,6 +579,17 @@ dependencies = [
508
579
  "miniz_oxide",
509
580
  ]
510
581
 
582
+ [[package]]
583
+ name = "fluent-uri"
584
+ version = "0.3.2"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "1918b65d96df47d3591bed19c5cca17e3fa5d0707318e4b5ef2eae01764df7e5"
587
+ dependencies = [
588
+ "borrow-or-share",
589
+ "ref-cast",
590
+ "serde",
591
+ ]
592
+
511
593
  [[package]]
512
594
  name = "fnv"
513
595
  version = "1.0.7"
@@ -523,6 +605,16 @@ dependencies = [
523
605
  "percent-encoding",
524
606
  ]
525
607
 
608
+ [[package]]
609
+ name = "fraction"
610
+ version = "0.15.3"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "0f158e3ff0a1b334408dc9fb811cd99b446986f4d8b741bb08f9df1604085ae7"
613
+ dependencies = [
614
+ "lazy_static",
615
+ "num",
616
+ ]
617
+
526
618
  [[package]]
527
619
  name = "futures"
528
620
  version = "0.3.31"
@@ -579,7 +671,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
579
671
  dependencies = [
580
672
  "proc-macro2",
581
673
  "quote",
582
- "syn 2.0.90",
674
+ "syn 2.0.101",
583
675
  ]
584
676
 
585
677
  [[package]]
@@ -624,13 +716,29 @@ dependencies = [
624
716
 
625
717
  [[package]]
626
718
  name = "getrandom"
627
- version = "0.2.15"
719
+ version = "0.2.16"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
722
+ dependencies = [
723
+ "cfg-if",
724
+ "js-sys",
725
+ "libc",
726
+ "wasi 0.11.0+wasi-snapshot-preview1",
727
+ "wasm-bindgen",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "getrandom"
732
+ version = "0.3.2"
628
733
  source = "registry+https://github.com/rust-lang/crates.io-index"
629
- checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
734
+ checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
630
735
  dependencies = [
631
736
  "cfg-if",
737
+ "js-sys",
632
738
  "libc",
633
- "wasi",
739
+ "r-efi",
740
+ "wasi 0.14.2+wasi-0.2.4",
741
+ "wasm-bindgen",
634
742
  ]
635
743
 
636
744
  [[package]]
@@ -639,11 +747,20 @@ version = "0.31.1"
639
747
  source = "registry+https://github.com/rust-lang/crates.io-index"
640
748
  checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
641
749
 
750
+ [[package]]
751
+ name = "github-actions-expressions"
752
+ version = "0.0.3"
753
+ dependencies = [
754
+ "anyhow",
755
+ "itertools",
756
+ "pest",
757
+ "pest_derive",
758
+ "pretty_assertions",
759
+ ]
760
+
642
761
  [[package]]
643
762
  name = "github-actions-models"
644
- version = "0.28.1"
645
- source = "registry+https://github.com/rust-lang/crates.io-index"
646
- checksum = "90f4e09b721ac4c2c4af87cbdeac88fff82284dbcf71702066eecc17c3717dff"
763
+ version = "0.28.3"
647
764
  dependencies = [
648
765
  "indexmap",
649
766
  "serde",
@@ -652,9 +769,9 @@ dependencies = [
652
769
 
653
770
  [[package]]
654
771
  name = "globset"
655
- version = "0.4.15"
772
+ version = "0.4.16"
656
773
  source = "registry+https://github.com/rust-lang/crates.io-index"
657
- checksum = "15f1ce686646e7f1e19bf7d5533fe443a45dbfb990e00629110797578b42fb19"
774
+ checksum = "54a1028dfc5f5df5da8a56a73e6c153c9a9708ec57232470703592a3f18e49f5"
658
775
  dependencies = [
659
776
  "aho-corasick",
660
777
  "bstr",
@@ -675,12 +792,6 @@ version = "0.5.0"
675
792
  source = "registry+https://github.com/rust-lang/crates.io-index"
676
793
  checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
677
794
 
678
- [[package]]
679
- name = "hermit-abi"
680
- version = "0.3.9"
681
- source = "registry+https://github.com/rust-lang/crates.io-index"
682
- checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
683
-
684
795
  [[package]]
685
796
  name = "hex"
686
797
  version = "0.4.3"
@@ -689,18 +800,18 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
689
800
 
690
801
  [[package]]
691
802
  name = "home"
692
- version = "0.5.9"
803
+ version = "0.5.11"
693
804
  source = "registry+https://github.com/rust-lang/crates.io-index"
694
- checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
805
+ checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
695
806
  dependencies = [
696
- "windows-sys 0.52.0",
807
+ "windows-sys 0.59.0",
697
808
  ]
698
809
 
699
810
  [[package]]
700
811
  name = "http"
701
- version = "1.2.0"
812
+ version = "1.3.1"
702
813
  source = "registry+https://github.com/rust-lang/crates.io-index"
703
- checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea"
814
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
704
815
  dependencies = [
705
816
  "bytes",
706
817
  "fnv",
@@ -719,12 +830,12 @@ dependencies = [
719
830
 
720
831
  [[package]]
721
832
  name = "http-body-util"
722
- version = "0.1.2"
833
+ version = "0.1.3"
723
834
  source = "registry+https://github.com/rust-lang/crates.io-index"
724
- checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
835
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
725
836
  dependencies = [
726
837
  "bytes",
727
- "futures-util",
838
+ "futures-core",
728
839
  "http",
729
840
  "http-body",
730
841
  "pin-project-lite",
@@ -787,9 +898,9 @@ dependencies = [
787
898
 
788
899
  [[package]]
789
900
  name = "httparse"
790
- version = "1.9.5"
901
+ version = "1.10.1"
791
902
  source = "registry+https://github.com/rust-lang/crates.io-index"
792
- checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
903
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
793
904
 
794
905
  [[package]]
795
906
  name = "httpdate"
@@ -815,9 +926,9 @@ dependencies = [
815
926
 
816
927
  [[package]]
817
928
  name = "hyper"
818
- version = "1.5.1"
929
+ version = "1.6.0"
819
930
  source = "registry+https://github.com/rust-lang/crates.io-index"
820
- checksum = "97818827ef4f364230e16705d4706e2897df2bb60617d6ca15d598025a3c481f"
931
+ checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
821
932
  dependencies = [
822
933
  "bytes",
823
934
  "futures-channel",
@@ -834,9 +945,9 @@ dependencies = [
834
945
 
835
946
  [[package]]
836
947
  name = "hyper-rustls"
837
- version = "0.27.3"
948
+ version = "0.27.5"
838
949
  source = "registry+https://github.com/rust-lang/crates.io-index"
839
- checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333"
950
+ checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
840
951
  dependencies = [
841
952
  "futures-util",
842
953
  "http",
@@ -852,9 +963,9 @@ dependencies = [
852
963
 
853
964
  [[package]]
854
965
  name = "hyper-util"
855
- version = "0.1.10"
966
+ version = "0.1.11"
856
967
  source = "registry+https://github.com/rust-lang/crates.io-index"
857
- checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4"
968
+ checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
858
969
  dependencies = [
859
970
  "bytes",
860
971
  "futures-channel",
@@ -862,6 +973,7 @@ dependencies = [
862
973
  "http",
863
974
  "http-body",
864
975
  "hyper",
976
+ "libc",
865
977
  "pin-project-lite",
866
978
  "socket2",
867
979
  "tokio",
@@ -910,9 +1022,9 @@ dependencies = [
910
1022
 
911
1023
  [[package]]
912
1024
  name = "icu_locid_transform_data"
913
- version = "1.5.0"
1025
+ version = "1.5.1"
914
1026
  source = "registry+https://github.com/rust-lang/crates.io-index"
915
- checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
1027
+ checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
916
1028
 
917
1029
  [[package]]
918
1030
  name = "icu_normalizer"
@@ -934,9 +1046,9 @@ dependencies = [
934
1046
 
935
1047
  [[package]]
936
1048
  name = "icu_normalizer_data"
937
- version = "1.5.0"
1049
+ version = "1.5.1"
938
1050
  source = "registry+https://github.com/rust-lang/crates.io-index"
939
- checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
1051
+ checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
940
1052
 
941
1053
  [[package]]
942
1054
  name = "icu_properties"
@@ -955,9 +1067,9 @@ dependencies = [
955
1067
 
956
1068
  [[package]]
957
1069
  name = "icu_properties_data"
958
- version = "1.5.0"
1070
+ version = "1.5.1"
959
1071
  source = "registry+https://github.com/rust-lang/crates.io-index"
960
- checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
1072
+ checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
961
1073
 
962
1074
  [[package]]
963
1075
  name = "icu_provider"
@@ -984,7 +1096,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
984
1096
  dependencies = [
985
1097
  "proc-macro2",
986
1098
  "quote",
987
- "syn 2.0.90",
1099
+ "syn 2.0.101",
988
1100
  ]
989
1101
 
990
1102
  [[package]]
@@ -1051,14 +1163,12 @@ dependencies = [
1051
1163
 
1052
1164
  [[package]]
1053
1165
  name = "insta"
1054
- version = "1.42.2"
1166
+ version = "1.43.1"
1055
1167
  source = "registry+https://github.com/rust-lang/crates.io-index"
1056
- checksum = "50259abbaa67d11d2bcafc7ba1d094ed7a0c70e3ce893f0d0997f73558cb3084"
1168
+ checksum = "154934ea70c58054b556dd430b99a98c2a7ff5309ac9891597e339b5c28f4371"
1057
1169
  dependencies = [
1058
1170
  "console",
1059
- "linked-hash-map",
1060
1171
  "once_cell",
1061
- "pin-project",
1062
1172
  "similar",
1063
1173
  ]
1064
1174
 
@@ -1073,9 +1183,9 @@ dependencies = [
1073
1183
 
1074
1184
  [[package]]
1075
1185
  name = "ipnet"
1076
- version = "2.10.1"
1186
+ version = "2.11.0"
1077
1187
  source = "registry+https://github.com/rust-lang/crates.io-index"
1078
- checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708"
1188
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1079
1189
 
1080
1190
  [[package]]
1081
1191
  name = "is_terminal_polyfill"
@@ -1094,9 +1204,9 @@ dependencies = [
1094
1204
 
1095
1205
  [[package]]
1096
1206
  name = "itoa"
1097
- version = "1.0.14"
1207
+ version = "1.0.15"
1098
1208
  source = "registry+https://github.com/rust-lang/crates.io-index"
1099
- checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
1209
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1100
1210
 
1101
1211
  [[package]]
1102
1212
  name = "js-sys"
@@ -1108,6 +1218,33 @@ dependencies = [
1108
1218
  "wasm-bindgen",
1109
1219
  ]
1110
1220
 
1221
+ [[package]]
1222
+ name = "jsonschema"
1223
+ version = "0.30.0"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "f1b46a0365a611fbf1d2143104dcf910aada96fafd295bab16c60b802bf6fa1d"
1226
+ dependencies = [
1227
+ "ahash",
1228
+ "base64 0.22.1",
1229
+ "bytecount",
1230
+ "email_address",
1231
+ "fancy-regex",
1232
+ "fraction",
1233
+ "idna",
1234
+ "itoa",
1235
+ "num-cmp",
1236
+ "num-traits",
1237
+ "once_cell",
1238
+ "percent-encoding",
1239
+ "referencing",
1240
+ "regex",
1241
+ "regex-syntax 0.8.5",
1242
+ "reqwest",
1243
+ "serde",
1244
+ "serde_json",
1245
+ "uuid-simd",
1246
+ ]
1247
+
1111
1248
  [[package]]
1112
1249
  name = "lazy_static"
1113
1250
  version = "1.5.0"
@@ -1116,9 +1253,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1116
1253
 
1117
1254
  [[package]]
1118
1255
  name = "libc"
1119
- version = "0.2.169"
1256
+ version = "0.2.172"
1120
1257
  source = "registry+https://github.com/rust-lang/crates.io-index"
1121
- checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
1258
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
1122
1259
 
1123
1260
  [[package]]
1124
1261
  name = "libredox"
@@ -1142,28 +1279,32 @@ dependencies = [
1142
1279
  ]
1143
1280
 
1144
1281
  [[package]]
1145
- name = "linked-hash-map"
1146
- version = "0.5.6"
1282
+ name = "linux-raw-sys"
1283
+ version = "0.9.4"
1147
1284
  source = "registry+https://github.com/rust-lang/crates.io-index"
1148
- checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
1285
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1149
1286
 
1150
1287
  [[package]]
1151
- name = "linux-raw-sys"
1152
- version = "0.4.14"
1288
+ name = "litemap"
1289
+ version = "0.7.5"
1153
1290
  source = "registry+https://github.com/rust-lang/crates.io-index"
1154
- checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
1291
+ checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
1155
1292
 
1156
1293
  [[package]]
1157
- name = "litemap"
1158
- version = "0.7.4"
1294
+ name = "lock_api"
1295
+ version = "0.4.12"
1159
1296
  source = "registry+https://github.com/rust-lang/crates.io-index"
1160
- checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
1297
+ checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1298
+ dependencies = [
1299
+ "autocfg",
1300
+ "scopeguard",
1301
+ ]
1161
1302
 
1162
1303
  [[package]]
1163
1304
  name = "log"
1164
- version = "0.4.22"
1305
+ version = "0.4.27"
1165
1306
  source = "registry+https://github.com/rust-lang/crates.io-index"
1166
- checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
1307
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1167
1308
 
1168
1309
  [[package]]
1169
1310
  name = "matchers"
@@ -1209,7 +1350,7 @@ checksum = "49e7bc1560b95a3c4a25d03de42fe76ca718ab92d1a22a55b9b4cf67b3ae635c"
1209
1350
  dependencies = [
1210
1351
  "proc-macro2",
1211
1352
  "quote",
1212
- "syn 2.0.90",
1353
+ "syn 2.0.101",
1213
1354
  ]
1214
1355
 
1215
1356
  [[package]]
@@ -1226,22 +1367,21 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1226
1367
 
1227
1368
  [[package]]
1228
1369
  name = "miniz_oxide"
1229
- version = "0.8.5"
1370
+ version = "0.8.8"
1230
1371
  source = "registry+https://github.com/rust-lang/crates.io-index"
1231
- checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5"
1372
+ checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
1232
1373
  dependencies = [
1233
1374
  "adler2",
1234
1375
  ]
1235
1376
 
1236
1377
  [[package]]
1237
1378
  name = "mio"
1238
- version = "1.0.2"
1379
+ version = "1.0.3"
1239
1380
  source = "registry+https://github.com/rust-lang/crates.io-index"
1240
- checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
1381
+ checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1241
1382
  dependencies = [
1242
- "hermit-abi",
1243
1383
  "libc",
1244
- "wasi",
1384
+ "wasi 0.11.0+wasi-snapshot-preview1",
1245
1385
  "windows-sys 0.52.0",
1246
1386
  ]
1247
1387
 
@@ -1271,12 +1411,91 @@ dependencies = [
1271
1411
  "winapi",
1272
1412
  ]
1273
1413
 
1414
+ [[package]]
1415
+ name = "num"
1416
+ version = "0.4.3"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
1419
+ dependencies = [
1420
+ "num-bigint",
1421
+ "num-complex",
1422
+ "num-integer",
1423
+ "num-iter",
1424
+ "num-rational",
1425
+ "num-traits",
1426
+ ]
1427
+
1428
+ [[package]]
1429
+ name = "num-bigint"
1430
+ version = "0.4.6"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1433
+ dependencies = [
1434
+ "num-integer",
1435
+ "num-traits",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "num-cmp"
1440
+ version = "0.1.0"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "63335b2e2c34fae2fb0aa2cecfd9f0832a1e24b3b32ecec612c3426d46dc8aaa"
1443
+
1444
+ [[package]]
1445
+ name = "num-complex"
1446
+ version = "0.4.6"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1449
+ dependencies = [
1450
+ "num-traits",
1451
+ ]
1452
+
1274
1453
  [[package]]
1275
1454
  name = "num-conv"
1276
1455
  version = "0.1.0"
1277
1456
  source = "registry+https://github.com/rust-lang/crates.io-index"
1278
1457
  checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1279
1458
 
1459
+ [[package]]
1460
+ name = "num-integer"
1461
+ version = "0.1.46"
1462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1463
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1464
+ dependencies = [
1465
+ "num-traits",
1466
+ ]
1467
+
1468
+ [[package]]
1469
+ name = "num-iter"
1470
+ version = "0.1.45"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1473
+ dependencies = [
1474
+ "autocfg",
1475
+ "num-integer",
1476
+ "num-traits",
1477
+ ]
1478
+
1479
+ [[package]]
1480
+ name = "num-rational"
1481
+ version = "0.4.2"
1482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
1484
+ dependencies = [
1485
+ "num-bigint",
1486
+ "num-integer",
1487
+ "num-traits",
1488
+ ]
1489
+
1490
+ [[package]]
1491
+ name = "num-traits"
1492
+ version = "0.2.19"
1493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1494
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1495
+ dependencies = [
1496
+ "autocfg",
1497
+ ]
1498
+
1280
1499
  [[package]]
1281
1500
  name = "number_prefix"
1282
1501
  version = "0.4.0"
@@ -1285,30 +1504,36 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
1285
1504
 
1286
1505
  [[package]]
1287
1506
  name = "object"
1288
- version = "0.36.5"
1507
+ version = "0.36.7"
1289
1508
  source = "registry+https://github.com/rust-lang/crates.io-index"
1290
- checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
1509
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1291
1510
  dependencies = [
1292
1511
  "memchr",
1293
1512
  ]
1294
1513
 
1295
1514
  [[package]]
1296
1515
  name = "once_cell"
1297
- version = "1.20.2"
1516
+ version = "1.21.3"
1298
1517
  source = "registry+https://github.com/rust-lang/crates.io-index"
1299
- checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
1518
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1300
1519
 
1301
1520
  [[package]]
1302
1521
  name = "os_info"
1303
- version = "3.8.2"
1522
+ version = "3.10.0"
1304
1523
  source = "registry+https://github.com/rust-lang/crates.io-index"
1305
- checksum = "ae99c7fa6dd38c7cafe1ec085e804f8f555a2f8659b0dbe03f1f9963a9b51092"
1524
+ checksum = "2a604e53c24761286860eba4e2c8b23a0161526476b1de520139d69cdb85a6b5"
1306
1525
  dependencies = [
1307
1526
  "log",
1308
1527
  "serde",
1309
1528
  "windows-sys 0.52.0",
1310
1529
  ]
1311
1530
 
1531
+ [[package]]
1532
+ name = "outref"
1533
+ version = "0.5.2"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
1536
+
1312
1537
  [[package]]
1313
1538
  name = "overload"
1314
1539
  version = "0.1.1"
@@ -1317,9 +1542,32 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1317
1542
 
1318
1543
  [[package]]
1319
1544
  name = "owo-colors"
1320
- version = "4.2.0"
1545
+ version = "4.2.1"
1321
1546
  source = "registry+https://github.com/rust-lang/crates.io-index"
1322
- checksum = "1036865bb9422d3300cf723f657c2851d0e9ab12567854b1f4eba3d77decf564"
1547
+ checksum = "26995317201fa17f3656c36716aed4a7c81743a9634ac4c99c0eeda495db0cec"
1548
+
1549
+ [[package]]
1550
+ name = "parking_lot"
1551
+ version = "0.12.3"
1552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+ checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
1554
+ dependencies = [
1555
+ "lock_api",
1556
+ "parking_lot_core",
1557
+ ]
1558
+
1559
+ [[package]]
1560
+ name = "parking_lot_core"
1561
+ version = "0.9.10"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
1564
+ dependencies = [
1565
+ "cfg-if",
1566
+ "libc",
1567
+ "redox_syscall",
1568
+ "smallvec",
1569
+ "windows-targets 0.52.6",
1570
+ ]
1323
1571
 
1324
1572
  [[package]]
1325
1573
  name = "percent-encoding"
@@ -1358,7 +1606,7 @@ dependencies = [
1358
1606
  "pest_meta",
1359
1607
  "proc-macro2",
1360
1608
  "quote",
1361
- "syn 2.0.90",
1609
+ "syn 2.0.101",
1362
1610
  ]
1363
1611
 
1364
1612
  [[package]]
@@ -1372,31 +1620,11 @@ dependencies = [
1372
1620
  "sha2",
1373
1621
  ]
1374
1622
 
1375
- [[package]]
1376
- name = "pin-project"
1377
- version = "1.1.8"
1378
- source = "registry+https://github.com/rust-lang/crates.io-index"
1379
- checksum = "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916"
1380
- dependencies = [
1381
- "pin-project-internal",
1382
- ]
1383
-
1384
- [[package]]
1385
- name = "pin-project-internal"
1386
- version = "1.1.8"
1387
- source = "registry+https://github.com/rust-lang/crates.io-index"
1388
- checksum = "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb"
1389
- dependencies = [
1390
- "proc-macro2",
1391
- "quote",
1392
- "syn 2.0.90",
1393
- ]
1394
-
1395
1623
  [[package]]
1396
1624
  name = "pin-project-lite"
1397
- version = "0.2.15"
1625
+ version = "0.2.16"
1398
1626
  source = "registry+https://github.com/rust-lang/crates.io-index"
1399
- checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
1627
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1400
1628
 
1401
1629
  [[package]]
1402
1630
  name = "pin-utils"
@@ -1406,9 +1634,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1406
1634
 
1407
1635
  [[package]]
1408
1636
  name = "portable-atomic"
1409
- version = "1.10.0"
1637
+ version = "1.11.0"
1410
1638
  source = "registry+https://github.com/rust-lang/crates.io-index"
1411
- checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
1639
+ checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
1412
1640
 
1413
1641
  [[package]]
1414
1642
  name = "powerfmt"
@@ -1418,18 +1646,18 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1418
1646
 
1419
1647
  [[package]]
1420
1648
  name = "ppv-lite86"
1421
- version = "0.2.20"
1649
+ version = "0.2.21"
1422
1650
  source = "registry+https://github.com/rust-lang/crates.io-index"
1423
- checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
1651
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1424
1652
  dependencies = [
1425
- "zerocopy",
1653
+ "zerocopy 0.8.25",
1426
1654
  ]
1427
1655
 
1428
1656
  [[package]]
1429
1657
  name = "predicates"
1430
- version = "3.1.2"
1658
+ version = "3.1.3"
1431
1659
  source = "registry+https://github.com/rust-lang/crates.io-index"
1432
- checksum = "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97"
1660
+ checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
1433
1661
  dependencies = [
1434
1662
  "anstyle",
1435
1663
  "difflib",
@@ -1438,15 +1666,15 @@ dependencies = [
1438
1666
 
1439
1667
  [[package]]
1440
1668
  name = "predicates-core"
1441
- version = "1.0.8"
1669
+ version = "1.0.9"
1442
1670
  source = "registry+https://github.com/rust-lang/crates.io-index"
1443
- checksum = "ae8177bee8e75d6846599c6b9ff679ed51e882816914eec639944d7c9aa11931"
1671
+ checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
1444
1672
 
1445
1673
  [[package]]
1446
1674
  name = "predicates-tree"
1447
- version = "1.0.11"
1675
+ version = "1.0.12"
1448
1676
  source = "registry+https://github.com/rust-lang/crates.io-index"
1449
- checksum = "41b740d195ed3166cd147c8047ec98db0e22ec019eb8eeb76d343b795304fb13"
1677
+ checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
1450
1678
  dependencies = [
1451
1679
  "predicates-core",
1452
1680
  "termtree",
@@ -1464,64 +1692,70 @@ dependencies = [
1464
1692
 
1465
1693
  [[package]]
1466
1694
  name = "prettyplease"
1467
- version = "0.2.25"
1695
+ version = "0.2.32"
1468
1696
  source = "registry+https://github.com/rust-lang/crates.io-index"
1469
- checksum = "64d1ec885c64d0457d564db4ec299b2dae3f9c02808b8ad9c3a089c591b18033"
1697
+ checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6"
1470
1698
  dependencies = [
1471
1699
  "proc-macro2",
1472
- "syn 2.0.90",
1700
+ "syn 2.0.101",
1473
1701
  ]
1474
1702
 
1475
1703
  [[package]]
1476
1704
  name = "proc-macro2"
1477
- version = "1.0.92"
1705
+ version = "1.0.95"
1478
1706
  source = "registry+https://github.com/rust-lang/crates.io-index"
1479
- checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
1707
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
1480
1708
  dependencies = [
1481
1709
  "unicode-ident",
1482
1710
  ]
1483
1711
 
1484
1712
  [[package]]
1485
1713
  name = "quinn"
1486
- version = "0.11.5"
1714
+ version = "0.11.7"
1487
1715
  source = "registry+https://github.com/rust-lang/crates.io-index"
1488
- checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684"
1716
+ checksum = "c3bd15a6f2967aef83887dcb9fec0014580467e33720d073560cf015a5683012"
1489
1717
  dependencies = [
1490
1718
  "bytes",
1719
+ "cfg_aliases",
1491
1720
  "pin-project-lite",
1492
1721
  "quinn-proto",
1493
1722
  "quinn-udp",
1494
1723
  "rustc-hash",
1495
1724
  "rustls",
1496
1725
  "socket2",
1497
- "thiserror 1.0.69",
1726
+ "thiserror 2.0.12",
1498
1727
  "tokio",
1499
1728
  "tracing",
1729
+ "web-time",
1500
1730
  ]
1501
1731
 
1502
1732
  [[package]]
1503
1733
  name = "quinn-proto"
1504
- version = "0.11.8"
1734
+ version = "0.11.11"
1505
1735
  source = "registry+https://github.com/rust-lang/crates.io-index"
1506
- checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6"
1736
+ checksum = "bcbafbbdbb0f638fe3f35f3c56739f77a8a1d070cb25603226c83339b391472b"
1507
1737
  dependencies = [
1508
1738
  "bytes",
1739
+ "getrandom 0.3.2",
1509
1740
  "rand",
1510
1741
  "ring",
1511
1742
  "rustc-hash",
1512
1743
  "rustls",
1744
+ "rustls-pki-types",
1513
1745
  "slab",
1514
- "thiserror 1.0.69",
1746
+ "thiserror 2.0.12",
1515
1747
  "tinyvec",
1516
1748
  "tracing",
1749
+ "web-time",
1517
1750
  ]
1518
1751
 
1519
1752
  [[package]]
1520
1753
  name = "quinn-udp"
1521
- version = "0.5.5"
1754
+ version = "0.5.11"
1522
1755
  source = "registry+https://github.com/rust-lang/crates.io-index"
1523
- checksum = "4fe68c2e9e1a1234e218683dbdf9f9dfcb094113c5ac2b938dfcb9bab4c4140b"
1756
+ checksum = "541d0f57c6ec747a90738a52741d3221f7960e8ac2f0ff4b1a63680e033b4ab5"
1524
1757
  dependencies = [
1758
+ "cfg_aliases",
1525
1759
  "libc",
1526
1760
  "once_cell",
1527
1761
  "socket2",
@@ -1531,29 +1765,34 @@ dependencies = [
1531
1765
 
1532
1766
  [[package]]
1533
1767
  name = "quote"
1534
- version = "1.0.37"
1768
+ version = "1.0.40"
1535
1769
  source = "registry+https://github.com/rust-lang/crates.io-index"
1536
- checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
1770
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1537
1771
  dependencies = [
1538
1772
  "proc-macro2",
1539
1773
  ]
1540
1774
 
1775
+ [[package]]
1776
+ name = "r-efi"
1777
+ version = "5.2.0"
1778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1779
+ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
1780
+
1541
1781
  [[package]]
1542
1782
  name = "rand"
1543
- version = "0.8.5"
1783
+ version = "0.9.1"
1544
1784
  source = "registry+https://github.com/rust-lang/crates.io-index"
1545
- checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1785
+ checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
1546
1786
  dependencies = [
1547
- "libc",
1548
1787
  "rand_chacha",
1549
1788
  "rand_core",
1550
1789
  ]
1551
1790
 
1552
1791
  [[package]]
1553
1792
  name = "rand_chacha"
1554
- version = "0.3.1"
1793
+ version = "0.9.0"
1555
1794
  source = "registry+https://github.com/rust-lang/crates.io-index"
1556
- checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1795
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1557
1796
  dependencies = [
1558
1797
  "ppv-lite86",
1559
1798
  "rand_core",
@@ -1561,29 +1800,64 @@ dependencies = [
1561
1800
 
1562
1801
  [[package]]
1563
1802
  name = "rand_core"
1564
- version = "0.6.4"
1803
+ version = "0.9.3"
1565
1804
  source = "registry+https://github.com/rust-lang/crates.io-index"
1566
- checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1805
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
1567
1806
  dependencies = [
1568
- "getrandom",
1807
+ "getrandom 0.3.2",
1569
1808
  ]
1570
1809
 
1571
1810
  [[package]]
1572
1811
  name = "redox_syscall"
1573
- version = "0.5.8"
1812
+ version = "0.5.11"
1574
1813
  source = "registry+https://github.com/rust-lang/crates.io-index"
1575
- checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
1814
+ checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
1576
1815
  dependencies = [
1577
1816
  "bitflags",
1578
1817
  ]
1579
1818
 
1819
+ [[package]]
1820
+ name = "ref-cast"
1821
+ version = "1.0.24"
1822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1823
+ checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
1824
+ dependencies = [
1825
+ "ref-cast-impl",
1826
+ ]
1827
+
1828
+ [[package]]
1829
+ name = "ref-cast-impl"
1830
+ version = "1.0.24"
1831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1832
+ checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
1833
+ dependencies = [
1834
+ "proc-macro2",
1835
+ "quote",
1836
+ "syn 2.0.101",
1837
+ ]
1838
+
1839
+ [[package]]
1840
+ name = "referencing"
1841
+ version = "0.30.0"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "c8eff4fa778b5c2a57e85c5f2fe3a709c52f0e60d23146e2151cbef5893f420e"
1844
+ dependencies = [
1845
+ "ahash",
1846
+ "fluent-uri",
1847
+ "once_cell",
1848
+ "parking_lot",
1849
+ "percent-encoding",
1850
+ "serde_json",
1851
+ ]
1852
+
1580
1853
  [[package]]
1581
1854
  name = "reflink-copy"
1582
- version = "0.1.20"
1855
+ version = "0.1.26"
1583
1856
  source = "registry+https://github.com/rust-lang/crates.io-index"
1584
- checksum = "17400ed684c3a0615932f00c271ae3eea13e47056a1455821995122348ab6438"
1857
+ checksum = "78c81d000a2c524133cc00d2f92f019d399e57906c3b7119271a2495354fe895"
1585
1858
  dependencies = [
1586
1859
  "cfg-if",
1860
+ "libc",
1587
1861
  "rustix",
1588
1862
  "windows",
1589
1863
  ]
@@ -1693,13 +1967,13 @@ dependencies = [
1693
1967
 
1694
1968
  [[package]]
1695
1969
  name = "ring"
1696
- version = "0.17.13"
1970
+ version = "0.17.14"
1697
1971
  source = "registry+https://github.com/rust-lang/crates.io-index"
1698
- checksum = "70ac5d832aa16abd7d1def883a8545280c20a60f523a370aa3a9617c2b8550ee"
1972
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1699
1973
  dependencies = [
1700
1974
  "cc",
1701
1975
  "cfg-if",
1702
- "getrandom",
1976
+ "getrandom 0.2.16",
1703
1977
  "libc",
1704
1978
  "untrusted",
1705
1979
  "windows-sys 0.52.0",
@@ -1713,15 +1987,15 @@ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
1713
1987
 
1714
1988
  [[package]]
1715
1989
  name = "rustc-hash"
1716
- version = "2.0.0"
1990
+ version = "2.1.1"
1717
1991
  source = "registry+https://github.com/rust-lang/crates.io-index"
1718
- checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152"
1992
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1719
1993
 
1720
1994
  [[package]]
1721
1995
  name = "rustix"
1722
- version = "0.38.42"
1996
+ version = "1.0.5"
1723
1997
  source = "registry+https://github.com/rust-lang/crates.io-index"
1724
- checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85"
1998
+ checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
1725
1999
  dependencies = [
1726
2000
  "bitflags",
1727
2001
  "errno",
@@ -1732,9 +2006,9 @@ dependencies = [
1732
2006
 
1733
2007
  [[package]]
1734
2008
  name = "rustls"
1735
- version = "0.23.19"
2009
+ version = "0.23.26"
1736
2010
  source = "registry+https://github.com/rust-lang/crates.io-index"
1737
- checksum = "934b404430bb06b3fae2cba809eb45a1ab1aecd64491213d7c3301b88393f8d1"
2011
+ checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
1738
2012
  dependencies = [
1739
2013
  "once_cell",
1740
2014
  "ring",
@@ -1755,15 +2029,18 @@ dependencies = [
1755
2029
 
1756
2030
  [[package]]
1757
2031
  name = "rustls-pki-types"
1758
- version = "1.10.0"
2032
+ version = "1.11.0"
1759
2033
  source = "registry+https://github.com/rust-lang/crates.io-index"
1760
- checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b"
2034
+ checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
2035
+ dependencies = [
2036
+ "web-time",
2037
+ ]
1761
2038
 
1762
2039
  [[package]]
1763
2040
  name = "rustls-webpki"
1764
- version = "0.102.8"
2041
+ version = "0.103.1"
1765
2042
  source = "registry+https://github.com/rust-lang/crates.io-index"
1766
- checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
2043
+ checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
1767
2044
  dependencies = [
1768
2045
  "ring",
1769
2046
  "rustls-pki-types",
@@ -1772,15 +2049,15 @@ dependencies = [
1772
2049
 
1773
2050
  [[package]]
1774
2051
  name = "rustversion"
1775
- version = "1.0.18"
2052
+ version = "1.0.20"
1776
2053
  source = "registry+https://github.com/rust-lang/crates.io-index"
1777
- checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248"
2054
+ checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
1778
2055
 
1779
2056
  [[package]]
1780
2057
  name = "ryu"
1781
- version = "1.0.18"
2058
+ version = "1.0.20"
1782
2059
  source = "registry+https://github.com/rust-lang/crates.io-index"
1783
- checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
2060
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1784
2061
 
1785
2062
  [[package]]
1786
2063
  name = "same-file"
@@ -1818,6 +2095,12 @@ dependencies = [
1818
2095
  "uriparse",
1819
2096
  ]
1820
2097
 
2098
+ [[package]]
2099
+ name = "scopeguard"
2100
+ version = "1.2.0"
2101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2102
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2103
+
1821
2104
  [[package]]
1822
2105
  name = "serde"
1823
2106
  version = "1.0.219"
@@ -1829,9 +2112,9 @@ dependencies = [
1829
2112
 
1830
2113
  [[package]]
1831
2114
  name = "serde-sarif"
1832
- version = "0.7.0"
2115
+ version = "0.8.0"
1833
2116
  source = "registry+https://github.com/rust-lang/crates.io-index"
1834
- checksum = "b39432f20e354de863582451c54bac03ffa63f7dd77f8b1e0ddee211950ab2a2"
2117
+ checksum = "a053c46f18a8043570d4e32fefc4c6377f82bf29ec310a33e93f273048e3b0be"
1835
2118
  dependencies = [
1836
2119
  "anyhow",
1837
2120
  "prettyplease",
@@ -1842,7 +2125,7 @@ dependencies = [
1842
2125
  "serde_json",
1843
2126
  "strum",
1844
2127
  "strum_macros",
1845
- "syn 2.0.90",
2128
+ "syn 2.0.101",
1846
2129
  "thiserror 2.0.12",
1847
2130
  "typed-builder",
1848
2131
  ]
@@ -1855,7 +2138,7 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
1855
2138
  dependencies = [
1856
2139
  "proc-macro2",
1857
2140
  "quote",
1858
- "syn 2.0.90",
2141
+ "syn 2.0.101",
1859
2142
  ]
1860
2143
 
1861
2144
  [[package]]
@@ -1918,7 +2201,7 @@ checksum = "aafbefbe175fa9bf03ca83ef89beecff7d2a95aaacd5732325b90ac8c3bd7b90"
1918
2201
  dependencies = [
1919
2202
  "proc-macro2",
1920
2203
  "quote",
1921
- "syn 2.0.90",
2204
+ "syn 2.0.101",
1922
2205
  ]
1923
2206
 
1924
2207
  [[package]]
@@ -2005,9 +2288,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2005
2288
 
2006
2289
  [[package]]
2007
2290
  name = "similar"
2008
- version = "2.6.0"
2291
+ version = "2.7.0"
2009
2292
  source = "registry+https://github.com/rust-lang/crates.io-index"
2010
- checksum = "1de1d4f81173b03af4c0cbed3c898f6bff5b870e4a7f5d6f4057d62a7a4b686e"
2293
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
2011
2294
 
2012
2295
  [[package]]
2013
2296
  name = "slab"
@@ -2020,15 +2303,15 @@ dependencies = [
2020
2303
 
2021
2304
  [[package]]
2022
2305
  name = "smallvec"
2023
- version = "1.13.2"
2306
+ version = "1.15.0"
2024
2307
  source = "registry+https://github.com/rust-lang/crates.io-index"
2025
- checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
2308
+ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
2026
2309
 
2027
2310
  [[package]]
2028
2311
  name = "socket2"
2029
- version = "0.5.7"
2312
+ version = "0.5.9"
2030
2313
  source = "registry+https://github.com/rust-lang/crates.io-index"
2031
- checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
2314
+ checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
2032
2315
  dependencies = [
2033
2316
  "libc",
2034
2317
  "windows-sys 0.52.0",
@@ -2071,21 +2354,21 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2071
2354
 
2072
2355
  [[package]]
2073
2356
  name = "strum"
2074
- version = "0.26.3"
2357
+ version = "0.27.1"
2075
2358
  source = "registry+https://github.com/rust-lang/crates.io-index"
2076
- checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
2359
+ checksum = "f64def088c51c9510a8579e3c5d67c65349dcf755e5479ad3d010aa6454e2c32"
2077
2360
 
2078
2361
  [[package]]
2079
2362
  name = "strum_macros"
2080
- version = "0.26.4"
2363
+ version = "0.27.1"
2081
2364
  source = "registry+https://github.com/rust-lang/crates.io-index"
2082
- checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
2365
+ checksum = "c77a8c5abcaf0f9ce05d62342b7d298c346515365c36b673df4ebe3ced01fde8"
2083
2366
  dependencies = [
2084
2367
  "heck",
2085
2368
  "proc-macro2",
2086
2369
  "quote",
2087
2370
  "rustversion",
2088
- "syn 2.0.90",
2371
+ "syn 2.0.101",
2089
2372
  ]
2090
2373
 
2091
2374
  [[package]]
@@ -2107,9 +2390,9 @@ dependencies = [
2107
2390
 
2108
2391
  [[package]]
2109
2392
  name = "syn"
2110
- version = "2.0.90"
2393
+ version = "2.0.101"
2111
2394
  source = "registry+https://github.com/rust-lang/crates.io-index"
2112
- checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31"
2395
+ checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
2113
2396
  dependencies = [
2114
2397
  "proc-macro2",
2115
2398
  "quote",
@@ -2133,7 +2416,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
2133
2416
  dependencies = [
2134
2417
  "proc-macro2",
2135
2418
  "quote",
2136
- "syn 2.0.90",
2419
+ "syn 2.0.101",
2137
2420
  ]
2138
2421
 
2139
2422
  [[package]]
@@ -2149,12 +2432,12 @@ dependencies = [
2149
2432
 
2150
2433
  [[package]]
2151
2434
  name = "tempfile"
2152
- version = "3.14.0"
2435
+ version = "3.19.1"
2153
2436
  source = "registry+https://github.com/rust-lang/crates.io-index"
2154
- checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c"
2437
+ checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
2155
2438
  dependencies = [
2156
- "cfg-if",
2157
2439
  "fastrand",
2440
+ "getrandom 0.3.2",
2158
2441
  "once_cell",
2159
2442
  "rustix",
2160
2443
  "windows-sys 0.59.0",
@@ -2168,9 +2451,9 @@ checksum = "253bcead4f3aa96243b0f8fa46f9010e87ca23bd5d0c723d474ff1d2417bbdf8"
2168
2451
 
2169
2452
  [[package]]
2170
2453
  name = "termtree"
2171
- version = "0.4.1"
2454
+ version = "0.5.1"
2172
2455
  source = "registry+https://github.com/rust-lang/crates.io-index"
2173
- checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
2456
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
2174
2457
 
2175
2458
  [[package]]
2176
2459
  name = "text-size"
@@ -2204,7 +2487,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2204
2487
  dependencies = [
2205
2488
  "proc-macro2",
2206
2489
  "quote",
2207
- "syn 2.0.90",
2490
+ "syn 2.0.101",
2208
2491
  ]
2209
2492
 
2210
2493
  [[package]]
@@ -2215,7 +2498,7 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
2215
2498
  dependencies = [
2216
2499
  "proc-macro2",
2217
2500
  "quote",
2218
- "syn 2.0.90",
2501
+ "syn 2.0.101",
2219
2502
  ]
2220
2503
 
2221
2504
  [[package]]
@@ -2230,9 +2513,9 @@ dependencies = [
2230
2513
 
2231
2514
  [[package]]
2232
2515
  name = "time"
2233
- version = "0.3.37"
2516
+ version = "0.3.41"
2234
2517
  source = "registry+https://github.com/rust-lang/crates.io-index"
2235
- checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
2518
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
2236
2519
  dependencies = [
2237
2520
  "deranged",
2238
2521
  "itoa",
@@ -2245,15 +2528,15 @@ dependencies = [
2245
2528
 
2246
2529
  [[package]]
2247
2530
  name = "time-core"
2248
- version = "0.1.2"
2531
+ version = "0.1.4"
2249
2532
  source = "registry+https://github.com/rust-lang/crates.io-index"
2250
- checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
2533
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
2251
2534
 
2252
2535
  [[package]]
2253
2536
  name = "time-macros"
2254
- version = "0.2.19"
2537
+ version = "0.2.22"
2255
2538
  source = "registry+https://github.com/rust-lang/crates.io-index"
2256
- checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
2539
+ checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
2257
2540
  dependencies = [
2258
2541
  "num-conv",
2259
2542
  "time-core",
@@ -2271,9 +2554,9 @@ dependencies = [
2271
2554
 
2272
2555
  [[package]]
2273
2556
  name = "tinyvec"
2274
- version = "1.8.0"
2557
+ version = "1.9.0"
2275
2558
  source = "registry+https://github.com/rust-lang/crates.io-index"
2276
- checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
2559
+ checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
2277
2560
  dependencies = [
2278
2561
  "tinyvec_macros",
2279
2562
  ]
@@ -2286,9 +2569,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2286
2569
 
2287
2570
  [[package]]
2288
2571
  name = "tokio"
2289
- version = "1.44.2"
2572
+ version = "1.45.0"
2290
2573
  source = "registry+https://github.com/rust-lang/crates.io-index"
2291
- checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
2574
+ checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165"
2292
2575
  dependencies = [
2293
2576
  "backtrace",
2294
2577
  "bytes",
@@ -2308,17 +2591,16 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
2308
2591
  dependencies = [
2309
2592
  "proc-macro2",
2310
2593
  "quote",
2311
- "syn 2.0.90",
2594
+ "syn 2.0.101",
2312
2595
  ]
2313
2596
 
2314
2597
  [[package]]
2315
2598
  name = "tokio-rustls"
2316
- version = "0.26.0"
2599
+ version = "0.26.2"
2317
2600
  source = "registry+https://github.com/rust-lang/crates.io-index"
2318
- checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
2601
+ checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
2319
2602
  dependencies = [
2320
2603
  "rustls",
2321
- "rustls-pki-types",
2322
2604
  "tokio",
2323
2605
  ]
2324
2606
 
@@ -2335,9 +2617,9 @@ dependencies = [
2335
2617
 
2336
2618
  [[package]]
2337
2619
  name = "toml"
2338
- version = "0.8.19"
2620
+ version = "0.8.22"
2339
2621
  source = "registry+https://github.com/rust-lang/crates.io-index"
2340
- checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e"
2622
+ checksum = "05ae329d1f08c4d17a59bed7ff5b5a769d062e64a62d34a3261b219e62cd5aae"
2341
2623
  dependencies = [
2342
2624
  "serde",
2343
2625
  "serde_spanned",
@@ -2347,25 +2629,32 @@ dependencies = [
2347
2629
 
2348
2630
  [[package]]
2349
2631
  name = "toml_datetime"
2350
- version = "0.6.8"
2632
+ version = "0.6.9"
2351
2633
  source = "registry+https://github.com/rust-lang/crates.io-index"
2352
- checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
2634
+ checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
2353
2635
  dependencies = [
2354
2636
  "serde",
2355
2637
  ]
2356
2638
 
2357
2639
  [[package]]
2358
2640
  name = "toml_edit"
2359
- version = "0.22.22"
2641
+ version = "0.22.26"
2360
2642
  source = "registry+https://github.com/rust-lang/crates.io-index"
2361
- checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5"
2643
+ checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
2362
2644
  dependencies = [
2363
2645
  "indexmap",
2364
2646
  "serde",
2365
2647
  "serde_spanned",
2366
2648
  "toml_datetime",
2649
+ "toml_write",
2367
2650
  ]
2368
2651
 
2652
+ [[package]]
2653
+ name = "toml_write"
2654
+ version = "0.1.1"
2655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2656
+ checksum = "bfb942dfe1d8e29a7ee7fcbde5bd2b9a25fb89aa70caea2eba3bee836ff41076"
2657
+
2369
2658
  [[package]]
2370
2659
  name = "tower"
2371
2660
  version = "0.5.2"
@@ -2412,7 +2701,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
2412
2701
  dependencies = [
2413
2702
  "proc-macro2",
2414
2703
  "quote",
2415
- "syn 2.0.90",
2704
+ "syn 2.0.101",
2416
2705
  ]
2417
2706
 
2418
2707
  [[package]]
@@ -2468,9 +2757,9 @@ dependencies = [
2468
2757
 
2469
2758
  [[package]]
2470
2759
  name = "tree-sitter"
2471
- version = "0.25.3"
2760
+ version = "0.25.4"
2472
2761
  source = "registry+https://github.com/rust-lang/crates.io-index"
2473
- checksum = "b9ac5ea5e7f2f1700842ec071401010b9c59bf735295f6e9fa079c3dc035b167"
2762
+ checksum = "69aff09fea9a41fb061ae6b206cb87cac1b8db07df31be3ba271fbc26760f213"
2474
2763
  dependencies = [
2475
2764
  "cc",
2476
2765
  "regex",
@@ -2492,9 +2781,9 @@ dependencies = [
2492
2781
 
2493
2782
  [[package]]
2494
2783
  name = "tree-sitter-language"
2495
- version = "0.1.2"
2784
+ version = "0.1.5"
2496
2785
  source = "registry+https://github.com/rust-lang/crates.io-index"
2497
- checksum = "e8ddffe35a0e5eeeadf13ff7350af564c6e73993a24db62caee1822b185c2600"
2786
+ checksum = "c4013970217383f67b18aef68f6fb2e8d409bc5755227092d32efb0422ba24b8"
2498
2787
 
2499
2788
  [[package]]
2500
2789
  name = "tree-sitter-powershell"
@@ -2524,29 +2813,29 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2524
2813
 
2525
2814
  [[package]]
2526
2815
  name = "typed-builder"
2527
- version = "0.20.0"
2816
+ version = "0.21.0"
2528
2817
  source = "registry+https://github.com/rust-lang/crates.io-index"
2529
- checksum = "7e14ed59dc8b7b26cacb2a92bad2e8b1f098806063898ab42a3bd121d7d45e75"
2818
+ checksum = "ce63bcaf7e9806c206f7d7b9c1f38e0dce8bb165a80af0898161058b19248534"
2530
2819
  dependencies = [
2531
2820
  "typed-builder-macro",
2532
2821
  ]
2533
2822
 
2534
2823
  [[package]]
2535
2824
  name = "typed-builder-macro"
2536
- version = "0.20.0"
2825
+ version = "0.21.0"
2537
2826
  source = "registry+https://github.com/rust-lang/crates.io-index"
2538
- checksum = "560b82d656506509d43abe30e0ba64c56b1953ab3d4fe7ba5902747a7a3cedd5"
2827
+ checksum = "60d8d828da2a3d759d3519cdf29a5bac49c77d039ad36d0782edadbf9cd5415b"
2539
2828
  dependencies = [
2540
2829
  "proc-macro2",
2541
2830
  "quote",
2542
- "syn 2.0.90",
2831
+ "syn 2.0.101",
2543
2832
  ]
2544
2833
 
2545
2834
  [[package]]
2546
2835
  name = "typenum"
2547
- version = "1.17.0"
2836
+ version = "1.18.0"
2548
2837
  source = "registry+https://github.com/rust-lang/crates.io-index"
2549
- checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2838
+ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
2550
2839
 
2551
2840
  [[package]]
2552
2841
  name = "ucd-trie"
@@ -2556,9 +2845,9 @@ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
2556
2845
 
2557
2846
  [[package]]
2558
2847
  name = "unicode-ident"
2559
- version = "1.0.14"
2848
+ version = "1.0.18"
2560
2849
  source = "registry+https://github.com/rust-lang/crates.io-index"
2561
- checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
2850
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
2562
2851
 
2563
2852
  [[package]]
2564
2853
  name = "unicode-width"
@@ -2626,18 +2915,29 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2626
2915
 
2627
2916
  [[package]]
2628
2917
  name = "uuid"
2629
- version = "1.11.0"
2918
+ version = "1.16.0"
2630
2919
  source = "registry+https://github.com/rust-lang/crates.io-index"
2631
- checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
2920
+ checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
2632
2921
  dependencies = [
2633
- "getrandom",
2922
+ "getrandom 0.3.2",
2923
+ ]
2924
+
2925
+ [[package]]
2926
+ name = "uuid-simd"
2927
+ version = "0.8.0"
2928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2929
+ checksum = "23b082222b4f6619906941c17eb2297fff4c2fb96cb60164170522942a200bd8"
2930
+ dependencies = [
2931
+ "outref",
2932
+ "uuid",
2933
+ "vsimd",
2634
2934
  ]
2635
2935
 
2636
2936
  [[package]]
2637
2937
  name = "valuable"
2638
- version = "0.1.0"
2938
+ version = "0.1.1"
2639
2939
  source = "registry+https://github.com/rust-lang/crates.io-index"
2640
- checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
2940
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2641
2941
 
2642
2942
  [[package]]
2643
2943
  name = "version_check"
@@ -2645,6 +2945,12 @@ version = "0.9.5"
2645
2945
  source = "registry+https://github.com/rust-lang/crates.io-index"
2646
2946
  checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2647
2947
 
2948
+ [[package]]
2949
+ name = "vsimd"
2950
+ version = "0.8.0"
2951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2952
+ checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
2953
+
2648
2954
  [[package]]
2649
2955
  name = "vt100"
2650
2956
  version = "0.15.2"
@@ -2680,9 +2986,9 @@ dependencies = [
2680
2986
 
2681
2987
  [[package]]
2682
2988
  name = "wait-timeout"
2683
- version = "0.2.0"
2989
+ version = "0.2.1"
2684
2990
  source = "registry+https://github.com/rust-lang/crates.io-index"
2685
- checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
2991
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
2686
2992
  dependencies = [
2687
2993
  "libc",
2688
2994
  ]
@@ -2712,6 +3018,15 @@ version = "0.11.0+wasi-snapshot-preview1"
2712
3018
  source = "registry+https://github.com/rust-lang/crates.io-index"
2713
3019
  checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2714
3020
 
3021
+ [[package]]
3022
+ name = "wasi"
3023
+ version = "0.14.2+wasi-0.2.4"
3024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3025
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
3026
+ dependencies = [
3027
+ "wit-bindgen-rt",
3028
+ ]
3029
+
2715
3030
  [[package]]
2716
3031
  name = "wasm-bindgen"
2717
3032
  version = "0.2.100"
@@ -2734,18 +3049,19 @@ dependencies = [
2734
3049
  "log",
2735
3050
  "proc-macro2",
2736
3051
  "quote",
2737
- "syn 2.0.90",
3052
+ "syn 2.0.101",
2738
3053
  "wasm-bindgen-shared",
2739
3054
  ]
2740
3055
 
2741
3056
  [[package]]
2742
3057
  name = "wasm-bindgen-futures"
2743
- version = "0.4.45"
3058
+ version = "0.4.50"
2744
3059
  source = "registry+https://github.com/rust-lang/crates.io-index"
2745
- checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b"
3060
+ checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
2746
3061
  dependencies = [
2747
3062
  "cfg-if",
2748
3063
  "js-sys",
3064
+ "once_cell",
2749
3065
  "wasm-bindgen",
2750
3066
  "web-sys",
2751
3067
  ]
@@ -2768,7 +3084,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
2768
3084
  dependencies = [
2769
3085
  "proc-macro2",
2770
3086
  "quote",
2771
- "syn 2.0.90",
3087
+ "syn 2.0.101",
2772
3088
  "wasm-bindgen-backend",
2773
3089
  "wasm-bindgen-shared",
2774
3090
  ]
@@ -2784,9 +3100,9 @@ dependencies = [
2784
3100
 
2785
3101
  [[package]]
2786
3102
  name = "web-sys"
2787
- version = "0.3.72"
3103
+ version = "0.3.77"
2788
3104
  source = "registry+https://github.com/rust-lang/crates.io-index"
2789
- checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112"
3105
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
2790
3106
  dependencies = [
2791
3107
  "js-sys",
2792
3108
  "wasm-bindgen",
@@ -2804,9 +3120,9 @@ dependencies = [
2804
3120
 
2805
3121
  [[package]]
2806
3122
  name = "webpki-roots"
2807
- version = "0.26.6"
3123
+ version = "0.26.9"
2808
3124
  source = "registry+https://github.com/rust-lang/crates.io-index"
2809
- checksum = "841c67bff177718f1d4dfefde8d8f0e78f9b6589319ba88312f567fc5841a958"
3125
+ checksum = "29aad86cec885cafd03e8305fd727c418e970a521322c91688414d5b8efba16b"
2810
3126
  dependencies = [
2811
3127
  "rustls-pki-types",
2812
3128
  ]
@@ -2844,99 +3160,121 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2844
3160
 
2845
3161
  [[package]]
2846
3162
  name = "windows"
2847
- version = "0.58.0"
3163
+ version = "0.61.1"
2848
3164
  source = "registry+https://github.com/rust-lang/crates.io-index"
2849
- checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
3165
+ checksum = "c5ee8f3d025738cb02bad7868bbb5f8a6327501e870bf51f1b455b0a2454a419"
3166
+ dependencies = [
3167
+ "windows-collections",
3168
+ "windows-core",
3169
+ "windows-future",
3170
+ "windows-link",
3171
+ "windows-numerics",
3172
+ ]
3173
+
3174
+ [[package]]
3175
+ name = "windows-collections"
3176
+ version = "0.2.0"
3177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3178
+ checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
2850
3179
  dependencies = [
2851
3180
  "windows-core",
2852
- "windows-targets 0.52.6",
2853
3181
  ]
2854
3182
 
2855
3183
  [[package]]
2856
3184
  name = "windows-core"
2857
- version = "0.58.0"
3185
+ version = "0.61.0"
2858
3186
  source = "registry+https://github.com/rust-lang/crates.io-index"
2859
- checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
3187
+ checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
2860
3188
  dependencies = [
2861
3189
  "windows-implement",
2862
3190
  "windows-interface",
2863
- "windows-result 0.2.0",
2864
- "windows-strings 0.1.0",
2865
- "windows-targets 0.52.6",
3191
+ "windows-link",
3192
+ "windows-result",
3193
+ "windows-strings 0.4.0",
3194
+ ]
3195
+
3196
+ [[package]]
3197
+ name = "windows-future"
3198
+ version = "0.2.0"
3199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3200
+ checksum = "7a1d6bbefcb7b60acd19828e1bc965da6fcf18a7e39490c5f8be71e54a19ba32"
3201
+ dependencies = [
3202
+ "windows-core",
3203
+ "windows-link",
2866
3204
  ]
2867
3205
 
2868
3206
  [[package]]
2869
3207
  name = "windows-implement"
2870
- version = "0.58.0"
3208
+ version = "0.60.0"
2871
3209
  source = "registry+https://github.com/rust-lang/crates.io-index"
2872
- checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
3210
+ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
2873
3211
  dependencies = [
2874
3212
  "proc-macro2",
2875
3213
  "quote",
2876
- "syn 2.0.90",
3214
+ "syn 2.0.101",
2877
3215
  ]
2878
3216
 
2879
3217
  [[package]]
2880
3218
  name = "windows-interface"
2881
- version = "0.58.0"
3219
+ version = "0.59.1"
2882
3220
  source = "registry+https://github.com/rust-lang/crates.io-index"
2883
- checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
3221
+ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
2884
3222
  dependencies = [
2885
3223
  "proc-macro2",
2886
3224
  "quote",
2887
- "syn 2.0.90",
3225
+ "syn 2.0.101",
2888
3226
  ]
2889
3227
 
2890
3228
  [[package]]
2891
3229
  name = "windows-link"
2892
- version = "0.1.0"
3230
+ version = "0.1.1"
2893
3231
  source = "registry+https://github.com/rust-lang/crates.io-index"
2894
- checksum = "6dccfd733ce2b1753b03b6d3c65edf020262ea35e20ccdf3e288043e6dd620e3"
3232
+ checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
2895
3233
 
2896
3234
  [[package]]
2897
- name = "windows-registry"
2898
- version = "0.4.0"
3235
+ name = "windows-numerics"
3236
+ version = "0.2.0"
2899
3237
  source = "registry+https://github.com/rust-lang/crates.io-index"
2900
- checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
3238
+ checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
2901
3239
  dependencies = [
2902
- "windows-result 0.3.1",
2903
- "windows-strings 0.3.1",
2904
- "windows-targets 0.53.0",
3240
+ "windows-core",
3241
+ "windows-link",
2905
3242
  ]
2906
3243
 
2907
3244
  [[package]]
2908
- name = "windows-result"
2909
- version = "0.2.0"
3245
+ name = "windows-registry"
3246
+ version = "0.4.0"
2910
3247
  source = "registry+https://github.com/rust-lang/crates.io-index"
2911
- checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
3248
+ checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
2912
3249
  dependencies = [
2913
- "windows-targets 0.52.6",
3250
+ "windows-result",
3251
+ "windows-strings 0.3.1",
3252
+ "windows-targets 0.53.0",
2914
3253
  ]
2915
3254
 
2916
3255
  [[package]]
2917
3256
  name = "windows-result"
2918
- version = "0.3.1"
3257
+ version = "0.3.2"
2919
3258
  source = "registry+https://github.com/rust-lang/crates.io-index"
2920
- checksum = "06374efe858fab7e4f881500e6e86ec8bc28f9462c47e5a9941a0142ad86b189"
3259
+ checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
2921
3260
  dependencies = [
2922
3261
  "windows-link",
2923
3262
  ]
2924
3263
 
2925
3264
  [[package]]
2926
3265
  name = "windows-strings"
2927
- version = "0.1.0"
3266
+ version = "0.3.1"
2928
3267
  source = "registry+https://github.com/rust-lang/crates.io-index"
2929
- checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
3268
+ checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
2930
3269
  dependencies = [
2931
- "windows-result 0.2.0",
2932
- "windows-targets 0.52.6",
3270
+ "windows-link",
2933
3271
  ]
2934
3272
 
2935
3273
  [[package]]
2936
3274
  name = "windows-strings"
2937
- version = "0.3.1"
3275
+ version = "0.4.0"
2938
3276
  source = "registry+https://github.com/rust-lang/crates.io-index"
2939
- checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
3277
+ checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
2940
3278
  dependencies = [
2941
3279
  "windows-link",
2942
3280
  ]
@@ -3087,6 +3425,15 @@ version = "0.53.0"
3087
3425
  source = "registry+https://github.com/rust-lang/crates.io-index"
3088
3426
  checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
3089
3427
 
3428
+ [[package]]
3429
+ name = "wit-bindgen-rt"
3430
+ version = "0.39.0"
3431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3432
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
3433
+ dependencies = [
3434
+ "bitflags",
3435
+ ]
3436
+
3090
3437
  [[package]]
3091
3438
  name = "write16"
3092
3439
  version = "1.0.0"
@@ -3101,27 +3448,26 @@ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
3101
3448
 
3102
3449
  [[package]]
3103
3450
  name = "xattr"
3104
- version = "1.3.1"
3451
+ version = "1.5.0"
3105
3452
  source = "registry+https://github.com/rust-lang/crates.io-index"
3106
- checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f"
3453
+ checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
3107
3454
  dependencies = [
3108
3455
  "libc",
3109
- "linux-raw-sys",
3110
3456
  "rustix",
3111
3457
  ]
3112
3458
 
3113
3459
  [[package]]
3114
3460
  name = "xxhash-rust"
3115
- version = "0.8.12"
3461
+ version = "0.8.15"
3116
3462
  source = "registry+https://github.com/rust-lang/crates.io-index"
3117
- checksum = "6a5cbf750400958819fb6178eaa83bee5cd9c29a26a40cc241df8c70fdd46984"
3463
+ checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
3118
3464
 
3119
3465
  [[package]]
3120
3466
  name = "yamlpath"
3121
- version = "0.16.0"
3122
- source = "registry+https://github.com/rust-lang/crates.io-index"
3123
- checksum = "87c585ad15cb2a723978a39719af264133486ee68bd980e214ff43402e7b674a"
3467
+ version = "0.18.0"
3124
3468
  dependencies = [
3469
+ "serde",
3470
+ "serde_yaml",
3125
3471
  "thiserror 2.0.12",
3126
3472
  "tree-sitter",
3127
3473
  "tree-sitter-yaml",
@@ -3153,7 +3499,7 @@ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
3153
3499
  dependencies = [
3154
3500
  "proc-macro2",
3155
3501
  "quote",
3156
- "syn 2.0.90",
3502
+ "syn 2.0.101",
3157
3503
  "synstructure",
3158
3504
  ]
3159
3505
 
@@ -3163,8 +3509,16 @@ version = "0.7.35"
3163
3509
  source = "registry+https://github.com/rust-lang/crates.io-index"
3164
3510
  checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
3165
3511
  dependencies = [
3166
- "byteorder",
3167
- "zerocopy-derive",
3512
+ "zerocopy-derive 0.7.35",
3513
+ ]
3514
+
3515
+ [[package]]
3516
+ name = "zerocopy"
3517
+ version = "0.8.25"
3518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3519
+ checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
3520
+ dependencies = [
3521
+ "zerocopy-derive 0.8.25",
3168
3522
  ]
3169
3523
 
3170
3524
  [[package]]
@@ -3175,27 +3529,38 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
3175
3529
  dependencies = [
3176
3530
  "proc-macro2",
3177
3531
  "quote",
3178
- "syn 2.0.90",
3532
+ "syn 2.0.101",
3533
+ ]
3534
+
3535
+ [[package]]
3536
+ name = "zerocopy-derive"
3537
+ version = "0.8.25"
3538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3539
+ checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
3540
+ dependencies = [
3541
+ "proc-macro2",
3542
+ "quote",
3543
+ "syn 2.0.101",
3179
3544
  ]
3180
3545
 
3181
3546
  [[package]]
3182
3547
  name = "zerofrom"
3183
- version = "0.1.5"
3548
+ version = "0.1.6"
3184
3549
  source = "registry+https://github.com/rust-lang/crates.io-index"
3185
- checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
3550
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3186
3551
  dependencies = [
3187
3552
  "zerofrom-derive",
3188
3553
  ]
3189
3554
 
3190
3555
  [[package]]
3191
3556
  name = "zerofrom-derive"
3192
- version = "0.1.5"
3557
+ version = "0.1.6"
3193
3558
  source = "registry+https://github.com/rust-lang/crates.io-index"
3194
- checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
3559
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3195
3560
  dependencies = [
3196
3561
  "proc-macro2",
3197
3562
  "quote",
3198
- "syn 2.0.90",
3563
+ "syn 2.0.101",
3199
3564
  "synstructure",
3200
3565
  ]
3201
3566
 
@@ -3224,12 +3589,12 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
3224
3589
  dependencies = [
3225
3590
  "proc-macro2",
3226
3591
  "quote",
3227
- "syn 2.0.90",
3592
+ "syn 2.0.101",
3228
3593
  ]
3229
3594
 
3230
3595
  [[package]]
3231
3596
  name = "zizmor"
3232
- version = "1.6.0"
3597
+ version = "1.8.0-rc1"
3233
3598
  dependencies = [
3234
3599
  "annotate-snippets",
3235
3600
  "anstream",
@@ -3238,8 +3603,10 @@ dependencies = [
3238
3603
  "camino",
3239
3604
  "clap",
3240
3605
  "clap-verbosity-flag",
3606
+ "clap_complete",
3241
3607
  "etcetera",
3242
3608
  "flate2",
3609
+ "github-actions-expressions",
3243
3610
  "github-actions-models",
3244
3611
  "http-cache-reqwest",
3245
3612
  "human-panic",
@@ -3248,11 +3615,9 @@ dependencies = [
3248
3615
  "indicatif",
3249
3616
  "insta",
3250
3617
  "itertools",
3618
+ "jsonschema",
3251
3619
  "line-index",
3252
3620
  "owo-colors",
3253
- "pest",
3254
- "pest_derive",
3255
- "pretty_assertions",
3256
3621
  "regex",
3257
3622
  "reqwest",
3258
3623
  "reqwest-middleware",