zizmor 1.15.2__tar.gz → 1.16.1__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.
- {zizmor-1.15.2 → zizmor-1.16.1}/Cargo.lock +670 -568
- {zizmor-1.15.2 → zizmor-1.16.1}/Cargo.toml +12 -8
- {zizmor-1.15.2 → zizmor-1.16.1}/PKG-INFO +6 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/Cargo.toml +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/src/dependabot/v2.rs +113 -10
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/src/workflow/mod.rs +6 -3
- zizmor-1.16.1/crates/github-actions-models/tests/sample-dependabot/homebrew-core.yml +20 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/test_dependabot_v2.rs +3 -3
- zizmor-1.16.1/crates/tree-sitter-iter/Cargo.toml +19 -0
- zizmor-1.16.1/crates/tree-sitter-iter/README.md +49 -0
- zizmor-1.16.1/crates/tree-sitter-iter/src/lib.rs +102 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/yamlpatch/Cargo.toml +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/yamlpath/Cargo.toml +3 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/yamlpath/src/lib.rs +275 -39
- zizmor-1.16.1/crates/yamlpath/tests/testcases/anchors-basic.yml +22 -0
- zizmor-1.16.1/crates/yamlpath/tests/testcases/anchors-list.yml +70 -0
- zizmor-1.16.1/crates/yamlpath/tests/testcases/anchors-nested.yml +23 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/yamlpath/tests/testcases/interceding-comment.yml +15 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/Cargo.toml +4 -2
- zizmor-1.16.1/crates/zizmor/src/audit/concurrency_limits.rs +89 -0
- zizmor-1.16.1/crates/zizmor/src/audit/dependabot_cooldown.rs +394 -0
- zizmor-1.16.1/crates/zizmor/src/audit/dependabot_execution.rs +259 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/impostor_commit.rs +19 -34
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/known_vulnerable_actions.rs +11 -11
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/mod.rs +1 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/ref_confusion.rs +2 -2
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/ref_version_mismatch.rs +8 -8
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/stale_action_refs.rs +3 -3
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/config.rs +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/data/dependabot-2.0.json +1 -0
- zizmor-1.16.1/crates/zizmor/src/github/lineref.rs +203 -0
- zizmor-1.16.1/crates/zizmor/src/github/pktline.rs +331 -0
- zizmor-1.15.2/crates/zizmor/src/github_api.rs → zizmor-1.16.1/crates/zizmor/src/github.rs +328 -139
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/lsp.rs +5 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/main.rs +76 -52
- zizmor-1.16.1/crates/zizmor/src/models/version.rs +190 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/models.rs +1 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/output/fix.rs +20 -3
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/registry/input.rs +14 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/registry.rs +26 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/state.rs +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/utils.rs +22 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/acceptance.rs +30 -0
- zizmor-1.16.1/crates/zizmor/tests/integration/e2e/anchors.rs +47 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/e2e/snapshots/integration__e2e__json_v1__json_v1.snap +9 -9
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/e2e.rs +30 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshot.rs +91 -4
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__config__disablement.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__config__discovers_config_in_dotgithub.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__config__discovers_config_in_dotgithub_from_file_input.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__config__discovers_config_in_root.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__config__discovers_config_in_root_from_child_dir.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__config__discovers_config_in_root_from_file_input.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__config__ignores_config_in_dotgithub.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__config__ignores_config_in_dotgithub_from_file_input.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__config__ignores_config_in_root.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__config__ignores_config_in_root_from_child_dir.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__config__ignores_config_in_root_from_file_input.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__gha_hazmat.snap +1 -6
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_1065.snap +1 -6
- zizmor-1.16.1/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_1207.snap +7 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_569.snap +2 -7
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_726.snap +1 -6
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__menagerie-2.snap +1 -6
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__menagerie.snap +1 -6
- zizmor-1.16.1/crates/zizmor/tests/integration/snapshots/integration__e2e__pr_960_backstop.snap +7 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__anonymous_definition.snap +8 -7
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__artipacked-2.snap +3 -2
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__artipacked-3.snap +7 -6
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__artipacked-4.snap +6 -6
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__artipacked.snap +3 -2
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__bot_conditions.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-10.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-11.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-12.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-13.snap +2 -1
- zizmor-1.16.1/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-14.snap +6 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-15.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-16.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-17.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-2.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-3.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-4.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-5.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-6.snap +2 -2
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-7.snap +2 -2
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-8.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-9.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-10.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-11.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-12.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-2.snap +1 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-3.snap +11 -10
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-4.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-5.snap +2 -1
- zizmor-1.16.1/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-6.snap +6 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-7.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-8.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-9.snap +3 -2
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions.snap +1 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-2.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-3.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-4.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-5.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-6.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__github_env-2.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__github_env-3.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__github_output.snap +2 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__insecure_commands-2.snap +4 -3
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__insecure_commands-4.snap +5 -5
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__insecure_commands.snap +6 -5
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__obfuscation-2.snap +3 -2
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__obfuscation-3.snap +1 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__obfuscation.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__overprovisioned_secrets.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__ref_confusion-2.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__ref_confusion.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__ref_version_mismatch.snap +2 -2
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__secrets_inherit.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-2.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-3.snap +2 -2
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-4.snap +3 -3
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-5.snap +6 -6
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-6.snap +8 -8
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-7.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-8.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted.snap +3 -2
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__stale_action_refs.snap +2 -2
- zizmor-1.15.2/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-7.snap → zizmor-1.16.1/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-10.snap +2 -2
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-11.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-12.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-14.snap +19 -18
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-15.snap +8 -7
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-2.snap +6 -6
- zizmor-1.15.2/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-9.snap → zizmor-1.16.1/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-3.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-4.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-5.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-6.snap +2 -1
- zizmor-1.15.2/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-10.snap → zizmor-1.16.1/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-7.snap +3 -2
- zizmor-1.15.2/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-3.snap → zizmor-1.16.1/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-9.snap +3 -2
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection.snap +4 -3
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__undocumented_permissions-2.snap +1 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__undocumented_permissions-3.snap +1 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__undocumented_permissions-4.snap +1 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__undocumented_permissions-5.snap +1 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__undocumented_permissions-6.snap +1 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__undocumented_permissions-7.snap +6 -5
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__undocumented_permissions.snap +11 -10
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-composite-config-2.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-composite-config.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-default-config.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-empty-config.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-hash-pin-everything-config.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-ref-pin-everything-config.snap +2 -2
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_images.snap +13 -12
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-2.snap +5 -4
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-3.snap +9 -8
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-4.snap +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-5.snap +10 -9
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses.snap +5 -4
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unredacted_secrets.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unsound_condition.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unsound_contains.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__use_trusted_publishing-3.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__use_trusted_publishing-4.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__use_trusted_publishing-5.snap +1 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__use_trusted_publishing.snap +1 -1
- zizmor-1.16.1/crates/zizmor/tests/integration/test-data/anchors/basic.yml +15 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/anonymous-definition.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/artipacked/issue-447-repro.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/artipacked.yml +4 -0
- zizmor-1.16.1/crates/zizmor/tests/integration/test-data/concurrency-limits/cancel-expr.yml +15 -0
- zizmor-1.16.1/crates/zizmor/tests/integration/test-data/concurrency-limits/cancel-false.yml +15 -0
- zizmor-1.16.1/crates/zizmor/tests/integration/test-data/concurrency-limits/cancel-true.yml +15 -0
- zizmor-1.16.1/crates/zizmor/tests/integration/test-data/concurrency-limits/missing.yml +11 -0
- zizmor-1.16.1/crates/zizmor/tests/integration/test-data/concurrency-limits/no-cancel.yml +13 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/excessive-permissions/issue-336-repro.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-default-perms.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/insecure-commands/issue-839-repro.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/insecure-commands.yml +4 -0
- zizmor-1.16.1/crates/zizmor/tests/integration/test-data/issue-1286.yml +19 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/neutral.yml +6 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/obfuscation/computed-indices.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/obfuscation/issue-1177-repro.yml +4 -0
- zizmor-1.16.1/crates/zizmor/tests/integration/test-data/ref-version-mismatch/nested-annotated-tags.yml +27 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/ref-version-mismatch.yml +2 -1
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/self-hosted/issue-283-repro.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/self-hosted/self-hosted-matrix-dimension.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/self-hosted/self-hosted-matrix-exclusion.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/self-hosted/self-hosted-matrix-inclusion.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/self-hosted/self-hosted-runner-group.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/self-hosted/self-hosted-runner-label.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/self-hosted.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/stale-action-refs.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/template-injection/issue-988-repro.yml +3 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/template-injection/multiline-expression.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/template-injection/template-injection-dynamic-matrix.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/template-injection/template-injection-static-matrix.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/undocumented-permissions/contents-read-only.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/undocumented-permissions/contents-read-with-other.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/undocumented-permissions/documented.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/undocumented-permissions/empty-permissions.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/undocumented-permissions/partially-documented.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/undocumented-permissions.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/unpinned-images.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/unpinned-uses/action.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/unpinned-uses/issue-433-repro.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/unpinned-uses/issue-659-repro.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/unpinned-uses.yml +4 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/pyproject.toml +1 -1
- zizmor-1.15.2/crates/zizmor/src/audit/dependabot_cooldown.rs +0 -87
- zizmor-1.15.2/crates/zizmor/src/audit/dependabot_execution.rs +0 -52
- zizmor-1.15.2/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_1207.snap +0 -12
- zizmor-1.15.2/crates/zizmor/tests/integration/snapshots/integration__e2e__pr_960_backstop.snap +0 -12
- zizmor-1.15.2/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-14.snap +0 -5
- zizmor-1.15.2/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-6.snap +0 -5
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-expressions/Cargo.toml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-expressions/README.md +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-expressions/src/call.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-expressions/src/context.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-expressions/src/expr.pest +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-expressions/src/identifier.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-expressions/src/lib.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-expressions/src/literal.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-expressions/src/op.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/LICENSE +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/README.md +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/src/action.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/src/common/expr.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/src/common.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/src/dependabot/mod.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/src/lib.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/src/workflow/event.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/src/workflow/job.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-actions/gh-action-pip-audit.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-actions/gh-action-pypi-publish.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-actions/gh-action-sigstore-python.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-actions/no-input-output-descriptions.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-actions/setup-python.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-dependabot/v2/cooldown.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-dependabot/v2/cron-missing-cronjob.invalid.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-dependabot/v2/cronjob-on-daily.invalid.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-dependabot/v2/day-on-daily.invalid.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-dependabot/v2/devcontainers.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-dependabot/v2/grafana.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-dependabot/v2/pip-audit.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-dependabot/v2/sigstore-python.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-dependabot/v2/weekly-with-day.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/adafruit-circuitpython-run-tests.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/false-condition.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/gh-action-sigstore-python-selftest.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/git-annex-built-windows.yaml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/guacsec-guac-ci.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/homebrew-core-automerge-triggers.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/homebrew-core-dispatch-rebottle.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/intel-llvm-sycl-linux-run-tests.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/issue-35.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/jazzband-tablib-docs-lint.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/letsencrypt-boulder-boulder-ci.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/mhils-workflows-python-deploy.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/openbao-openbao-test-go.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/pip-api-test.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/pip-audit-ci.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/pip-audit-scorecards.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/pwn-requests.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/pyca-cryptography-ci.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/pypi-attestations-release.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/reusable-workflow-unpinned.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/rnpgp-rnp-centos-and-fedora.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/runs-on-expr.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/runs-on-group-only.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/scalar-trigger-type.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/vil02-puzzle_generator-check_examples.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/zizmor-issue-646.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/sample-workflows/zizmor-issue-650.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/test_action.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/github-actions-models/tests/test_workflow.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/subfeature/.gitignore +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/subfeature/Cargo.toml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/subfeature/LICENSE +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/subfeature/README.md +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/subfeature/src/lib.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/yamlpatch/LICENSE +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/yamlpatch/README.md +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/yamlpatch/src/lib.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/yamlpatch/tests/unit_tests.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/yamlpath/LICENSE +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/yamlpath/README.md +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/yamlpath/tests/integration_test.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/yamlpath/tests/testcases/basic.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/yamlpath/tests/testcases/comments.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/yamlpath/tests/testcases/directives.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/yamlpath/tests/testcases/exact-features.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/yamlpath/tests/testcases/flow.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/yamlpath/tests/testcases/key-only-features.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/yamlpath/tests/testcases/quoted-key.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/README.md +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/build.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/data/codeql-injection-sinks.json +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/data/context-capabilities.csv +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/anonymous_definition.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/artipacked.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/bot_conditions.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/cache_poisoning.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/dangerous_triggers.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/excessive_permissions.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/forbidden_uses.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/github_env.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/hardcoded_container_credentials.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/insecure_commands.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/obfuscation.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/overprovisioned_secrets.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/secrets_inherit.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/self_hosted_runner.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/template_injection.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/undocumented_permissions.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/unpinned_images.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/unpinned_uses.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/unredacted_secrets.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/unsound_condition.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/unsound_contains.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/audit/use_trusted_publishing.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/data/github-action.json +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/data/github-workflow.json +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/finding/location.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/finding.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/models/action.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/models/coordinate.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/models/dependabot.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/models/inputs.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/models/uses.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/models/workflow.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/output/github.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/output/json/mod.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/output/json/v1.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/output/mod.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/output/plain.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/src/output/sarif.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/common.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/config.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/e2e/collect.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/e2e/json_v1.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/main.rs +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__config__invalid_configs-2.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__config__invalid_configs-3.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__config__invalid_configs.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_config_file.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_input_not_strict-2.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_input_not_strict.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-10.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-2.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-3.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-4.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-5.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-6.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-7.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-8.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-9.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_1116_strict_collection_remote_input-2.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_1116_strict_collection_remote_input.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_612_repro.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__warn_on_min_confidence_unknown.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__e2e__warn_on_min_severity_unknown.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__artipacked-5.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cant_retrieve-2.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cant_retrieve.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cant_retrieve_no_gh_token.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cant_retrieve_offline.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__github_env.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__insecure_commands-3.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-13.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-8.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-10.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-11.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-12.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-6.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-7.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-8.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-9.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/snapshots/integration__snapshot__use_trusted_publishing-2.snap +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/artipacked/demo-action/action.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/bot-conditions.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-disabled-by-default.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-enabled-by-default.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-not-configurable.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-opt-in-boolean-toggle.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-opt-in-boolish-toggle.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-opt-in-expression.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-opt-in-multi-value-toggle.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-opt-out.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/cache-poisoning/issue-1081-repro.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/cache-poisoning/issue-1152-repro.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/cache-poisoning/issue-343-repro.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/cache-poisoning/issue-378-repro.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/cache-poisoning/issue-642-repro.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/cache-poisoning/no-cache-aware-steps.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/cache-poisoning/publisher-step.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/cache-poisoning/workflow-release-branch-trigger.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/cache-poisoning/workflow-tag-trigger.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/cache-poisoning.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/config-scenarios/config-in-dotgithub/.github/workflows/hackme.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/config-scenarios/config-in-dotgithub/.github/zizmor.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/config-scenarios/config-in-root/.github/workflows/hackme.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/config-scenarios/config-in-root/zizmor.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/config-scenarios/disablement/.github/workflows/hackme.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/config-scenarios/disablement/zizmor.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/config-scenarios/zizmor.invalid-schema-1.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/config-scenarios/zizmor.invalid-schema-2.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/config-scenarios/zizmor.invalid-schema-3.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/dependabot-cooldown/default-days-too-short/dependabot.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/dependabot-cooldown/missing/dependabot.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/dependabot-cooldown/no-default-days/dependabot.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/dependabot-execution/basic/dependabot.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/e2e-menagerie/.github/dummy-action-2/action.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/e2e-menagerie/.github/workflows/another-dummy.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/e2e-menagerie/.github/workflows/dummy.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/e2e-menagerie/.github/workflows/ignored.yaml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/e2e-menagerie/.gitignore +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/e2e-menagerie/README.md +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/e2e-menagerie/dummy-action-1/action.yaml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/excessive-permissions/issue-472-repro.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/excessive-permissions/jobs-broaden-permissions.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/excessive-permissions/reusable-workflow-call.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/excessive-permissions/reusable-workflow-other-triggers.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-default-perms-all-jobs-explicit.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-empty-perms.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-read-all.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-write-all.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-write-explicit.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/excessive-permissions.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/allow-all.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/allow-some-refs.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/allow-some.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/deny-all.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/deny-some-refs.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/deny-some.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/forbidden-uses/forbidden-uses-menagerie.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/github-env/action.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/github-env/github-path.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/github-env/issue-397-repro.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/github_env.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/hardcoded-credentials.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/inlined-ignores.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/insecure-commands/action.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/invalid/bad-yaml-1.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/invalid/bad-yaml-2.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/invalid/blank.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/invalid/comment-only.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/invalid/empty-action/action.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/invalid/empty.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/invalid/invalid-action-1/action.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/invalid/invalid-action-2/action.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/invalid/invalid-workflow-2.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/invalid/invalid-workflow.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/issue-1065.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/issue-612-repro/action.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/obfuscation.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/overprovisioned-secrets.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/pr-960-backstop/action.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/ref-confusion/issue-518-repro.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/ref-confusion.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/secrets-inherit.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/several-vulnerabilities.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/template-injection/addnab-docker-run-action.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/template-injection/codeql-sinks.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/template-injection/dataflow.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/template-injection/false-positive-menagerie.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/template-injection/input-caps.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/template-injection/issue-22-repro.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/template-injection/issue-339-repro.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/template-injection/issue-418-repro.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/template-injection/issue-749-repro.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/template-injection/issue-883-repro/action.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/template-injection/patterns.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/template-injection/pr-317-repro.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/template-injection/pr-425-backstop/action.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/template-injection/pwsh-script.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/template-injection/static-env.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/template-injection.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/composite-2.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/composite.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/empty.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/hash-pin-everything.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-1.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-2.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-3.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-4.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-5.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-6.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-wrong-policy-object.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/ref-pin-everything.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/unpinned-uses/menagerie-of-uses.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/unredacted-secrets.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/unsound-condition.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/unsound-contains.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/use-trusted-publishing/cargo-publish.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/use-trusted-publishing/demo-action/action.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/use-trusted-publishing/issue-1191-repro.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/use-trusted-publishing/npm-publish.yml +0 -0
- {zizmor-1.15.2 → zizmor-1.16.1}/crates/zizmor/tests/integration/test-data/use-trusted-publishing.yml +0 -0
|
@@ -14,31 +14,31 @@ dependencies = [
|
|
|
14
14
|
|
|
15
15
|
[[package]]
|
|
16
16
|
name = "addr2line"
|
|
17
|
-
version = "0.
|
|
17
|
+
version = "0.25.1"
|
|
18
18
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
19
|
-
checksum = "
|
|
19
|
+
checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
|
|
20
20
|
dependencies = [
|
|
21
21
|
"gimli",
|
|
22
22
|
]
|
|
23
23
|
|
|
24
24
|
[[package]]
|
|
25
25
|
name = "adler2"
|
|
26
|
-
version = "2.0.
|
|
26
|
+
version = "2.0.1"
|
|
27
27
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
28
|
-
checksum = "
|
|
28
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
29
29
|
|
|
30
30
|
[[package]]
|
|
31
31
|
name = "ahash"
|
|
32
|
-
version = "0.8.
|
|
32
|
+
version = "0.8.12"
|
|
33
33
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
34
|
-
checksum = "
|
|
34
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
35
35
|
dependencies = [
|
|
36
36
|
"cfg-if",
|
|
37
|
-
"getrandom 0.
|
|
37
|
+
"getrandom 0.3.4",
|
|
38
38
|
"once_cell",
|
|
39
39
|
"serde",
|
|
40
40
|
"version_check",
|
|
41
|
-
"zerocopy
|
|
41
|
+
"zerocopy",
|
|
42
42
|
]
|
|
43
43
|
|
|
44
44
|
[[package]]
|
|
@@ -52,12 +52,12 @@ dependencies = [
|
|
|
52
52
|
|
|
53
53
|
[[package]]
|
|
54
54
|
name = "annotate-snippets"
|
|
55
|
-
version = "0.12.
|
|
55
|
+
version = "0.12.6"
|
|
56
56
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
-
checksum = "
|
|
57
|
+
checksum = "b070a85822966c5bf2bddb457b444ba85c6975fc66c582fe334f23a5cddc2124"
|
|
58
58
|
dependencies = [
|
|
59
59
|
"anstyle",
|
|
60
|
-
"unicode-width 0.2.
|
|
60
|
+
"unicode-width 0.2.2",
|
|
61
61
|
]
|
|
62
62
|
|
|
63
63
|
[[package]]
|
|
@@ -77,37 +77,37 @@ dependencies = [
|
|
|
77
77
|
|
|
78
78
|
[[package]]
|
|
79
79
|
name = "anstyle"
|
|
80
|
-
version = "1.0.
|
|
80
|
+
version = "1.0.13"
|
|
81
81
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
-
checksum = "
|
|
82
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
83
83
|
|
|
84
84
|
[[package]]
|
|
85
85
|
name = "anstyle-parse"
|
|
86
|
-
version = "0.2.
|
|
86
|
+
version = "0.2.7"
|
|
87
87
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
|
-
checksum = "
|
|
88
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
89
89
|
dependencies = [
|
|
90
90
|
"utf8parse",
|
|
91
91
|
]
|
|
92
92
|
|
|
93
93
|
[[package]]
|
|
94
94
|
name = "anstyle-query"
|
|
95
|
-
version = "1.1.
|
|
95
|
+
version = "1.1.4"
|
|
96
96
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
-
checksum = "
|
|
97
|
+
checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
|
|
98
98
|
dependencies = [
|
|
99
|
-
"windows-sys 0.
|
|
99
|
+
"windows-sys 0.60.2",
|
|
100
100
|
]
|
|
101
101
|
|
|
102
102
|
[[package]]
|
|
103
103
|
name = "anstyle-wincon"
|
|
104
|
-
version = "3.0.
|
|
104
|
+
version = "3.0.10"
|
|
105
105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
-
checksum = "
|
|
106
|
+
checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
|
|
107
107
|
dependencies = [
|
|
108
108
|
"anstyle",
|
|
109
|
-
"
|
|
110
|
-
"windows-sys 0.
|
|
109
|
+
"once_cell_polyfill",
|
|
110
|
+
"windows-sys 0.60.2",
|
|
111
111
|
]
|
|
112
112
|
|
|
113
113
|
[[package]]
|
|
@@ -138,28 +138,45 @@ dependencies = [
|
|
|
138
138
|
"wait-timeout",
|
|
139
139
|
]
|
|
140
140
|
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "async-lock"
|
|
143
|
+
version = "3.4.1"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "5fd03604047cee9b6ce9de9f70c6cd540a0520c813cbd49bae61f33ab80ed1dc"
|
|
146
|
+
dependencies = [
|
|
147
|
+
"event-listener",
|
|
148
|
+
"event-listener-strategy",
|
|
149
|
+
"pin-project-lite",
|
|
150
|
+
]
|
|
151
|
+
|
|
141
152
|
[[package]]
|
|
142
153
|
name = "async-trait"
|
|
143
|
-
version = "0.1.
|
|
154
|
+
version = "0.1.89"
|
|
144
155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
-
checksum = "
|
|
156
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
146
157
|
dependencies = [
|
|
147
158
|
"proc-macro2",
|
|
148
159
|
"quote",
|
|
149
|
-
"syn 2.0.
|
|
160
|
+
"syn 2.0.108",
|
|
150
161
|
]
|
|
151
162
|
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "atomic-waker"
|
|
165
|
+
version = "1.1.2"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
168
|
+
|
|
152
169
|
[[package]]
|
|
153
170
|
name = "autocfg"
|
|
154
|
-
version = "1.
|
|
171
|
+
version = "1.5.0"
|
|
155
172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
-
checksum = "
|
|
173
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
157
174
|
|
|
158
175
|
[[package]]
|
|
159
176
|
name = "backtrace"
|
|
160
|
-
version = "0.3.
|
|
177
|
+
version = "0.3.76"
|
|
161
178
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
-
checksum = "
|
|
179
|
+
checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
|
|
163
180
|
dependencies = [
|
|
164
181
|
"addr2line",
|
|
165
182
|
"cfg-if",
|
|
@@ -167,7 +184,7 @@ dependencies = [
|
|
|
167
184
|
"miniz_oxide",
|
|
168
185
|
"object",
|
|
169
186
|
"rustc-demangle",
|
|
170
|
-
"windows-
|
|
187
|
+
"windows-link",
|
|
171
188
|
]
|
|
172
189
|
|
|
173
190
|
[[package]]
|
|
@@ -214,9 +231,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
214
231
|
|
|
215
232
|
[[package]]
|
|
216
233
|
name = "bitflags"
|
|
217
|
-
version = "2.
|
|
234
|
+
version = "2.10.0"
|
|
218
235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
-
checksum = "
|
|
236
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
220
237
|
|
|
221
238
|
[[package]]
|
|
222
239
|
name = "block-buffer"
|
|
@@ -246,15 +263,15 @@ dependencies = [
|
|
|
246
263
|
|
|
247
264
|
[[package]]
|
|
248
265
|
name = "bumpalo"
|
|
249
|
-
version = "3.
|
|
266
|
+
version = "3.19.0"
|
|
250
267
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
|
-
checksum = "
|
|
268
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
252
269
|
|
|
253
270
|
[[package]]
|
|
254
271
|
name = "bytecount"
|
|
255
|
-
version = "0.6.
|
|
272
|
+
version = "0.6.9"
|
|
256
273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
-
checksum = "
|
|
274
|
+
checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
|
|
258
275
|
|
|
259
276
|
[[package]]
|
|
260
277
|
name = "bytes"
|
|
@@ -300,18 +317,19 @@ dependencies = [
|
|
|
300
317
|
|
|
301
318
|
[[package]]
|
|
302
319
|
name = "cc"
|
|
303
|
-
version = "1.2.
|
|
320
|
+
version = "1.2.41"
|
|
304
321
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
-
checksum = "
|
|
322
|
+
checksum = "ac9fe6cdbb24b6ade63616c0a0688e45bb56732262c158df3c0c4bea4ca47cb7"
|
|
306
323
|
dependencies = [
|
|
324
|
+
"find-msvc-tools",
|
|
307
325
|
"shlex",
|
|
308
326
|
]
|
|
309
327
|
|
|
310
328
|
[[package]]
|
|
311
329
|
name = "cfg-if"
|
|
312
|
-
version = "1.0.
|
|
330
|
+
version = "1.0.4"
|
|
313
331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
-
checksum = "
|
|
332
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
315
333
|
|
|
316
334
|
[[package]]
|
|
317
335
|
name = "cfg_aliases"
|
|
@@ -321,9 +339,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
|
321
339
|
|
|
322
340
|
[[package]]
|
|
323
341
|
name = "clap"
|
|
324
|
-
version = "4.5.
|
|
342
|
+
version = "4.5.50"
|
|
325
343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
-
checksum = "
|
|
344
|
+
checksum = "0c2cfd7bf8a6017ddaa4e32ffe7403d547790db06bd171c1c53926faab501623"
|
|
327
345
|
dependencies = [
|
|
328
346
|
"clap_builder",
|
|
329
347
|
"clap_derive",
|
|
@@ -341,9 +359,9 @@ dependencies = [
|
|
|
341
359
|
|
|
342
360
|
[[package]]
|
|
343
361
|
name = "clap_builder"
|
|
344
|
-
version = "4.5.
|
|
362
|
+
version = "4.5.50"
|
|
345
363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
-
checksum = "
|
|
364
|
+
checksum = "0a4c05b9e80c5ccd3a7ef080ad7b6ba7d6fc00a985b8b157197075677c82c7a0"
|
|
347
365
|
dependencies = [
|
|
348
366
|
"anstream",
|
|
349
367
|
"anstyle",
|
|
@@ -353,18 +371,18 @@ dependencies = [
|
|
|
353
371
|
|
|
354
372
|
[[package]]
|
|
355
373
|
name = "clap_complete"
|
|
356
|
-
version = "4.5.
|
|
374
|
+
version = "4.5.59"
|
|
357
375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
-
checksum = "
|
|
376
|
+
checksum = "2348487adcd4631696ced64ccdb40d38ac4d31cae7f2eec8817fcea1b9d1c43c"
|
|
359
377
|
dependencies = [
|
|
360
378
|
"clap",
|
|
361
379
|
]
|
|
362
380
|
|
|
363
381
|
[[package]]
|
|
364
382
|
name = "clap_complete_nushell"
|
|
365
|
-
version = "4.5.
|
|
383
|
+
version = "4.5.9"
|
|
366
384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
-
checksum = "
|
|
385
|
+
checksum = "811159f339691baacdf7d534df2946b9d217014081099e23d31d887d99521e70"
|
|
368
386
|
dependencies = [
|
|
369
387
|
"clap",
|
|
370
388
|
"clap_complete",
|
|
@@ -372,27 +390,36 @@ dependencies = [
|
|
|
372
390
|
|
|
373
391
|
[[package]]
|
|
374
392
|
name = "clap_derive"
|
|
375
|
-
version = "4.5.
|
|
393
|
+
version = "4.5.49"
|
|
376
394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
-
checksum = "
|
|
395
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
378
396
|
dependencies = [
|
|
379
397
|
"heck",
|
|
380
398
|
"proc-macro2",
|
|
381
399
|
"quote",
|
|
382
|
-
"syn 2.0.
|
|
400
|
+
"syn 2.0.108",
|
|
383
401
|
]
|
|
384
402
|
|
|
385
403
|
[[package]]
|
|
386
404
|
name = "clap_lex"
|
|
387
|
-
version = "0.7.
|
|
405
|
+
version = "0.7.6"
|
|
388
406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
-
checksum = "
|
|
407
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
390
408
|
|
|
391
409
|
[[package]]
|
|
392
410
|
name = "colorchoice"
|
|
393
|
-
version = "1.0.
|
|
411
|
+
version = "1.0.4"
|
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "concurrent-queue"
|
|
417
|
+
version = "2.5.0"
|
|
394
418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
-
checksum = "
|
|
419
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"crossbeam-utils",
|
|
422
|
+
]
|
|
396
423
|
|
|
397
424
|
[[package]]
|
|
398
425
|
name = "console"
|
|
@@ -408,15 +435,15 @@ dependencies = [
|
|
|
408
435
|
|
|
409
436
|
[[package]]
|
|
410
437
|
name = "console"
|
|
411
|
-
version = "0.16.
|
|
438
|
+
version = "0.16.1"
|
|
412
439
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
-
checksum = "
|
|
440
|
+
checksum = "b430743a6eb14e9764d4260d4c0d8123087d504eeb9c48f2b2a5e810dd369df4"
|
|
414
441
|
dependencies = [
|
|
415
442
|
"encode_unicode",
|
|
416
443
|
"libc",
|
|
417
444
|
"once_cell",
|
|
418
|
-
"unicode-width 0.2.
|
|
419
|
-
"windows-sys 0.
|
|
445
|
+
"unicode-width 0.2.2",
|
|
446
|
+
"windows-sys 0.61.2",
|
|
420
447
|
]
|
|
421
448
|
|
|
422
449
|
[[package]]
|
|
@@ -430,13 +457,22 @@ dependencies = [
|
|
|
430
457
|
|
|
431
458
|
[[package]]
|
|
432
459
|
name = "crc32fast"
|
|
433
|
-
version = "1.
|
|
460
|
+
version = "1.5.0"
|
|
434
461
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
-
checksum = "
|
|
462
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
436
463
|
dependencies = [
|
|
437
464
|
"cfg-if",
|
|
438
465
|
]
|
|
439
466
|
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "crossbeam-channel"
|
|
469
|
+
version = "0.5.15"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
472
|
+
dependencies = [
|
|
473
|
+
"crossbeam-utils",
|
|
474
|
+
]
|
|
475
|
+
|
|
440
476
|
[[package]]
|
|
441
477
|
name = "crossbeam-deque"
|
|
442
478
|
version = "0.8.6"
|
|
@@ -474,21 +510,21 @@ dependencies = [
|
|
|
474
510
|
|
|
475
511
|
[[package]]
|
|
476
512
|
name = "csv"
|
|
477
|
-
version = "1.
|
|
513
|
+
version = "1.4.0"
|
|
478
514
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
-
checksum = "
|
|
515
|
+
checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
|
|
480
516
|
dependencies = [
|
|
481
517
|
"csv-core",
|
|
482
518
|
"itoa",
|
|
483
519
|
"ryu",
|
|
484
|
-
"
|
|
520
|
+
"serde_core",
|
|
485
521
|
]
|
|
486
522
|
|
|
487
523
|
[[package]]
|
|
488
524
|
name = "csv-core"
|
|
489
|
-
version = "0.1.
|
|
525
|
+
version = "0.1.13"
|
|
490
526
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
-
checksum = "
|
|
527
|
+
checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
|
|
492
528
|
dependencies = [
|
|
493
529
|
"memchr",
|
|
494
530
|
]
|
|
@@ -509,9 +545,9 @@ dependencies = [
|
|
|
509
545
|
|
|
510
546
|
[[package]]
|
|
511
547
|
name = "deranged"
|
|
512
|
-
version = "0.4
|
|
548
|
+
version = "0.5.4"
|
|
513
549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
-
checksum = "
|
|
550
|
+
checksum = "a41953f86f8a05768a6cda24def994fd2f424b04ec5c719cf89989779f199071"
|
|
515
551
|
dependencies = [
|
|
516
552
|
"powerfmt",
|
|
517
553
|
]
|
|
@@ -546,7 +582,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
546
582
|
dependencies = [
|
|
547
583
|
"proc-macro2",
|
|
548
584
|
"quote",
|
|
549
|
-
"syn 2.0.
|
|
585
|
+
"syn 2.0.108",
|
|
550
586
|
]
|
|
551
587
|
|
|
552
588
|
[[package]]
|
|
@@ -584,12 +620,12 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
|
584
620
|
|
|
585
621
|
[[package]]
|
|
586
622
|
name = "errno"
|
|
587
|
-
version = "0.3.
|
|
623
|
+
version = "0.3.14"
|
|
588
624
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
-
checksum = "
|
|
625
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
590
626
|
dependencies = [
|
|
591
627
|
"libc",
|
|
592
|
-
"windows-sys 0.
|
|
628
|
+
"windows-sys 0.61.2",
|
|
593
629
|
]
|
|
594
630
|
|
|
595
631
|
[[package]]
|
|
@@ -603,11 +639,32 @@ dependencies = [
|
|
|
603
639
|
"windows-sys 0.59.0",
|
|
604
640
|
]
|
|
605
641
|
|
|
642
|
+
[[package]]
|
|
643
|
+
name = "event-listener"
|
|
644
|
+
version = "5.4.1"
|
|
645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
646
|
+
checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
|
|
647
|
+
dependencies = [
|
|
648
|
+
"concurrent-queue",
|
|
649
|
+
"parking",
|
|
650
|
+
"pin-project-lite",
|
|
651
|
+
]
|
|
652
|
+
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "event-listener-strategy"
|
|
655
|
+
version = "0.5.4"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
|
|
658
|
+
dependencies = [
|
|
659
|
+
"event-listener",
|
|
660
|
+
"pin-project-lite",
|
|
661
|
+
]
|
|
662
|
+
|
|
606
663
|
[[package]]
|
|
607
664
|
name = "fancy-regex"
|
|
608
|
-
version = "0.
|
|
665
|
+
version = "0.16.2"
|
|
609
666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
-
checksum = "
|
|
667
|
+
checksum = "998b056554fbe42e03ae0e152895cd1a7e1002aec800fdc6635d20270260c46f"
|
|
611
668
|
dependencies = [
|
|
612
669
|
"bit-set",
|
|
613
670
|
"regex-automata",
|
|
@@ -622,16 +679,22 @@ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
|
622
679
|
|
|
623
680
|
[[package]]
|
|
624
681
|
name = "filetime"
|
|
625
|
-
version = "0.2.
|
|
682
|
+
version = "0.2.26"
|
|
626
683
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
-
checksum = "
|
|
684
|
+
checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
|
|
628
685
|
dependencies = [
|
|
629
686
|
"cfg-if",
|
|
630
687
|
"libc",
|
|
631
688
|
"libredox",
|
|
632
|
-
"windows-sys 0.
|
|
689
|
+
"windows-sys 0.60.2",
|
|
633
690
|
]
|
|
634
691
|
|
|
692
|
+
[[package]]
|
|
693
|
+
name = "find-msvc-tools"
|
|
694
|
+
version = "0.1.4"
|
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
+
checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
|
|
697
|
+
|
|
635
698
|
[[package]]
|
|
636
699
|
name = "flate2"
|
|
637
700
|
version = "1.1.4"
|
|
@@ -670,9 +733,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
670
733
|
|
|
671
734
|
[[package]]
|
|
672
735
|
name = "form_urlencoded"
|
|
673
|
-
version = "1.2.
|
|
736
|
+
version = "1.2.2"
|
|
674
737
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
-
checksum = "
|
|
738
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
676
739
|
dependencies = [
|
|
677
740
|
"percent-encoding",
|
|
678
741
|
]
|
|
@@ -749,7 +812,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
|
749
812
|
dependencies = [
|
|
750
813
|
"proc-macro2",
|
|
751
814
|
"quote",
|
|
752
|
-
"syn 2.0.
|
|
815
|
+
"syn 2.0.108",
|
|
753
816
|
]
|
|
754
817
|
|
|
755
818
|
[[package]]
|
|
@@ -784,9 +847,9 @@ dependencies = [
|
|
|
784
847
|
|
|
785
848
|
[[package]]
|
|
786
849
|
name = "generic-array"
|
|
787
|
-
version = "0.14.
|
|
850
|
+
version = "0.14.9"
|
|
788
851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
-
checksum = "
|
|
852
|
+
checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
|
|
790
853
|
dependencies = [
|
|
791
854
|
"typenum",
|
|
792
855
|
"version_check",
|
|
@@ -801,29 +864,29 @@ dependencies = [
|
|
|
801
864
|
"cfg-if",
|
|
802
865
|
"js-sys",
|
|
803
866
|
"libc",
|
|
804
|
-
"wasi
|
|
867
|
+
"wasi",
|
|
805
868
|
"wasm-bindgen",
|
|
806
869
|
]
|
|
807
870
|
|
|
808
871
|
[[package]]
|
|
809
872
|
name = "getrandom"
|
|
810
|
-
version = "0.3.
|
|
873
|
+
version = "0.3.4"
|
|
811
874
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
-
checksum = "
|
|
875
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
813
876
|
dependencies = [
|
|
814
877
|
"cfg-if",
|
|
815
878
|
"js-sys",
|
|
816
879
|
"libc",
|
|
817
880
|
"r-efi",
|
|
818
|
-
"
|
|
881
|
+
"wasip2",
|
|
819
882
|
"wasm-bindgen",
|
|
820
883
|
]
|
|
821
884
|
|
|
822
885
|
[[package]]
|
|
823
886
|
name = "gimli"
|
|
824
|
-
version = "0.
|
|
887
|
+
version = "0.32.3"
|
|
825
888
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
-
checksum = "
|
|
889
|
+
checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
|
|
827
890
|
|
|
828
891
|
[[package]]
|
|
829
892
|
name = "github-actions-expressions"
|
|
@@ -840,7 +903,7 @@ dependencies = [
|
|
|
840
903
|
|
|
841
904
|
[[package]]
|
|
842
905
|
name = "github-actions-models"
|
|
843
|
-
version = "0.
|
|
906
|
+
version = "0.38.0"
|
|
844
907
|
dependencies = [
|
|
845
908
|
"indexmap",
|
|
846
909
|
"serde",
|
|
@@ -850,9 +913,9 @@ dependencies = [
|
|
|
850
913
|
|
|
851
914
|
[[package]]
|
|
852
915
|
name = "globset"
|
|
853
|
-
version = "0.4.
|
|
916
|
+
version = "0.4.18"
|
|
854
917
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
-
checksum = "
|
|
918
|
+
checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
|
|
856
919
|
dependencies = [
|
|
857
920
|
"aho-corasick",
|
|
858
921
|
"bstr",
|
|
@@ -869,9 +932,9 @@ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
|
869
932
|
|
|
870
933
|
[[package]]
|
|
871
934
|
name = "hashbrown"
|
|
872
|
-
version = "0.
|
|
935
|
+
version = "0.16.0"
|
|
873
936
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
874
|
-
checksum = "
|
|
937
|
+
checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
|
|
875
938
|
|
|
876
939
|
[[package]]
|
|
877
940
|
name = "heck"
|
|
@@ -930,34 +993,45 @@ dependencies = [
|
|
|
930
993
|
|
|
931
994
|
[[package]]
|
|
932
995
|
name = "http-cache"
|
|
933
|
-
version = "0.
|
|
996
|
+
version = "1.0.0-alpha.2"
|
|
934
997
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
-
checksum = "
|
|
998
|
+
checksum = "d9f6320639f30b7e6ec9921b238b2557c5f382b5ea8549487dbdb412198e7466"
|
|
936
999
|
dependencies = [
|
|
937
1000
|
"async-trait",
|
|
938
1001
|
"bincode",
|
|
1002
|
+
"bytes",
|
|
939
1003
|
"cacache",
|
|
1004
|
+
"futures",
|
|
1005
|
+
"hex",
|
|
940
1006
|
"http",
|
|
1007
|
+
"http-body",
|
|
1008
|
+
"http-body-util",
|
|
941
1009
|
"http-cache-semantics",
|
|
942
1010
|
"httpdate",
|
|
1011
|
+
"log",
|
|
1012
|
+
"moka",
|
|
1013
|
+
"pin-project-lite",
|
|
943
1014
|
"serde",
|
|
1015
|
+
"tokio",
|
|
944
1016
|
"url",
|
|
945
1017
|
]
|
|
946
1018
|
|
|
947
1019
|
[[package]]
|
|
948
1020
|
name = "http-cache-reqwest"
|
|
949
|
-
version = "0.
|
|
1021
|
+
version = "1.0.0-alpha.2"
|
|
950
1022
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
-
checksum = "
|
|
1023
|
+
checksum = "e9b152d1f3245599d00f9703e5373730936c2d59335182620e0aa22eb0b7ba9c"
|
|
952
1024
|
dependencies = [
|
|
953
1025
|
"anyhow",
|
|
954
1026
|
"async-trait",
|
|
1027
|
+
"bytes",
|
|
955
1028
|
"http",
|
|
1029
|
+
"http-body",
|
|
1030
|
+
"http-body-util",
|
|
956
1031
|
"http-cache",
|
|
957
1032
|
"http-cache-semantics",
|
|
958
1033
|
"reqwest",
|
|
959
1034
|
"reqwest-middleware",
|
|
960
|
-
"serde",
|
|
961
1035
|
"url",
|
|
962
1036
|
]
|
|
963
1037
|
|
|
@@ -1013,18 +1087,20 @@ dependencies = [
|
|
|
1013
1087
|
|
|
1014
1088
|
[[package]]
|
|
1015
1089
|
name = "hyper"
|
|
1016
|
-
version = "1.
|
|
1090
|
+
version = "1.7.0"
|
|
1017
1091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1018
|
-
checksum = "
|
|
1092
|
+
checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
|
|
1019
1093
|
dependencies = [
|
|
1094
|
+
"atomic-waker",
|
|
1020
1095
|
"bytes",
|
|
1021
1096
|
"futures-channel",
|
|
1022
|
-
"futures-
|
|
1097
|
+
"futures-core",
|
|
1023
1098
|
"http",
|
|
1024
1099
|
"http-body",
|
|
1025
1100
|
"httparse",
|
|
1026
1101
|
"itoa",
|
|
1027
1102
|
"pin-project-lite",
|
|
1103
|
+
"pin-utils",
|
|
1028
1104
|
"smallvec",
|
|
1029
1105
|
"tokio",
|
|
1030
1106
|
"want",
|
|
@@ -1032,11 +1108,10 @@ dependencies = [
|
|
|
1032
1108
|
|
|
1033
1109
|
[[package]]
|
|
1034
1110
|
name = "hyper-rustls"
|
|
1035
|
-
version = "0.27.
|
|
1111
|
+
version = "0.27.7"
|
|
1036
1112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
-
checksum = "
|
|
1113
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
1038
1114
|
dependencies = [
|
|
1039
|
-
"futures-util",
|
|
1040
1115
|
"http",
|
|
1041
1116
|
"hyper",
|
|
1042
1117
|
"hyper-util",
|
|
@@ -1045,14 +1120,14 @@ dependencies = [
|
|
|
1045
1120
|
"tokio",
|
|
1046
1121
|
"tokio-rustls",
|
|
1047
1122
|
"tower-service",
|
|
1048
|
-
"webpki-roots
|
|
1123
|
+
"webpki-roots",
|
|
1049
1124
|
]
|
|
1050
1125
|
|
|
1051
1126
|
[[package]]
|
|
1052
1127
|
name = "hyper-util"
|
|
1053
|
-
version = "0.1.
|
|
1128
|
+
version = "0.1.17"
|
|
1054
1129
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
-
checksum = "
|
|
1130
|
+
checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8"
|
|
1056
1131
|
dependencies = [
|
|
1057
1132
|
"base64 0.22.1",
|
|
1058
1133
|
"bytes",
|
|
@@ -1066,7 +1141,7 @@ dependencies = [
|
|
|
1066
1141
|
"libc",
|
|
1067
1142
|
"percent-encoding",
|
|
1068
1143
|
"pin-project-lite",
|
|
1069
|
-
"socket2
|
|
1144
|
+
"socket2",
|
|
1070
1145
|
"tokio",
|
|
1071
1146
|
"tower-service",
|
|
1072
1147
|
"tracing",
|
|
@@ -1074,21 +1149,22 @@ dependencies = [
|
|
|
1074
1149
|
|
|
1075
1150
|
[[package]]
|
|
1076
1151
|
name = "icu_collections"
|
|
1077
|
-
version = "
|
|
1152
|
+
version = "2.0.0"
|
|
1078
1153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1079
|
-
checksum = "
|
|
1154
|
+
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
|
|
1080
1155
|
dependencies = [
|
|
1081
1156
|
"displaydoc",
|
|
1157
|
+
"potential_utf",
|
|
1082
1158
|
"yoke",
|
|
1083
1159
|
"zerofrom",
|
|
1084
1160
|
"zerovec",
|
|
1085
1161
|
]
|
|
1086
1162
|
|
|
1087
1163
|
[[package]]
|
|
1088
|
-
name = "
|
|
1089
|
-
version = "
|
|
1164
|
+
name = "icu_locale_core"
|
|
1165
|
+
version = "2.0.0"
|
|
1090
1166
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
-
checksum = "
|
|
1167
|
+
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
|
|
1092
1168
|
dependencies = [
|
|
1093
1169
|
"displaydoc",
|
|
1094
1170
|
"litemap",
|
|
@@ -1097,31 +1173,11 @@ dependencies = [
|
|
|
1097
1173
|
"zerovec",
|
|
1098
1174
|
]
|
|
1099
1175
|
|
|
1100
|
-
[[package]]
|
|
1101
|
-
name = "icu_locid_transform"
|
|
1102
|
-
version = "1.5.0"
|
|
1103
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
-
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
|
1105
|
-
dependencies = [
|
|
1106
|
-
"displaydoc",
|
|
1107
|
-
"icu_locid",
|
|
1108
|
-
"icu_locid_transform_data",
|
|
1109
|
-
"icu_provider",
|
|
1110
|
-
"tinystr",
|
|
1111
|
-
"zerovec",
|
|
1112
|
-
]
|
|
1113
|
-
|
|
1114
|
-
[[package]]
|
|
1115
|
-
name = "icu_locid_transform_data"
|
|
1116
|
-
version = "1.5.1"
|
|
1117
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1118
|
-
checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
|
|
1119
|
-
|
|
1120
1176
|
[[package]]
|
|
1121
1177
|
name = "icu_normalizer"
|
|
1122
|
-
version = "
|
|
1178
|
+
version = "2.0.0"
|
|
1123
1179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1124
|
-
checksum = "
|
|
1180
|
+
checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
|
|
1125
1181
|
dependencies = [
|
|
1126
1182
|
"displaydoc",
|
|
1127
1183
|
"icu_collections",
|
|
@@ -1129,72 +1185,59 @@ dependencies = [
|
|
|
1129
1185
|
"icu_properties",
|
|
1130
1186
|
"icu_provider",
|
|
1131
1187
|
"smallvec",
|
|
1132
|
-
"utf16_iter",
|
|
1133
|
-
"utf8_iter",
|
|
1134
|
-
"write16",
|
|
1135
1188
|
"zerovec",
|
|
1136
1189
|
]
|
|
1137
1190
|
|
|
1138
1191
|
[[package]]
|
|
1139
1192
|
name = "icu_normalizer_data"
|
|
1140
|
-
version = "
|
|
1193
|
+
version = "2.0.0"
|
|
1141
1194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
-
checksum = "
|
|
1195
|
+
checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
|
|
1143
1196
|
|
|
1144
1197
|
[[package]]
|
|
1145
1198
|
name = "icu_properties"
|
|
1146
|
-
version = "
|
|
1199
|
+
version = "2.0.1"
|
|
1147
1200
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1148
|
-
checksum = "
|
|
1201
|
+
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
|
|
1149
1202
|
dependencies = [
|
|
1150
1203
|
"displaydoc",
|
|
1151
1204
|
"icu_collections",
|
|
1152
|
-
"
|
|
1205
|
+
"icu_locale_core",
|
|
1153
1206
|
"icu_properties_data",
|
|
1154
1207
|
"icu_provider",
|
|
1155
|
-
"
|
|
1208
|
+
"potential_utf",
|
|
1209
|
+
"zerotrie",
|
|
1156
1210
|
"zerovec",
|
|
1157
1211
|
]
|
|
1158
1212
|
|
|
1159
1213
|
[[package]]
|
|
1160
1214
|
name = "icu_properties_data"
|
|
1161
|
-
version = "
|
|
1215
|
+
version = "2.0.1"
|
|
1162
1216
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1163
|
-
checksum = "
|
|
1217
|
+
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
|
|
1164
1218
|
|
|
1165
1219
|
[[package]]
|
|
1166
1220
|
name = "icu_provider"
|
|
1167
|
-
version = "
|
|
1221
|
+
version = "2.0.0"
|
|
1168
1222
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
-
checksum = "
|
|
1223
|
+
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
|
|
1170
1224
|
dependencies = [
|
|
1171
1225
|
"displaydoc",
|
|
1172
|
-
"
|
|
1173
|
-
"icu_provider_macros",
|
|
1226
|
+
"icu_locale_core",
|
|
1174
1227
|
"stable_deref_trait",
|
|
1175
1228
|
"tinystr",
|
|
1176
1229
|
"writeable",
|
|
1177
1230
|
"yoke",
|
|
1178
1231
|
"zerofrom",
|
|
1232
|
+
"zerotrie",
|
|
1179
1233
|
"zerovec",
|
|
1180
1234
|
]
|
|
1181
1235
|
|
|
1182
|
-
[[package]]
|
|
1183
|
-
name = "icu_provider_macros"
|
|
1184
|
-
version = "1.5.0"
|
|
1185
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
-
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
1187
|
-
dependencies = [
|
|
1188
|
-
"proc-macro2",
|
|
1189
|
-
"quote",
|
|
1190
|
-
"syn 2.0.101",
|
|
1191
|
-
]
|
|
1192
|
-
|
|
1193
1236
|
[[package]]
|
|
1194
1237
|
name = "idna"
|
|
1195
|
-
version = "1.0
|
|
1238
|
+
version = "1.1.0"
|
|
1196
1239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
-
checksum = "
|
|
1240
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1198
1241
|
dependencies = [
|
|
1199
1242
|
"idna_adapter",
|
|
1200
1243
|
"smallvec",
|
|
@@ -1203,9 +1246,9 @@ dependencies = [
|
|
|
1203
1246
|
|
|
1204
1247
|
[[package]]
|
|
1205
1248
|
name = "idna_adapter"
|
|
1206
|
-
version = "1.2.
|
|
1249
|
+
version = "1.2.1"
|
|
1207
1250
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1208
|
-
checksum = "
|
|
1251
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1209
1252
|
dependencies = [
|
|
1210
1253
|
"icu_normalizer",
|
|
1211
1254
|
"icu_properties",
|
|
@@ -1213,9 +1256,9 @@ dependencies = [
|
|
|
1213
1256
|
|
|
1214
1257
|
[[package]]
|
|
1215
1258
|
name = "ignore"
|
|
1216
|
-
version = "0.4.
|
|
1259
|
+
version = "0.4.24"
|
|
1217
1260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
-
checksum = "
|
|
1261
|
+
checksum = "81776e6f9464432afcc28d03e52eb101c93b6f0566f52aef2427663e700f0403"
|
|
1219
1262
|
dependencies = [
|
|
1220
1263
|
"crossbeam-deque",
|
|
1221
1264
|
"globset",
|
|
@@ -1229,25 +1272,25 @@ dependencies = [
|
|
|
1229
1272
|
|
|
1230
1273
|
[[package]]
|
|
1231
1274
|
name = "indexmap"
|
|
1232
|
-
version = "2.
|
|
1275
|
+
version = "2.12.0"
|
|
1233
1276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
-
checksum = "
|
|
1277
|
+
checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
|
|
1235
1278
|
dependencies = [
|
|
1236
1279
|
"equivalent",
|
|
1237
|
-
"hashbrown 0.
|
|
1280
|
+
"hashbrown 0.16.0",
|
|
1238
1281
|
"serde",
|
|
1239
1282
|
"serde_core",
|
|
1240
1283
|
]
|
|
1241
1284
|
|
|
1242
1285
|
[[package]]
|
|
1243
1286
|
name = "indicatif"
|
|
1244
|
-
version = "0.18.
|
|
1287
|
+
version = "0.18.1"
|
|
1245
1288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
|
-
checksum = "
|
|
1289
|
+
checksum = "e2e0ddd45fe8e09ee1a607920b12271f8a5528a41ecaf6e1d1440d6493315b6b"
|
|
1247
1290
|
dependencies = [
|
|
1248
|
-
"console 0.16.
|
|
1291
|
+
"console 0.16.1",
|
|
1249
1292
|
"portable-atomic",
|
|
1250
|
-
"unicode-width 0.2.
|
|
1293
|
+
"unicode-width 0.2.2",
|
|
1251
1294
|
"unit-prefix",
|
|
1252
1295
|
"vt100",
|
|
1253
1296
|
"web-time",
|
|
@@ -1266,24 +1309,13 @@ dependencies = [
|
|
|
1266
1309
|
|
|
1267
1310
|
[[package]]
|
|
1268
1311
|
name = "inventory"
|
|
1269
|
-
version = "0.3.
|
|
1312
|
+
version = "0.3.21"
|
|
1270
1313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1271
|
-
checksum = "
|
|
1314
|
+
checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
|
|
1272
1315
|
dependencies = [
|
|
1273
1316
|
"rustversion",
|
|
1274
1317
|
]
|
|
1275
1318
|
|
|
1276
|
-
[[package]]
|
|
1277
|
-
name = "io-uring"
|
|
1278
|
-
version = "0.7.8"
|
|
1279
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1280
|
-
checksum = "b86e202f00093dcba4275d4636b93ef9dd75d025ae560d2521b45ea28ab49013"
|
|
1281
|
-
dependencies = [
|
|
1282
|
-
"bitflags 2.9.0",
|
|
1283
|
-
"cfg-if",
|
|
1284
|
-
"libc",
|
|
1285
|
-
]
|
|
1286
|
-
|
|
1287
1319
|
[[package]]
|
|
1288
1320
|
name = "ipnet"
|
|
1289
1321
|
version = "2.11.0"
|
|
@@ -1302,9 +1334,9 @@ dependencies = [
|
|
|
1302
1334
|
|
|
1303
1335
|
[[package]]
|
|
1304
1336
|
name = "is_terminal_polyfill"
|
|
1305
|
-
version = "1.70.
|
|
1337
|
+
version = "1.70.2"
|
|
1306
1338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1307
|
-
checksum = "
|
|
1339
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1308
1340
|
|
|
1309
1341
|
[[package]]
|
|
1310
1342
|
name = "itertools"
|
|
@@ -1323,9 +1355,9 @@ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
|
1323
1355
|
|
|
1324
1356
|
[[package]]
|
|
1325
1357
|
name = "js-sys"
|
|
1326
|
-
version = "0.3.
|
|
1358
|
+
version = "0.3.81"
|
|
1327
1359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1328
|
-
checksum = "
|
|
1360
|
+
checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305"
|
|
1329
1361
|
dependencies = [
|
|
1330
1362
|
"once_cell",
|
|
1331
1363
|
"wasm-bindgen",
|
|
@@ -1333,9 +1365,9 @@ dependencies = [
|
|
|
1333
1365
|
|
|
1334
1366
|
[[package]]
|
|
1335
1367
|
name = "jsonschema"
|
|
1336
|
-
version = "0.
|
|
1368
|
+
version = "0.33.0"
|
|
1337
1369
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1338
|
-
checksum = "
|
|
1370
|
+
checksum = "d46662859bc5f60a145b75f4632fbadc84e829e45df6c5de74cfc8e05acb96b5"
|
|
1339
1371
|
dependencies = [
|
|
1340
1372
|
"ahash",
|
|
1341
1373
|
"base64 0.22.1",
|
|
@@ -1366,17 +1398,17 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
|
1366
1398
|
|
|
1367
1399
|
[[package]]
|
|
1368
1400
|
name = "libc"
|
|
1369
|
-
version = "0.2.
|
|
1401
|
+
version = "0.2.177"
|
|
1370
1402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
-
checksum = "
|
|
1403
|
+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
|
|
1372
1404
|
|
|
1373
1405
|
[[package]]
|
|
1374
1406
|
name = "libredox"
|
|
1375
|
-
version = "0.1.
|
|
1407
|
+
version = "0.1.10"
|
|
1376
1408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1377
|
-
checksum = "
|
|
1409
|
+
checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
|
|
1378
1410
|
dependencies = [
|
|
1379
|
-
"bitflags 2.
|
|
1411
|
+
"bitflags 2.10.0",
|
|
1380
1412
|
"libc",
|
|
1381
1413
|
"redox_syscall",
|
|
1382
1414
|
]
|
|
@@ -1393,31 +1425,36 @@ dependencies = [
|
|
|
1393
1425
|
|
|
1394
1426
|
[[package]]
|
|
1395
1427
|
name = "linux-raw-sys"
|
|
1396
|
-
version = "0.
|
|
1428
|
+
version = "0.11.0"
|
|
1397
1429
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
|
-
checksum = "
|
|
1430
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
1399
1431
|
|
|
1400
1432
|
[[package]]
|
|
1401
1433
|
name = "litemap"
|
|
1402
|
-
version = "0.
|
|
1434
|
+
version = "0.8.0"
|
|
1403
1435
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1404
|
-
checksum = "
|
|
1436
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
|
1405
1437
|
|
|
1406
1438
|
[[package]]
|
|
1407
1439
|
name = "lock_api"
|
|
1408
|
-
version = "0.4.
|
|
1440
|
+
version = "0.4.14"
|
|
1409
1441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1410
|
-
checksum = "
|
|
1442
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1411
1443
|
dependencies = [
|
|
1412
|
-
"autocfg",
|
|
1413
1444
|
"scopeguard",
|
|
1414
1445
|
]
|
|
1415
1446
|
|
|
1416
1447
|
[[package]]
|
|
1417
1448
|
name = "log"
|
|
1418
|
-
version = "0.4.
|
|
1449
|
+
version = "0.4.28"
|
|
1419
1450
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
-
checksum = "
|
|
1451
|
+
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
|
|
1452
|
+
|
|
1453
|
+
[[package]]
|
|
1454
|
+
name = "lru-slab"
|
|
1455
|
+
version = "0.1.2"
|
|
1456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1457
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1421
1458
|
|
|
1422
1459
|
[[package]]
|
|
1423
1460
|
name = "lsp-types"
|
|
@@ -1476,7 +1513,7 @@ checksum = "49e7bc1560b95a3c4a25d03de42fe76ca718ab92d1a22a55b9b4cf67b3ae635c"
|
|
|
1476
1513
|
dependencies = [
|
|
1477
1514
|
"proc-macro2",
|
|
1478
1515
|
"quote",
|
|
1479
|
-
"syn 2.0.
|
|
1516
|
+
"syn 2.0.108",
|
|
1480
1517
|
]
|
|
1481
1518
|
|
|
1482
1519
|
[[package]]
|
|
@@ -1487,9 +1524,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
1487
1524
|
|
|
1488
1525
|
[[package]]
|
|
1489
1526
|
name = "miniz_oxide"
|
|
1490
|
-
version = "0.8.
|
|
1527
|
+
version = "0.8.9"
|
|
1491
1528
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1492
|
-
checksum = "
|
|
1529
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1493
1530
|
dependencies = [
|
|
1494
1531
|
"adler2",
|
|
1495
1532
|
"simd-adler32",
|
|
@@ -1497,13 +1534,34 @@ dependencies = [
|
|
|
1497
1534
|
|
|
1498
1535
|
[[package]]
|
|
1499
1536
|
name = "mio"
|
|
1500
|
-
version = "1.0
|
|
1537
|
+
version = "1.1.0"
|
|
1501
1538
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
-
checksum = "
|
|
1539
|
+
checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873"
|
|
1503
1540
|
dependencies = [
|
|
1504
1541
|
"libc",
|
|
1505
|
-
"wasi
|
|
1506
|
-
"windows-sys 0.
|
|
1542
|
+
"wasi",
|
|
1543
|
+
"windows-sys 0.61.2",
|
|
1544
|
+
]
|
|
1545
|
+
|
|
1546
|
+
[[package]]
|
|
1547
|
+
name = "moka"
|
|
1548
|
+
version = "0.12.11"
|
|
1549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1550
|
+
checksum = "8261cd88c312e0004c1d51baad2980c66528dfdb2bee62003e643a4d8f86b077"
|
|
1551
|
+
dependencies = [
|
|
1552
|
+
"async-lock",
|
|
1553
|
+
"crossbeam-channel",
|
|
1554
|
+
"crossbeam-epoch",
|
|
1555
|
+
"crossbeam-utils",
|
|
1556
|
+
"equivalent",
|
|
1557
|
+
"event-listener",
|
|
1558
|
+
"futures-util",
|
|
1559
|
+
"parking_lot",
|
|
1560
|
+
"portable-atomic",
|
|
1561
|
+
"rustc_version",
|
|
1562
|
+
"smallvec",
|
|
1563
|
+
"tagptr",
|
|
1564
|
+
"uuid",
|
|
1507
1565
|
]
|
|
1508
1566
|
|
|
1509
1567
|
[[package]]
|
|
@@ -1524,11 +1582,11 @@ dependencies = [
|
|
|
1524
1582
|
|
|
1525
1583
|
[[package]]
|
|
1526
1584
|
name = "nu-ansi-term"
|
|
1527
|
-
version = "0.50.
|
|
1585
|
+
version = "0.50.3"
|
|
1528
1586
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1529
|
-
checksum = "
|
|
1587
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
1530
1588
|
dependencies = [
|
|
1531
|
-
"windows-sys 0.
|
|
1589
|
+
"windows-sys 0.61.2",
|
|
1532
1590
|
]
|
|
1533
1591
|
|
|
1534
1592
|
[[package]]
|
|
@@ -1618,9 +1676,9 @@ dependencies = [
|
|
|
1618
1676
|
|
|
1619
1677
|
[[package]]
|
|
1620
1678
|
name = "object"
|
|
1621
|
-
version = "0.
|
|
1679
|
+
version = "0.37.3"
|
|
1622
1680
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1623
|
-
checksum = "
|
|
1681
|
+
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
|
|
1624
1682
|
dependencies = [
|
|
1625
1683
|
"memchr",
|
|
1626
1684
|
]
|
|
@@ -1631,13 +1689,20 @@ version = "1.21.3"
|
|
|
1631
1689
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
1690
|
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1633
1691
|
|
|
1692
|
+
[[package]]
|
|
1693
|
+
name = "once_cell_polyfill"
|
|
1694
|
+
version = "1.70.2"
|
|
1695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1696
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1697
|
+
|
|
1634
1698
|
[[package]]
|
|
1635
1699
|
name = "os_info"
|
|
1636
|
-
version = "3.
|
|
1700
|
+
version = "3.12.0"
|
|
1637
1701
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1638
|
-
checksum = "
|
|
1702
|
+
checksum = "d0e1ac5fde8d43c34139135df8ea9ee9465394b2d8d20f032d38998f64afffc3"
|
|
1639
1703
|
dependencies = [
|
|
1640
1704
|
"log",
|
|
1705
|
+
"plist",
|
|
1641
1706
|
"serde",
|
|
1642
1707
|
"windows-sys 0.52.0",
|
|
1643
1708
|
]
|
|
@@ -1654,11 +1719,17 @@ version = "4.2.3"
|
|
|
1654
1719
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1655
1720
|
checksum = "9c6901729fa79e91a0913333229e9ca5dc725089d1c363b2f4b4760709dc4a52"
|
|
1656
1721
|
|
|
1722
|
+
[[package]]
|
|
1723
|
+
name = "parking"
|
|
1724
|
+
version = "2.2.1"
|
|
1725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
+
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
|
1727
|
+
|
|
1657
1728
|
[[package]]
|
|
1658
1729
|
name = "parking_lot"
|
|
1659
|
-
version = "0.12.
|
|
1730
|
+
version = "0.12.5"
|
|
1660
1731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1661
|
-
checksum = "
|
|
1732
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1662
1733
|
dependencies = [
|
|
1663
1734
|
"lock_api",
|
|
1664
1735
|
"parking_lot_core",
|
|
@@ -1666,22 +1737,22 @@ dependencies = [
|
|
|
1666
1737
|
|
|
1667
1738
|
[[package]]
|
|
1668
1739
|
name = "parking_lot_core"
|
|
1669
|
-
version = "0.9.
|
|
1740
|
+
version = "0.9.12"
|
|
1670
1741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1671
|
-
checksum = "
|
|
1742
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1672
1743
|
dependencies = [
|
|
1673
1744
|
"cfg-if",
|
|
1674
1745
|
"libc",
|
|
1675
1746
|
"redox_syscall",
|
|
1676
1747
|
"smallvec",
|
|
1677
|
-
"windows-
|
|
1748
|
+
"windows-link",
|
|
1678
1749
|
]
|
|
1679
1750
|
|
|
1680
1751
|
[[package]]
|
|
1681
1752
|
name = "percent-encoding"
|
|
1682
|
-
version = "2.3.
|
|
1753
|
+
version = "2.3.2"
|
|
1683
1754
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1684
|
-
checksum = "
|
|
1755
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1685
1756
|
|
|
1686
1757
|
[[package]]
|
|
1687
1758
|
name = "pest"
|
|
@@ -1713,7 +1784,7 @@ dependencies = [
|
|
|
1713
1784
|
"pest_meta",
|
|
1714
1785
|
"proc-macro2",
|
|
1715
1786
|
"quote",
|
|
1716
|
-
"syn 2.0.
|
|
1787
|
+
"syn 2.0.108",
|
|
1717
1788
|
]
|
|
1718
1789
|
|
|
1719
1790
|
[[package]]
|
|
@@ -1738,11 +1809,33 @@ version = "0.1.0"
|
|
|
1738
1809
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1739
1810
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1740
1811
|
|
|
1812
|
+
[[package]]
|
|
1813
|
+
name = "plist"
|
|
1814
|
+
version = "1.8.0"
|
|
1815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1816
|
+
checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07"
|
|
1817
|
+
dependencies = [
|
|
1818
|
+
"base64 0.22.1",
|
|
1819
|
+
"indexmap",
|
|
1820
|
+
"quick-xml",
|
|
1821
|
+
"serde",
|
|
1822
|
+
"time",
|
|
1823
|
+
]
|
|
1824
|
+
|
|
1741
1825
|
[[package]]
|
|
1742
1826
|
name = "portable-atomic"
|
|
1743
|
-
version = "1.11.
|
|
1827
|
+
version = "1.11.1"
|
|
1744
1828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1745
|
-
checksum = "
|
|
1829
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
1830
|
+
|
|
1831
|
+
[[package]]
|
|
1832
|
+
name = "potential_utf"
|
|
1833
|
+
version = "0.1.3"
|
|
1834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1835
|
+
checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a"
|
|
1836
|
+
dependencies = [
|
|
1837
|
+
"zerovec",
|
|
1838
|
+
]
|
|
1746
1839
|
|
|
1747
1840
|
[[package]]
|
|
1748
1841
|
name = "powerfmt"
|
|
@@ -1756,7 +1849,7 @@ version = "0.2.21"
|
|
|
1756
1849
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1757
1850
|
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1758
1851
|
dependencies = [
|
|
1759
|
-
"zerocopy
|
|
1852
|
+
"zerocopy",
|
|
1760
1853
|
]
|
|
1761
1854
|
|
|
1762
1855
|
[[package]]
|
|
@@ -1798,28 +1891,37 @@ dependencies = [
|
|
|
1798
1891
|
|
|
1799
1892
|
[[package]]
|
|
1800
1893
|
name = "prettyplease"
|
|
1801
|
-
version = "0.2.
|
|
1894
|
+
version = "0.2.37"
|
|
1802
1895
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1803
|
-
checksum = "
|
|
1896
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1804
1897
|
dependencies = [
|
|
1805
1898
|
"proc-macro2",
|
|
1806
|
-
"syn 2.0.
|
|
1899
|
+
"syn 2.0.108",
|
|
1807
1900
|
]
|
|
1808
1901
|
|
|
1809
1902
|
[[package]]
|
|
1810
1903
|
name = "proc-macro2"
|
|
1811
|
-
version = "1.0.
|
|
1904
|
+
version = "1.0.103"
|
|
1812
1905
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1813
|
-
checksum = "
|
|
1906
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
1814
1907
|
dependencies = [
|
|
1815
1908
|
"unicode-ident",
|
|
1816
1909
|
]
|
|
1817
1910
|
|
|
1911
|
+
[[package]]
|
|
1912
|
+
name = "quick-xml"
|
|
1913
|
+
version = "0.38.3"
|
|
1914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1915
|
+
checksum = "42a232e7487fc2ef313d96dde7948e7a3c05101870d8985e4fd8d26aedd27b89"
|
|
1916
|
+
dependencies = [
|
|
1917
|
+
"memchr",
|
|
1918
|
+
]
|
|
1919
|
+
|
|
1818
1920
|
[[package]]
|
|
1819
1921
|
name = "quinn"
|
|
1820
|
-
version = "0.11.
|
|
1922
|
+
version = "0.11.9"
|
|
1821
1923
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1822
|
-
checksum = "
|
|
1924
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
1823
1925
|
dependencies = [
|
|
1824
1926
|
"bytes",
|
|
1825
1927
|
"cfg_aliases",
|
|
@@ -1828,7 +1930,7 @@ dependencies = [
|
|
|
1828
1930
|
"quinn-udp",
|
|
1829
1931
|
"rustc-hash",
|
|
1830
1932
|
"rustls",
|
|
1831
|
-
"socket2
|
|
1933
|
+
"socket2",
|
|
1832
1934
|
"thiserror 2.0.17",
|
|
1833
1935
|
"tokio",
|
|
1834
1936
|
"tracing",
|
|
@@ -1837,12 +1939,13 @@ dependencies = [
|
|
|
1837
1939
|
|
|
1838
1940
|
[[package]]
|
|
1839
1941
|
name = "quinn-proto"
|
|
1840
|
-
version = "0.11.
|
|
1942
|
+
version = "0.11.13"
|
|
1841
1943
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1842
|
-
checksum = "
|
|
1944
|
+
checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
|
|
1843
1945
|
dependencies = [
|
|
1844
1946
|
"bytes",
|
|
1845
|
-
"getrandom 0.3.
|
|
1947
|
+
"getrandom 0.3.4",
|
|
1948
|
+
"lru-slab",
|
|
1846
1949
|
"rand",
|
|
1847
1950
|
"ring",
|
|
1848
1951
|
"rustc-hash",
|
|
@@ -1857,38 +1960,38 @@ dependencies = [
|
|
|
1857
1960
|
|
|
1858
1961
|
[[package]]
|
|
1859
1962
|
name = "quinn-udp"
|
|
1860
|
-
version = "0.5.
|
|
1963
|
+
version = "0.5.14"
|
|
1861
1964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1862
|
-
checksum = "
|
|
1965
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
1863
1966
|
dependencies = [
|
|
1864
1967
|
"cfg_aliases",
|
|
1865
1968
|
"libc",
|
|
1866
1969
|
"once_cell",
|
|
1867
|
-
"socket2
|
|
1970
|
+
"socket2",
|
|
1868
1971
|
"tracing",
|
|
1869
|
-
"windows-sys 0.
|
|
1972
|
+
"windows-sys 0.60.2",
|
|
1870
1973
|
]
|
|
1871
1974
|
|
|
1872
1975
|
[[package]]
|
|
1873
1976
|
name = "quote"
|
|
1874
|
-
version = "1.0.
|
|
1977
|
+
version = "1.0.41"
|
|
1875
1978
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1876
|
-
checksum = "
|
|
1979
|
+
checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
|
|
1877
1980
|
dependencies = [
|
|
1878
1981
|
"proc-macro2",
|
|
1879
1982
|
]
|
|
1880
1983
|
|
|
1881
1984
|
[[package]]
|
|
1882
1985
|
name = "r-efi"
|
|
1883
|
-
version = "5.
|
|
1986
|
+
version = "5.3.0"
|
|
1884
1987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1885
|
-
checksum = "
|
|
1988
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1886
1989
|
|
|
1887
1990
|
[[package]]
|
|
1888
1991
|
name = "rand"
|
|
1889
|
-
version = "0.9.
|
|
1992
|
+
version = "0.9.2"
|
|
1890
1993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1891
|
-
checksum = "
|
|
1994
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
1892
1995
|
dependencies = [
|
|
1893
1996
|
"rand_chacha",
|
|
1894
1997
|
"rand_core",
|
|
@@ -1910,43 +2013,43 @@ version = "0.9.3"
|
|
|
1910
2013
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1911
2014
|
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
1912
2015
|
dependencies = [
|
|
1913
|
-
"getrandom 0.3.
|
|
2016
|
+
"getrandom 0.3.4",
|
|
1914
2017
|
]
|
|
1915
2018
|
|
|
1916
2019
|
[[package]]
|
|
1917
2020
|
name = "redox_syscall"
|
|
1918
|
-
version = "0.5.
|
|
2021
|
+
version = "0.5.18"
|
|
1919
2022
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1920
|
-
checksum = "
|
|
2023
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1921
2024
|
dependencies = [
|
|
1922
|
-
"bitflags 2.
|
|
2025
|
+
"bitflags 2.10.0",
|
|
1923
2026
|
]
|
|
1924
2027
|
|
|
1925
2028
|
[[package]]
|
|
1926
2029
|
name = "ref-cast"
|
|
1927
|
-
version = "1.0.
|
|
2030
|
+
version = "1.0.25"
|
|
1928
2031
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1929
|
-
checksum = "
|
|
2032
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
1930
2033
|
dependencies = [
|
|
1931
2034
|
"ref-cast-impl",
|
|
1932
2035
|
]
|
|
1933
2036
|
|
|
1934
2037
|
[[package]]
|
|
1935
2038
|
name = "ref-cast-impl"
|
|
1936
|
-
version = "1.0.
|
|
2039
|
+
version = "1.0.25"
|
|
1937
2040
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1938
|
-
checksum = "
|
|
2041
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
1939
2042
|
dependencies = [
|
|
1940
2043
|
"proc-macro2",
|
|
1941
2044
|
"quote",
|
|
1942
|
-
"syn 2.0.
|
|
2045
|
+
"syn 2.0.108",
|
|
1943
2046
|
]
|
|
1944
2047
|
|
|
1945
2048
|
[[package]]
|
|
1946
2049
|
name = "referencing"
|
|
1947
|
-
version = "0.
|
|
2050
|
+
version = "0.33.0"
|
|
1948
2051
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1949
|
-
checksum = "
|
|
2052
|
+
checksum = "9e9c261f7ce75418b3beadfb3f0eb1299fe8eb9640deba45ffa2cb783098697d"
|
|
1950
2053
|
dependencies = [
|
|
1951
2054
|
"ahash",
|
|
1952
2055
|
"fluent-uri 0.3.2",
|
|
@@ -1958,9 +2061,9 @@ dependencies = [
|
|
|
1958
2061
|
|
|
1959
2062
|
[[package]]
|
|
1960
2063
|
name = "reflink-copy"
|
|
1961
|
-
version = "0.1.
|
|
2064
|
+
version = "0.1.28"
|
|
1962
2065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1963
|
-
checksum = "
|
|
2066
|
+
checksum = "23bbed272e39c47a095a5242218a67412a220006842558b03fe2935e8f3d7b92"
|
|
1964
2067
|
dependencies = [
|
|
1965
2068
|
"cfg-if",
|
|
1966
2069
|
"libc",
|
|
@@ -1970,9 +2073,9 @@ dependencies = [
|
|
|
1970
2073
|
|
|
1971
2074
|
[[package]]
|
|
1972
2075
|
name = "regex"
|
|
1973
|
-
version = "1.
|
|
2076
|
+
version = "1.12.2"
|
|
1974
2077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1975
|
-
checksum = "
|
|
2078
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
1976
2079
|
dependencies = [
|
|
1977
2080
|
"aho-corasick",
|
|
1978
2081
|
"memchr",
|
|
@@ -1982,9 +2085,9 @@ dependencies = [
|
|
|
1982
2085
|
|
|
1983
2086
|
[[package]]
|
|
1984
2087
|
name = "regex-automata"
|
|
1985
|
-
version = "0.4.
|
|
2088
|
+
version = "0.4.13"
|
|
1986
2089
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1987
|
-
checksum = "
|
|
2090
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
1988
2091
|
dependencies = [
|
|
1989
2092
|
"aho-corasick",
|
|
1990
2093
|
"memchr",
|
|
@@ -1993,15 +2096,15 @@ dependencies = [
|
|
|
1993
2096
|
|
|
1994
2097
|
[[package]]
|
|
1995
2098
|
name = "regex-syntax"
|
|
1996
|
-
version = "0.8.
|
|
2099
|
+
version = "0.8.8"
|
|
1997
2100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1998
|
-
checksum = "
|
|
2101
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
1999
2102
|
|
|
2000
2103
|
[[package]]
|
|
2001
2104
|
name = "reqwest"
|
|
2002
|
-
version = "0.12.
|
|
2105
|
+
version = "0.12.24"
|
|
2003
2106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2004
|
-
checksum = "
|
|
2107
|
+
checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f"
|
|
2005
2108
|
dependencies = [
|
|
2006
2109
|
"base64 0.22.1",
|
|
2007
2110
|
"bytes",
|
|
@@ -2034,7 +2137,7 @@ dependencies = [
|
|
|
2034
2137
|
"wasm-bindgen",
|
|
2035
2138
|
"wasm-bindgen-futures",
|
|
2036
2139
|
"web-sys",
|
|
2037
|
-
"webpki-roots
|
|
2140
|
+
"webpki-roots",
|
|
2038
2141
|
]
|
|
2039
2142
|
|
|
2040
2143
|
[[package]]
|
|
@@ -2068,9 +2171,9 @@ dependencies = [
|
|
|
2068
2171
|
|
|
2069
2172
|
[[package]]
|
|
2070
2173
|
name = "rustc-demangle"
|
|
2071
|
-
version = "0.1.
|
|
2174
|
+
version = "0.1.26"
|
|
2072
2175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2073
|
-
checksum = "
|
|
2176
|
+
checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
|
|
2074
2177
|
|
|
2075
2178
|
[[package]]
|
|
2076
2179
|
name = "rustc-hash"
|
|
@@ -2078,24 +2181,33 @@ version = "2.1.1"
|
|
|
2078
2181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2079
2182
|
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
2080
2183
|
|
|
2184
|
+
[[package]]
|
|
2185
|
+
name = "rustc_version"
|
|
2186
|
+
version = "0.4.1"
|
|
2187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2188
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2189
|
+
dependencies = [
|
|
2190
|
+
"semver",
|
|
2191
|
+
]
|
|
2192
|
+
|
|
2081
2193
|
[[package]]
|
|
2082
2194
|
name = "rustix"
|
|
2083
|
-
version = "1.
|
|
2195
|
+
version = "1.1.2"
|
|
2084
2196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2085
|
-
checksum = "
|
|
2197
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
2086
2198
|
dependencies = [
|
|
2087
|
-
"bitflags 2.
|
|
2199
|
+
"bitflags 2.10.0",
|
|
2088
2200
|
"errno",
|
|
2089
2201
|
"libc",
|
|
2090
2202
|
"linux-raw-sys",
|
|
2091
|
-
"windows-sys 0.
|
|
2203
|
+
"windows-sys 0.61.2",
|
|
2092
2204
|
]
|
|
2093
2205
|
|
|
2094
2206
|
[[package]]
|
|
2095
2207
|
name = "rustls"
|
|
2096
|
-
version = "0.23.
|
|
2208
|
+
version = "0.23.34"
|
|
2097
2209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2098
|
-
checksum = "
|
|
2210
|
+
checksum = "6a9586e9ee2b4f8fab52a0048ca7334d7024eef48e2cb9407e3497bb7cab7fa7"
|
|
2099
2211
|
dependencies = [
|
|
2100
2212
|
"once_cell",
|
|
2101
2213
|
"ring",
|
|
@@ -2107,18 +2219,19 @@ dependencies = [
|
|
|
2107
2219
|
|
|
2108
2220
|
[[package]]
|
|
2109
2221
|
name = "rustls-pki-types"
|
|
2110
|
-
version = "1.
|
|
2222
|
+
version = "1.12.0"
|
|
2111
2223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2112
|
-
checksum = "
|
|
2224
|
+
checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
|
|
2113
2225
|
dependencies = [
|
|
2114
2226
|
"web-time",
|
|
2227
|
+
"zeroize",
|
|
2115
2228
|
]
|
|
2116
2229
|
|
|
2117
2230
|
[[package]]
|
|
2118
2231
|
name = "rustls-webpki"
|
|
2119
|
-
version = "0.103.
|
|
2232
|
+
version = "0.103.7"
|
|
2120
2233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2121
|
-
checksum = "
|
|
2234
|
+
checksum = "e10b3f4191e8a80e6b43eebabfac91e5dcecebb27a71f04e820c47ec41d314bf"
|
|
2122
2235
|
dependencies = [
|
|
2123
2236
|
"ring",
|
|
2124
2237
|
"rustls-pki-types",
|
|
@@ -2127,9 +2240,9 @@ dependencies = [
|
|
|
2127
2240
|
|
|
2128
2241
|
[[package]]
|
|
2129
2242
|
name = "rustversion"
|
|
2130
|
-
version = "1.0.
|
|
2243
|
+
version = "1.0.22"
|
|
2131
2244
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2132
|
-
checksum = "
|
|
2245
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2133
2246
|
|
|
2134
2247
|
[[package]]
|
|
2135
2248
|
name = "ryu"
|
|
@@ -2179,6 +2292,18 @@ version = "1.2.0"
|
|
|
2179
2292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2180
2293
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2181
2294
|
|
|
2295
|
+
[[package]]
|
|
2296
|
+
name = "self_cell"
|
|
2297
|
+
version = "1.2.1"
|
|
2298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2299
|
+
checksum = "16c2f82143577edb4921b71ede051dac62ca3c16084e918bf7b40c96ae10eb33"
|
|
2300
|
+
|
|
2301
|
+
[[package]]
|
|
2302
|
+
name = "semver"
|
|
2303
|
+
version = "1.0.27"
|
|
2304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2305
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
2306
|
+
|
|
2182
2307
|
[[package]]
|
|
2183
2308
|
name = "serde"
|
|
2184
2309
|
version = "1.0.228"
|
|
@@ -2204,7 +2329,7 @@ dependencies = [
|
|
|
2204
2329
|
"serde_json",
|
|
2205
2330
|
"strum",
|
|
2206
2331
|
"strum_macros",
|
|
2207
|
-
"syn 2.0.
|
|
2332
|
+
"syn 2.0.108",
|
|
2208
2333
|
"thiserror 2.0.17",
|
|
2209
2334
|
"typed-builder",
|
|
2210
2335
|
]
|
|
@@ -2226,7 +2351,7 @@ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
|
2226
2351
|
dependencies = [
|
|
2227
2352
|
"proc-macro2",
|
|
2228
2353
|
"quote",
|
|
2229
|
-
"syn 2.0.
|
|
2354
|
+
"syn 2.0.108",
|
|
2230
2355
|
]
|
|
2231
2356
|
|
|
2232
2357
|
[[package]]
|
|
@@ -2290,7 +2415,7 @@ checksum = "aafbefbe175fa9bf03ca83ef89beecff7d2a95aaacd5732325b90ac8c3bd7b90"
|
|
|
2290
2415
|
dependencies = [
|
|
2291
2416
|
"proc-macro2",
|
|
2292
2417
|
"quote",
|
|
2293
|
-
"syn 2.0.
|
|
2418
|
+
"syn 2.0.108",
|
|
2294
2419
|
]
|
|
2295
2420
|
|
|
2296
2421
|
[[package]]
|
|
@@ -2301,16 +2426,16 @@ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
|
|
|
2301
2426
|
dependencies = [
|
|
2302
2427
|
"proc-macro2",
|
|
2303
2428
|
"quote",
|
|
2304
|
-
"syn 2.0.
|
|
2429
|
+
"syn 2.0.108",
|
|
2305
2430
|
]
|
|
2306
2431
|
|
|
2307
2432
|
[[package]]
|
|
2308
2433
|
name = "serde_spanned"
|
|
2309
|
-
version = "1.0.
|
|
2434
|
+
version = "1.0.3"
|
|
2310
2435
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2311
|
-
checksum = "
|
|
2436
|
+
checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392"
|
|
2312
2437
|
dependencies = [
|
|
2313
|
-
"
|
|
2438
|
+
"serde_core",
|
|
2314
2439
|
]
|
|
2315
2440
|
|
|
2316
2441
|
[[package]]
|
|
@@ -2362,9 +2487,9 @@ dependencies = [
|
|
|
2362
2487
|
|
|
2363
2488
|
[[package]]
|
|
2364
2489
|
name = "sha2"
|
|
2365
|
-
version = "0.10.
|
|
2490
|
+
version = "0.10.9"
|
|
2366
2491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2367
|
-
checksum = "
|
|
2492
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
2368
2493
|
dependencies = [
|
|
2369
2494
|
"cfg-if",
|
|
2370
2495
|
"cpufeatures",
|
|
@@ -2400,37 +2525,24 @@ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
|
2400
2525
|
|
|
2401
2526
|
[[package]]
|
|
2402
2527
|
name = "slab"
|
|
2403
|
-
version = "0.4.
|
|
2528
|
+
version = "0.4.11"
|
|
2404
2529
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2405
|
-
checksum = "
|
|
2406
|
-
dependencies = [
|
|
2407
|
-
"autocfg",
|
|
2408
|
-
]
|
|
2530
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
2409
2531
|
|
|
2410
2532
|
[[package]]
|
|
2411
2533
|
name = "smallvec"
|
|
2412
|
-
version = "1.15.
|
|
2534
|
+
version = "1.15.1"
|
|
2413
2535
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2414
|
-
checksum = "
|
|
2415
|
-
|
|
2416
|
-
[[package]]
|
|
2417
|
-
name = "socket2"
|
|
2418
|
-
version = "0.5.9"
|
|
2419
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2420
|
-
checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
|
|
2421
|
-
dependencies = [
|
|
2422
|
-
"libc",
|
|
2423
|
-
"windows-sys 0.52.0",
|
|
2424
|
-
]
|
|
2536
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2425
2537
|
|
|
2426
2538
|
[[package]]
|
|
2427
2539
|
name = "socket2"
|
|
2428
|
-
version = "0.6.
|
|
2540
|
+
version = "0.6.1"
|
|
2429
2541
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2430
|
-
checksum = "
|
|
2542
|
+
checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
|
|
2431
2543
|
dependencies = [
|
|
2432
2544
|
"libc",
|
|
2433
|
-
"windows-sys 0.
|
|
2545
|
+
"windows-sys 0.60.2",
|
|
2434
2546
|
]
|
|
2435
2547
|
|
|
2436
2548
|
[[package]]
|
|
@@ -2452,9 +2564,9 @@ dependencies = [
|
|
|
2452
2564
|
|
|
2453
2565
|
[[package]]
|
|
2454
2566
|
name = "stable_deref_trait"
|
|
2455
|
-
version = "1.2.
|
|
2567
|
+
version = "1.2.1"
|
|
2456
2568
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2457
|
-
checksum = "
|
|
2569
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2458
2570
|
|
|
2459
2571
|
[[package]]
|
|
2460
2572
|
name = "streaming-iterator"
|
|
@@ -2470,21 +2582,20 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
|
2470
2582
|
|
|
2471
2583
|
[[package]]
|
|
2472
2584
|
name = "strum"
|
|
2473
|
-
version = "0.27.
|
|
2585
|
+
version = "0.27.2"
|
|
2474
2586
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2475
|
-
checksum = "
|
|
2587
|
+
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
|
2476
2588
|
|
|
2477
2589
|
[[package]]
|
|
2478
2590
|
name = "strum_macros"
|
|
2479
|
-
version = "0.27.
|
|
2591
|
+
version = "0.27.2"
|
|
2480
2592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2481
|
-
checksum = "
|
|
2593
|
+
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
|
|
2482
2594
|
dependencies = [
|
|
2483
2595
|
"heck",
|
|
2484
2596
|
"proc-macro2",
|
|
2485
2597
|
"quote",
|
|
2486
|
-
"
|
|
2487
|
-
"syn 2.0.101",
|
|
2598
|
+
"syn 2.0.108",
|
|
2488
2599
|
]
|
|
2489
2600
|
|
|
2490
2601
|
[[package]]
|
|
@@ -2515,9 +2626,9 @@ dependencies = [
|
|
|
2515
2626
|
|
|
2516
2627
|
[[package]]
|
|
2517
2628
|
name = "syn"
|
|
2518
|
-
version = "2.0.
|
|
2629
|
+
version = "2.0.108"
|
|
2519
2630
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2520
|
-
checksum = "
|
|
2631
|
+
checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917"
|
|
2521
2632
|
dependencies = [
|
|
2522
2633
|
"proc-macro2",
|
|
2523
2634
|
"quote",
|
|
@@ -2535,15 +2646,21 @@ dependencies = [
|
|
|
2535
2646
|
|
|
2536
2647
|
[[package]]
|
|
2537
2648
|
name = "synstructure"
|
|
2538
|
-
version = "0.13.
|
|
2649
|
+
version = "0.13.2"
|
|
2539
2650
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2540
|
-
checksum = "
|
|
2651
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2541
2652
|
dependencies = [
|
|
2542
2653
|
"proc-macro2",
|
|
2543
2654
|
"quote",
|
|
2544
|
-
"syn 2.0.
|
|
2655
|
+
"syn 2.0.108",
|
|
2545
2656
|
]
|
|
2546
2657
|
|
|
2658
|
+
[[package]]
|
|
2659
|
+
name = "tagptr"
|
|
2660
|
+
version = "0.2.0"
|
|
2661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2662
|
+
checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
|
|
2663
|
+
|
|
2547
2664
|
[[package]]
|
|
2548
2665
|
name = "tar"
|
|
2549
2666
|
version = "0.4.44"
|
|
@@ -2557,15 +2674,15 @@ dependencies = [
|
|
|
2557
2674
|
|
|
2558
2675
|
[[package]]
|
|
2559
2676
|
name = "tempfile"
|
|
2560
|
-
version = "3.
|
|
2677
|
+
version = "3.23.0"
|
|
2561
2678
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2562
|
-
checksum = "
|
|
2679
|
+
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
|
2563
2680
|
dependencies = [
|
|
2564
2681
|
"fastrand",
|
|
2565
|
-
"getrandom 0.3.
|
|
2682
|
+
"getrandom 0.3.4",
|
|
2566
2683
|
"once_cell",
|
|
2567
2684
|
"rustix",
|
|
2568
|
-
"windows-sys 0.
|
|
2685
|
+
"windows-sys 0.61.2",
|
|
2569
2686
|
]
|
|
2570
2687
|
|
|
2571
2688
|
[[package]]
|
|
@@ -2612,7 +2729,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
2612
2729
|
dependencies = [
|
|
2613
2730
|
"proc-macro2",
|
|
2614
2731
|
"quote",
|
|
2615
|
-
"syn 2.0.
|
|
2732
|
+
"syn 2.0.108",
|
|
2616
2733
|
]
|
|
2617
2734
|
|
|
2618
2735
|
[[package]]
|
|
@@ -2623,24 +2740,23 @@ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
|
2623
2740
|
dependencies = [
|
|
2624
2741
|
"proc-macro2",
|
|
2625
2742
|
"quote",
|
|
2626
|
-
"syn 2.0.
|
|
2743
|
+
"syn 2.0.108",
|
|
2627
2744
|
]
|
|
2628
2745
|
|
|
2629
2746
|
[[package]]
|
|
2630
2747
|
name = "thread_local"
|
|
2631
|
-
version = "1.1.
|
|
2748
|
+
version = "1.1.9"
|
|
2632
2749
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2633
|
-
checksum = "
|
|
2750
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
2634
2751
|
dependencies = [
|
|
2635
2752
|
"cfg-if",
|
|
2636
|
-
"once_cell",
|
|
2637
2753
|
]
|
|
2638
2754
|
|
|
2639
2755
|
[[package]]
|
|
2640
2756
|
name = "tikv-jemalloc-sys"
|
|
2641
|
-
version = "0.6.
|
|
2757
|
+
version = "0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7"
|
|
2642
2758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2643
|
-
checksum = "
|
|
2759
|
+
checksum = "cd8aa5b2ab86a2cefa406d889139c162cbb230092f7d1d7cbc1716405d852a3b"
|
|
2644
2760
|
dependencies = [
|
|
2645
2761
|
"cc",
|
|
2646
2762
|
"libc",
|
|
@@ -2648,9 +2764,9 @@ dependencies = [
|
|
|
2648
2764
|
|
|
2649
2765
|
[[package]]
|
|
2650
2766
|
name = "tikv-jemallocator"
|
|
2651
|
-
version = "0.6.
|
|
2767
|
+
version = "0.6.1"
|
|
2652
2768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2653
|
-
checksum = "
|
|
2769
|
+
checksum = "0359b4327f954e0567e69fb191cf1436617748813819c94b8cd4a431422d053a"
|
|
2654
2770
|
dependencies = [
|
|
2655
2771
|
"libc",
|
|
2656
2772
|
"tikv-jemalloc-sys",
|
|
@@ -2658,9 +2774,9 @@ dependencies = [
|
|
|
2658
2774
|
|
|
2659
2775
|
[[package]]
|
|
2660
2776
|
name = "time"
|
|
2661
|
-
version = "0.3.
|
|
2777
|
+
version = "0.3.44"
|
|
2662
2778
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2663
|
-
checksum = "
|
|
2779
|
+
checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
|
|
2664
2780
|
dependencies = [
|
|
2665
2781
|
"deranged",
|
|
2666
2782
|
"itoa",
|
|
@@ -2673,15 +2789,15 @@ dependencies = [
|
|
|
2673
2789
|
|
|
2674
2790
|
[[package]]
|
|
2675
2791
|
name = "time-core"
|
|
2676
|
-
version = "0.1.
|
|
2792
|
+
version = "0.1.6"
|
|
2677
2793
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2678
|
-
checksum = "
|
|
2794
|
+
checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
|
|
2679
2795
|
|
|
2680
2796
|
[[package]]
|
|
2681
2797
|
name = "time-macros"
|
|
2682
|
-
version = "0.2.
|
|
2798
|
+
version = "0.2.24"
|
|
2683
2799
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2684
|
-
checksum = "
|
|
2800
|
+
checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
|
|
2685
2801
|
dependencies = [
|
|
2686
2802
|
"num-conv",
|
|
2687
2803
|
"time-core",
|
|
@@ -2689,9 +2805,9 @@ dependencies = [
|
|
|
2689
2805
|
|
|
2690
2806
|
[[package]]
|
|
2691
2807
|
name = "tinystr"
|
|
2692
|
-
version = "0.
|
|
2808
|
+
version = "0.8.1"
|
|
2693
2809
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2694
|
-
checksum = "
|
|
2810
|
+
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
|
|
2695
2811
|
dependencies = [
|
|
2696
2812
|
"displaydoc",
|
|
2697
2813
|
"zerovec",
|
|
@@ -2699,9 +2815,9 @@ dependencies = [
|
|
|
2699
2815
|
|
|
2700
2816
|
[[package]]
|
|
2701
2817
|
name = "tinyvec"
|
|
2702
|
-
version = "1.
|
|
2818
|
+
version = "1.10.0"
|
|
2703
2819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2704
|
-
checksum = "
|
|
2820
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
2705
2821
|
dependencies = [
|
|
2706
2822
|
"tinyvec_macros",
|
|
2707
2823
|
]
|
|
@@ -2714,38 +2830,35 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
2714
2830
|
|
|
2715
2831
|
[[package]]
|
|
2716
2832
|
name = "tokio"
|
|
2717
|
-
version = "1.
|
|
2833
|
+
version = "1.48.0"
|
|
2718
2834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2719
|
-
checksum = "
|
|
2835
|
+
checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
|
|
2720
2836
|
dependencies = [
|
|
2721
|
-
"backtrace",
|
|
2722
2837
|
"bytes",
|
|
2723
|
-
"io-uring",
|
|
2724
2838
|
"libc",
|
|
2725
2839
|
"mio",
|
|
2726
2840
|
"pin-project-lite",
|
|
2727
|
-
"
|
|
2728
|
-
"socket2 0.6.0",
|
|
2841
|
+
"socket2",
|
|
2729
2842
|
"tokio-macros",
|
|
2730
|
-
"windows-sys 0.
|
|
2843
|
+
"windows-sys 0.61.2",
|
|
2731
2844
|
]
|
|
2732
2845
|
|
|
2733
2846
|
[[package]]
|
|
2734
2847
|
name = "tokio-macros"
|
|
2735
|
-
version = "2.
|
|
2848
|
+
version = "2.6.0"
|
|
2736
2849
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2737
|
-
checksum = "
|
|
2850
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
2738
2851
|
dependencies = [
|
|
2739
2852
|
"proc-macro2",
|
|
2740
2853
|
"quote",
|
|
2741
|
-
"syn 2.0.
|
|
2854
|
+
"syn 2.0.108",
|
|
2742
2855
|
]
|
|
2743
2856
|
|
|
2744
2857
|
[[package]]
|
|
2745
2858
|
name = "tokio-rustls"
|
|
2746
|
-
version = "0.26.
|
|
2859
|
+
version = "0.26.4"
|
|
2747
2860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2748
|
-
checksum = "
|
|
2861
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
2749
2862
|
dependencies = [
|
|
2750
2863
|
"rustls",
|
|
2751
2864
|
"tokio",
|
|
@@ -2764,9 +2877,9 @@ dependencies = [
|
|
|
2764
2877
|
|
|
2765
2878
|
[[package]]
|
|
2766
2879
|
name = "tokio-util"
|
|
2767
|
-
version = "0.7.
|
|
2880
|
+
version = "0.7.16"
|
|
2768
2881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2769
|
-
checksum = "
|
|
2882
|
+
checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
|
|
2770
2883
|
dependencies = [
|
|
2771
2884
|
"bytes",
|
|
2772
2885
|
"futures-core",
|
|
@@ -2777,11 +2890,11 @@ dependencies = [
|
|
|
2777
2890
|
|
|
2778
2891
|
[[package]]
|
|
2779
2892
|
name = "toml"
|
|
2780
|
-
version = "0.9.
|
|
2893
|
+
version = "0.9.8"
|
|
2781
2894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2782
|
-
checksum = "
|
|
2895
|
+
checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8"
|
|
2783
2896
|
dependencies = [
|
|
2784
|
-
"
|
|
2897
|
+
"serde_core",
|
|
2785
2898
|
"serde_spanned",
|
|
2786
2899
|
"toml_datetime",
|
|
2787
2900
|
"toml_writer",
|
|
@@ -2789,18 +2902,18 @@ dependencies = [
|
|
|
2789
2902
|
|
|
2790
2903
|
[[package]]
|
|
2791
2904
|
name = "toml_datetime"
|
|
2792
|
-
version = "0.7.
|
|
2905
|
+
version = "0.7.3"
|
|
2793
2906
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2794
|
-
checksum = "
|
|
2907
|
+
checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
|
|
2795
2908
|
dependencies = [
|
|
2796
|
-
"
|
|
2909
|
+
"serde_core",
|
|
2797
2910
|
]
|
|
2798
2911
|
|
|
2799
2912
|
[[package]]
|
|
2800
2913
|
name = "toml_writer"
|
|
2801
|
-
version = "1.0.
|
|
2914
|
+
version = "1.0.4"
|
|
2802
2915
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2803
|
-
checksum = "
|
|
2916
|
+
checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2"
|
|
2804
2917
|
|
|
2805
2918
|
[[package]]
|
|
2806
2919
|
name = "tower"
|
|
@@ -2823,7 +2936,7 @@ version = "0.6.6"
|
|
|
2823
2936
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2824
2937
|
checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
|
|
2825
2938
|
dependencies = [
|
|
2826
|
-
"bitflags 2.
|
|
2939
|
+
"bitflags 2.10.0",
|
|
2827
2940
|
"bytes",
|
|
2828
2941
|
"futures-util",
|
|
2829
2942
|
"http",
|
|
@@ -2881,13 +2994,13 @@ dependencies = [
|
|
|
2881
2994
|
|
|
2882
2995
|
[[package]]
|
|
2883
2996
|
name = "tracing-attributes"
|
|
2884
|
-
version = "0.1.
|
|
2997
|
+
version = "0.1.30"
|
|
2885
2998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2886
|
-
checksum = "
|
|
2999
|
+
checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
|
|
2887
3000
|
dependencies = [
|
|
2888
3001
|
"proc-macro2",
|
|
2889
3002
|
"quote",
|
|
2890
|
-
"syn 2.0.
|
|
3003
|
+
"syn 2.0.108",
|
|
2891
3004
|
]
|
|
2892
3005
|
|
|
2893
3006
|
[[package]]
|
|
@@ -2957,14 +3070,22 @@ dependencies = [
|
|
|
2957
3070
|
|
|
2958
3071
|
[[package]]
|
|
2959
3072
|
name = "tree-sitter-bash"
|
|
2960
|
-
version = "0.
|
|
3073
|
+
version = "0.25.0"
|
|
2961
3074
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2962
|
-
checksum = "
|
|
3075
|
+
checksum = "871b0606e667e98a1237ebdc1b0d7056e0aebfdc3141d12b399865d4cb6ed8a6"
|
|
2963
3076
|
dependencies = [
|
|
2964
3077
|
"cc",
|
|
2965
3078
|
"tree-sitter-language",
|
|
2966
3079
|
]
|
|
2967
3080
|
|
|
3081
|
+
[[package]]
|
|
3082
|
+
name = "tree-sitter-iter"
|
|
3083
|
+
version = "0.0.2"
|
|
3084
|
+
dependencies = [
|
|
3085
|
+
"tree-sitter",
|
|
3086
|
+
"tree-sitter-yaml",
|
|
3087
|
+
]
|
|
3088
|
+
|
|
2968
3089
|
[[package]]
|
|
2969
3090
|
name = "tree-sitter-language"
|
|
2970
3091
|
version = "0.1.5"
|
|
@@ -2983,9 +3104,9 @@ dependencies = [
|
|
|
2983
3104
|
|
|
2984
3105
|
[[package]]
|
|
2985
3106
|
name = "tree-sitter-yaml"
|
|
2986
|
-
version = "0.7.
|
|
3107
|
+
version = "0.7.2"
|
|
2987
3108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2988
|
-
checksum = "
|
|
3109
|
+
checksum = "53c223db85f05e34794f065454843b0668ebc15d240ada63e2b5939f43ce7c97"
|
|
2989
3110
|
dependencies = [
|
|
2990
3111
|
"cc",
|
|
2991
3112
|
"tree-sitter-language",
|
|
@@ -2999,29 +3120,29 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
2999
3120
|
|
|
3000
3121
|
[[package]]
|
|
3001
3122
|
name = "typed-builder"
|
|
3002
|
-
version = "0.21.
|
|
3123
|
+
version = "0.21.2"
|
|
3003
3124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3004
|
-
checksum = "
|
|
3125
|
+
checksum = "fef81aec2ca29576f9f6ae8755108640d0a86dd3161b2e8bca6cfa554e98f77d"
|
|
3005
3126
|
dependencies = [
|
|
3006
3127
|
"typed-builder-macro",
|
|
3007
3128
|
]
|
|
3008
3129
|
|
|
3009
3130
|
[[package]]
|
|
3010
3131
|
name = "typed-builder-macro"
|
|
3011
|
-
version = "0.21.
|
|
3132
|
+
version = "0.21.2"
|
|
3012
3133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3013
|
-
checksum = "
|
|
3134
|
+
checksum = "1ecb9ecf7799210407c14a8cfdfe0173365780968dc57973ed082211958e0b18"
|
|
3014
3135
|
dependencies = [
|
|
3015
3136
|
"proc-macro2",
|
|
3016
3137
|
"quote",
|
|
3017
|
-
"syn 2.0.
|
|
3138
|
+
"syn 2.0.108",
|
|
3018
3139
|
]
|
|
3019
3140
|
|
|
3020
3141
|
[[package]]
|
|
3021
3142
|
name = "typenum"
|
|
3022
|
-
version = "1.
|
|
3143
|
+
version = "1.19.0"
|
|
3023
3144
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3024
|
-
checksum = "
|
|
3145
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
3025
3146
|
|
|
3026
3147
|
[[package]]
|
|
3027
3148
|
name = "ucd-trie"
|
|
@@ -3031,9 +3152,9 @@ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
|
|
|
3031
3152
|
|
|
3032
3153
|
[[package]]
|
|
3033
3154
|
name = "unicode-ident"
|
|
3034
|
-
version = "1.0.
|
|
3155
|
+
version = "1.0.20"
|
|
3035
3156
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3036
|
-
checksum = "
|
|
3157
|
+
checksum = "462eeb75aeb73aea900253ce739c8e18a67423fadf006037cd3ff27e82748a06"
|
|
3037
3158
|
|
|
3038
3159
|
[[package]]
|
|
3039
3160
|
name = "unicode-width"
|
|
@@ -3043,9 +3164,9 @@ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
|
3043
3164
|
|
|
3044
3165
|
[[package]]
|
|
3045
3166
|
name = "unicode-width"
|
|
3046
|
-
version = "0.2.
|
|
3167
|
+
version = "0.2.2"
|
|
3047
3168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3048
|
-
checksum = "
|
|
3169
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
3049
3170
|
|
|
3050
3171
|
[[package]]
|
|
3051
3172
|
name = "unit-prefix"
|
|
@@ -3077,9 +3198,9 @@ dependencies = [
|
|
|
3077
3198
|
|
|
3078
3199
|
[[package]]
|
|
3079
3200
|
name = "url"
|
|
3080
|
-
version = "2.5.
|
|
3201
|
+
version = "2.5.7"
|
|
3081
3202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3082
|
-
checksum = "
|
|
3203
|
+
checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
|
|
3083
3204
|
dependencies = [
|
|
3084
3205
|
"form_urlencoded",
|
|
3085
3206
|
"idna",
|
|
@@ -3087,12 +3208,6 @@ dependencies = [
|
|
|
3087
3208
|
"serde",
|
|
3088
3209
|
]
|
|
3089
3210
|
|
|
3090
|
-
[[package]]
|
|
3091
|
-
name = "utf16_iter"
|
|
3092
|
-
version = "1.0.5"
|
|
3093
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3094
|
-
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
3095
|
-
|
|
3096
3211
|
[[package]]
|
|
3097
3212
|
name = "utf8_iter"
|
|
3098
3213
|
version = "1.0.4"
|
|
@@ -3107,11 +3222,13 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
3107
3222
|
|
|
3108
3223
|
[[package]]
|
|
3109
3224
|
name = "uuid"
|
|
3110
|
-
version = "1.
|
|
3225
|
+
version = "1.18.1"
|
|
3111
3226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3112
|
-
checksum = "
|
|
3227
|
+
checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
|
|
3113
3228
|
dependencies = [
|
|
3114
|
-
"getrandom 0.3.
|
|
3229
|
+
"getrandom 0.3.4",
|
|
3230
|
+
"js-sys",
|
|
3231
|
+
"wasm-bindgen",
|
|
3115
3232
|
]
|
|
3116
3233
|
|
|
3117
3234
|
[[package]]
|
|
@@ -3145,35 +3262,23 @@ checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
|
|
|
3145
3262
|
|
|
3146
3263
|
[[package]]
|
|
3147
3264
|
name = "vt100"
|
|
3148
|
-
version = "0.
|
|
3265
|
+
version = "0.16.2"
|
|
3149
3266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3150
|
-
checksum = "
|
|
3267
|
+
checksum = "054ff75fb8fa83e609e685106df4faeffdf3a735d3c74ebce97ec557d5d36fd9"
|
|
3151
3268
|
dependencies = [
|
|
3152
3269
|
"itoa",
|
|
3153
|
-
"
|
|
3154
|
-
"unicode-width 0.1.14",
|
|
3270
|
+
"unicode-width 0.2.2",
|
|
3155
3271
|
"vte",
|
|
3156
3272
|
]
|
|
3157
3273
|
|
|
3158
3274
|
[[package]]
|
|
3159
3275
|
name = "vte"
|
|
3160
|
-
version = "0.
|
|
3276
|
+
version = "0.15.0"
|
|
3161
3277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3162
|
-
checksum = "
|
|
3278
|
+
checksum = "a5924018406ce0063cd67f8e008104968b74b563ee1b85dde3ed1f7cb87d3dbd"
|
|
3163
3279
|
dependencies = [
|
|
3164
3280
|
"arrayvec",
|
|
3165
|
-
"
|
|
3166
|
-
"vte_generate_state_changes",
|
|
3167
|
-
]
|
|
3168
|
-
|
|
3169
|
-
[[package]]
|
|
3170
|
-
name = "vte_generate_state_changes"
|
|
3171
|
-
version = "0.1.2"
|
|
3172
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3173
|
-
checksum = "2e369bee1b05d510a7b4ed645f5faa90619e05437111783ea5848f28d97d3c2e"
|
|
3174
|
-
dependencies = [
|
|
3175
|
-
"proc-macro2",
|
|
3176
|
-
"quote",
|
|
3281
|
+
"memchr",
|
|
3177
3282
|
]
|
|
3178
3283
|
|
|
3179
3284
|
[[package]]
|
|
@@ -3206,50 +3311,51 @@ dependencies = [
|
|
|
3206
3311
|
|
|
3207
3312
|
[[package]]
|
|
3208
3313
|
name = "wasi"
|
|
3209
|
-
version = "0.11.
|
|
3314
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3210
3315
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3211
|
-
checksum = "
|
|
3316
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3212
3317
|
|
|
3213
3318
|
[[package]]
|
|
3214
|
-
name = "
|
|
3215
|
-
version = "0.
|
|
3319
|
+
name = "wasip2"
|
|
3320
|
+
version = "1.0.1+wasi-0.2.4"
|
|
3216
3321
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3217
|
-
checksum = "
|
|
3322
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
3218
3323
|
dependencies = [
|
|
3219
|
-
"wit-bindgen
|
|
3324
|
+
"wit-bindgen",
|
|
3220
3325
|
]
|
|
3221
3326
|
|
|
3222
3327
|
[[package]]
|
|
3223
3328
|
name = "wasm-bindgen"
|
|
3224
|
-
version = "0.2.
|
|
3329
|
+
version = "0.2.104"
|
|
3225
3330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3226
|
-
checksum = "
|
|
3331
|
+
checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d"
|
|
3227
3332
|
dependencies = [
|
|
3228
3333
|
"cfg-if",
|
|
3229
3334
|
"once_cell",
|
|
3230
3335
|
"rustversion",
|
|
3231
3336
|
"wasm-bindgen-macro",
|
|
3337
|
+
"wasm-bindgen-shared",
|
|
3232
3338
|
]
|
|
3233
3339
|
|
|
3234
3340
|
[[package]]
|
|
3235
3341
|
name = "wasm-bindgen-backend"
|
|
3236
|
-
version = "0.2.
|
|
3342
|
+
version = "0.2.104"
|
|
3237
3343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3238
|
-
checksum = "
|
|
3344
|
+
checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19"
|
|
3239
3345
|
dependencies = [
|
|
3240
3346
|
"bumpalo",
|
|
3241
3347
|
"log",
|
|
3242
3348
|
"proc-macro2",
|
|
3243
3349
|
"quote",
|
|
3244
|
-
"syn 2.0.
|
|
3350
|
+
"syn 2.0.108",
|
|
3245
3351
|
"wasm-bindgen-shared",
|
|
3246
3352
|
]
|
|
3247
3353
|
|
|
3248
3354
|
[[package]]
|
|
3249
3355
|
name = "wasm-bindgen-futures"
|
|
3250
|
-
version = "0.4.
|
|
3356
|
+
version = "0.4.54"
|
|
3251
3357
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3252
|
-
checksum = "
|
|
3358
|
+
checksum = "7e038d41e478cc73bae0ff9b36c60cff1c98b8f38f8d7e8061e79ee63608ac5c"
|
|
3253
3359
|
dependencies = [
|
|
3254
3360
|
"cfg-if",
|
|
3255
3361
|
"js-sys",
|
|
@@ -3260,9 +3366,9 @@ dependencies = [
|
|
|
3260
3366
|
|
|
3261
3367
|
[[package]]
|
|
3262
3368
|
name = "wasm-bindgen-macro"
|
|
3263
|
-
version = "0.2.
|
|
3369
|
+
version = "0.2.104"
|
|
3264
3370
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3265
|
-
checksum = "
|
|
3371
|
+
checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119"
|
|
3266
3372
|
dependencies = [
|
|
3267
3373
|
"quote",
|
|
3268
3374
|
"wasm-bindgen-macro-support",
|
|
@@ -3270,31 +3376,31 @@ dependencies = [
|
|
|
3270
3376
|
|
|
3271
3377
|
[[package]]
|
|
3272
3378
|
name = "wasm-bindgen-macro-support"
|
|
3273
|
-
version = "0.2.
|
|
3379
|
+
version = "0.2.104"
|
|
3274
3380
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3275
|
-
checksum = "
|
|
3381
|
+
checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7"
|
|
3276
3382
|
dependencies = [
|
|
3277
3383
|
"proc-macro2",
|
|
3278
3384
|
"quote",
|
|
3279
|
-
"syn 2.0.
|
|
3385
|
+
"syn 2.0.108",
|
|
3280
3386
|
"wasm-bindgen-backend",
|
|
3281
3387
|
"wasm-bindgen-shared",
|
|
3282
3388
|
]
|
|
3283
3389
|
|
|
3284
3390
|
[[package]]
|
|
3285
3391
|
name = "wasm-bindgen-shared"
|
|
3286
|
-
version = "0.2.
|
|
3392
|
+
version = "0.2.104"
|
|
3287
3393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3288
|
-
checksum = "
|
|
3394
|
+
checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1"
|
|
3289
3395
|
dependencies = [
|
|
3290
3396
|
"unicode-ident",
|
|
3291
3397
|
]
|
|
3292
3398
|
|
|
3293
3399
|
[[package]]
|
|
3294
3400
|
name = "web-sys"
|
|
3295
|
-
version = "0.3.
|
|
3401
|
+
version = "0.3.81"
|
|
3296
3402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3297
|
-
checksum = "
|
|
3403
|
+
checksum = "9367c417a924a74cae129e6a2ae3b47fabb1f8995595ab474029da749a8be120"
|
|
3298
3404
|
dependencies = [
|
|
3299
3405
|
"js-sys",
|
|
3300
3406
|
"wasm-bindgen",
|
|
@@ -3312,58 +3418,48 @@ dependencies = [
|
|
|
3312
3418
|
|
|
3313
3419
|
[[package]]
|
|
3314
3420
|
name = "webpki-roots"
|
|
3315
|
-
version = "0.
|
|
3316
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3317
|
-
checksum = "29aad86cec885cafd03e8305fd727c418e970a521322c91688414d5b8efba16b"
|
|
3318
|
-
dependencies = [
|
|
3319
|
-
"rustls-pki-types",
|
|
3320
|
-
]
|
|
3321
|
-
|
|
3322
|
-
[[package]]
|
|
3323
|
-
name = "webpki-roots"
|
|
3324
|
-
version = "1.0.0"
|
|
3421
|
+
version = "1.0.3"
|
|
3325
3422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3326
|
-
checksum = "
|
|
3423
|
+
checksum = "32b130c0d2d49f8b6889abc456e795e82525204f27c42cf767cf0d7734e089b8"
|
|
3327
3424
|
dependencies = [
|
|
3328
3425
|
"rustls-pki-types",
|
|
3329
3426
|
]
|
|
3330
3427
|
|
|
3331
3428
|
[[package]]
|
|
3332
3429
|
name = "winapi-util"
|
|
3333
|
-
version = "0.1.
|
|
3430
|
+
version = "0.1.11"
|
|
3334
3431
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3335
|
-
checksum = "
|
|
3432
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
3336
3433
|
dependencies = [
|
|
3337
|
-
"windows-sys 0.
|
|
3434
|
+
"windows-sys 0.61.2",
|
|
3338
3435
|
]
|
|
3339
3436
|
|
|
3340
3437
|
[[package]]
|
|
3341
3438
|
name = "windows"
|
|
3342
|
-
version = "0.
|
|
3439
|
+
version = "0.62.2"
|
|
3343
3440
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3344
|
-
checksum = "
|
|
3441
|
+
checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
|
|
3345
3442
|
dependencies = [
|
|
3346
3443
|
"windows-collections",
|
|
3347
3444
|
"windows-core",
|
|
3348
3445
|
"windows-future",
|
|
3349
|
-
"windows-link",
|
|
3350
3446
|
"windows-numerics",
|
|
3351
3447
|
]
|
|
3352
3448
|
|
|
3353
3449
|
[[package]]
|
|
3354
3450
|
name = "windows-collections"
|
|
3355
|
-
version = "0.2
|
|
3451
|
+
version = "0.3.2"
|
|
3356
3452
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3357
|
-
checksum = "
|
|
3453
|
+
checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
|
|
3358
3454
|
dependencies = [
|
|
3359
3455
|
"windows-core",
|
|
3360
3456
|
]
|
|
3361
3457
|
|
|
3362
3458
|
[[package]]
|
|
3363
3459
|
name = "windows-core"
|
|
3364
|
-
version = "0.
|
|
3460
|
+
version = "0.62.2"
|
|
3365
3461
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3366
|
-
checksum = "
|
|
3462
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
3367
3463
|
dependencies = [
|
|
3368
3464
|
"windows-implement",
|
|
3369
3465
|
"windows-interface",
|
|
@@ -3374,47 +3470,48 @@ dependencies = [
|
|
|
3374
3470
|
|
|
3375
3471
|
[[package]]
|
|
3376
3472
|
name = "windows-future"
|
|
3377
|
-
version = "0.2
|
|
3473
|
+
version = "0.3.2"
|
|
3378
3474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3379
|
-
checksum = "
|
|
3475
|
+
checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
|
|
3380
3476
|
dependencies = [
|
|
3381
3477
|
"windows-core",
|
|
3382
3478
|
"windows-link",
|
|
3479
|
+
"windows-threading",
|
|
3383
3480
|
]
|
|
3384
3481
|
|
|
3385
3482
|
[[package]]
|
|
3386
3483
|
name = "windows-implement"
|
|
3387
|
-
version = "0.60.
|
|
3484
|
+
version = "0.60.2"
|
|
3388
3485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3389
|
-
checksum = "
|
|
3486
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
3390
3487
|
dependencies = [
|
|
3391
3488
|
"proc-macro2",
|
|
3392
3489
|
"quote",
|
|
3393
|
-
"syn 2.0.
|
|
3490
|
+
"syn 2.0.108",
|
|
3394
3491
|
]
|
|
3395
3492
|
|
|
3396
3493
|
[[package]]
|
|
3397
3494
|
name = "windows-interface"
|
|
3398
|
-
version = "0.59.
|
|
3495
|
+
version = "0.59.3"
|
|
3399
3496
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3400
|
-
checksum = "
|
|
3497
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
3401
3498
|
dependencies = [
|
|
3402
3499
|
"proc-macro2",
|
|
3403
3500
|
"quote",
|
|
3404
|
-
"syn 2.0.
|
|
3501
|
+
"syn 2.0.108",
|
|
3405
3502
|
]
|
|
3406
3503
|
|
|
3407
3504
|
[[package]]
|
|
3408
3505
|
name = "windows-link"
|
|
3409
|
-
version = "0.
|
|
3506
|
+
version = "0.2.1"
|
|
3410
3507
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3411
|
-
checksum = "
|
|
3508
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3412
3509
|
|
|
3413
3510
|
[[package]]
|
|
3414
3511
|
name = "windows-numerics"
|
|
3415
|
-
version = "0.
|
|
3512
|
+
version = "0.3.1"
|
|
3416
3513
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3417
|
-
checksum = "
|
|
3514
|
+
checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
|
|
3418
3515
|
dependencies = [
|
|
3419
3516
|
"windows-core",
|
|
3420
3517
|
"windows-link",
|
|
@@ -3422,18 +3519,18 @@ dependencies = [
|
|
|
3422
3519
|
|
|
3423
3520
|
[[package]]
|
|
3424
3521
|
name = "windows-result"
|
|
3425
|
-
version = "0.
|
|
3522
|
+
version = "0.4.1"
|
|
3426
3523
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3427
|
-
checksum = "
|
|
3524
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
3428
3525
|
dependencies = [
|
|
3429
3526
|
"windows-link",
|
|
3430
3527
|
]
|
|
3431
3528
|
|
|
3432
3529
|
[[package]]
|
|
3433
3530
|
name = "windows-strings"
|
|
3434
|
-
version = "0.
|
|
3531
|
+
version = "0.5.1"
|
|
3435
3532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3436
|
-
checksum = "
|
|
3533
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
3437
3534
|
dependencies = [
|
|
3438
3535
|
"windows-link",
|
|
3439
3536
|
]
|
|
@@ -3462,7 +3559,16 @@ version = "0.60.2"
|
|
|
3462
3559
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3463
3560
|
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
3464
3561
|
dependencies = [
|
|
3465
|
-
"windows-targets 0.53.
|
|
3562
|
+
"windows-targets 0.53.5",
|
|
3563
|
+
]
|
|
3564
|
+
|
|
3565
|
+
[[package]]
|
|
3566
|
+
name = "windows-sys"
|
|
3567
|
+
version = "0.61.2"
|
|
3568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3569
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
3570
|
+
dependencies = [
|
|
3571
|
+
"windows-link",
|
|
3466
3572
|
]
|
|
3467
3573
|
|
|
3468
3574
|
[[package]]
|
|
@@ -3483,18 +3589,28 @@ dependencies = [
|
|
|
3483
3589
|
|
|
3484
3590
|
[[package]]
|
|
3485
3591
|
name = "windows-targets"
|
|
3486
|
-
version = "0.53.
|
|
3592
|
+
version = "0.53.5"
|
|
3487
3593
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3488
|
-
checksum = "
|
|
3594
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
3489
3595
|
dependencies = [
|
|
3490
|
-
"
|
|
3491
|
-
"
|
|
3492
|
-
"
|
|
3493
|
-
"
|
|
3494
|
-
"
|
|
3495
|
-
"
|
|
3496
|
-
"
|
|
3497
|
-
"
|
|
3596
|
+
"windows-link",
|
|
3597
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
3598
|
+
"windows_aarch64_msvc 0.53.1",
|
|
3599
|
+
"windows_i686_gnu 0.53.1",
|
|
3600
|
+
"windows_i686_gnullvm 0.53.1",
|
|
3601
|
+
"windows_i686_msvc 0.53.1",
|
|
3602
|
+
"windows_x86_64_gnu 0.53.1",
|
|
3603
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
3604
|
+
"windows_x86_64_msvc 0.53.1",
|
|
3605
|
+
]
|
|
3606
|
+
|
|
3607
|
+
[[package]]
|
|
3608
|
+
name = "windows-threading"
|
|
3609
|
+
version = "0.2.1"
|
|
3610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3611
|
+
checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
|
|
3612
|
+
dependencies = [
|
|
3613
|
+
"windows-link",
|
|
3498
3614
|
]
|
|
3499
3615
|
|
|
3500
3616
|
[[package]]
|
|
@@ -3505,9 +3621,9 @@ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
|
3505
3621
|
|
|
3506
3622
|
[[package]]
|
|
3507
3623
|
name = "windows_aarch64_gnullvm"
|
|
3508
|
-
version = "0.53.
|
|
3624
|
+
version = "0.53.1"
|
|
3509
3625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3510
|
-
checksum = "
|
|
3626
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
3511
3627
|
|
|
3512
3628
|
[[package]]
|
|
3513
3629
|
name = "windows_aarch64_msvc"
|
|
@@ -3517,9 +3633,9 @@ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
|
3517
3633
|
|
|
3518
3634
|
[[package]]
|
|
3519
3635
|
name = "windows_aarch64_msvc"
|
|
3520
|
-
version = "0.53.
|
|
3636
|
+
version = "0.53.1"
|
|
3521
3637
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3522
|
-
checksum = "
|
|
3638
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
3523
3639
|
|
|
3524
3640
|
[[package]]
|
|
3525
3641
|
name = "windows_i686_gnu"
|
|
@@ -3529,9 +3645,9 @@ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
|
3529
3645
|
|
|
3530
3646
|
[[package]]
|
|
3531
3647
|
name = "windows_i686_gnu"
|
|
3532
|
-
version = "0.53.
|
|
3648
|
+
version = "0.53.1"
|
|
3533
3649
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3534
|
-
checksum = "
|
|
3650
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
3535
3651
|
|
|
3536
3652
|
[[package]]
|
|
3537
3653
|
name = "windows_i686_gnullvm"
|
|
@@ -3541,9 +3657,9 @@ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
|
3541
3657
|
|
|
3542
3658
|
[[package]]
|
|
3543
3659
|
name = "windows_i686_gnullvm"
|
|
3544
|
-
version = "0.53.
|
|
3660
|
+
version = "0.53.1"
|
|
3545
3661
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3546
|
-
checksum = "
|
|
3662
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
3547
3663
|
|
|
3548
3664
|
[[package]]
|
|
3549
3665
|
name = "windows_i686_msvc"
|
|
@@ -3553,9 +3669,9 @@ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
|
3553
3669
|
|
|
3554
3670
|
[[package]]
|
|
3555
3671
|
name = "windows_i686_msvc"
|
|
3556
|
-
version = "0.53.
|
|
3672
|
+
version = "0.53.1"
|
|
3557
3673
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3558
|
-
checksum = "
|
|
3674
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
3559
3675
|
|
|
3560
3676
|
[[package]]
|
|
3561
3677
|
name = "windows_x86_64_gnu"
|
|
@@ -3565,9 +3681,9 @@ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
|
3565
3681
|
|
|
3566
3682
|
[[package]]
|
|
3567
3683
|
name = "windows_x86_64_gnu"
|
|
3568
|
-
version = "0.53.
|
|
3684
|
+
version = "0.53.1"
|
|
3569
3685
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3570
|
-
checksum = "
|
|
3686
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
3571
3687
|
|
|
3572
3688
|
[[package]]
|
|
3573
3689
|
name = "windows_x86_64_gnullvm"
|
|
@@ -3577,9 +3693,9 @@ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
|
3577
3693
|
|
|
3578
3694
|
[[package]]
|
|
3579
3695
|
name = "windows_x86_64_gnullvm"
|
|
3580
|
-
version = "0.53.
|
|
3696
|
+
version = "0.53.1"
|
|
3581
3697
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3582
|
-
checksum = "
|
|
3698
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
3583
3699
|
|
|
3584
3700
|
[[package]]
|
|
3585
3701
|
name = "windows_x86_64_msvc"
|
|
@@ -3589,36 +3705,27 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
|
3589
3705
|
|
|
3590
3706
|
[[package]]
|
|
3591
3707
|
name = "windows_x86_64_msvc"
|
|
3592
|
-
version = "0.53.
|
|
3708
|
+
version = "0.53.1"
|
|
3593
3709
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3594
|
-
checksum = "
|
|
3710
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
3595
3711
|
|
|
3596
3712
|
[[package]]
|
|
3597
|
-
name = "wit-bindgen
|
|
3598
|
-
version = "0.
|
|
3713
|
+
name = "wit-bindgen"
|
|
3714
|
+
version = "0.46.0"
|
|
3599
3715
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3600
|
-
checksum = "
|
|
3601
|
-
dependencies = [
|
|
3602
|
-
"bitflags 2.9.0",
|
|
3603
|
-
]
|
|
3604
|
-
|
|
3605
|
-
[[package]]
|
|
3606
|
-
name = "write16"
|
|
3607
|
-
version = "1.0.0"
|
|
3608
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3609
|
-
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
|
3716
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
3610
3717
|
|
|
3611
3718
|
[[package]]
|
|
3612
3719
|
name = "writeable"
|
|
3613
|
-
version = "0.
|
|
3720
|
+
version = "0.6.1"
|
|
3614
3721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3615
|
-
checksum = "
|
|
3722
|
+
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
|
|
3616
3723
|
|
|
3617
3724
|
[[package]]
|
|
3618
3725
|
name = "xattr"
|
|
3619
|
-
version = "1.
|
|
3726
|
+
version = "1.6.1"
|
|
3620
3727
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3621
|
-
checksum = "
|
|
3728
|
+
checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
|
|
3622
3729
|
dependencies = [
|
|
3623
3730
|
"libc",
|
|
3624
3731
|
"rustix",
|
|
@@ -3632,7 +3739,7 @@ checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
|
|
|
3632
3739
|
|
|
3633
3740
|
[[package]]
|
|
3634
3741
|
name = "yamlpatch"
|
|
3635
|
-
version = "0.
|
|
3742
|
+
version = "0.4.0"
|
|
3636
3743
|
dependencies = [
|
|
3637
3744
|
"indexmap",
|
|
3638
3745
|
"insta",
|
|
@@ -3648,13 +3755,15 @@ dependencies = [
|
|
|
3648
3755
|
|
|
3649
3756
|
[[package]]
|
|
3650
3757
|
name = "yamlpath"
|
|
3651
|
-
version = "0.
|
|
3758
|
+
version = "0.27.0"
|
|
3652
3759
|
dependencies = [
|
|
3653
3760
|
"line-index",
|
|
3761
|
+
"self_cell",
|
|
3654
3762
|
"serde",
|
|
3655
3763
|
"serde_yaml",
|
|
3656
3764
|
"thiserror 2.0.17",
|
|
3657
3765
|
"tree-sitter",
|
|
3766
|
+
"tree-sitter-iter",
|
|
3658
3767
|
"tree-sitter-yaml",
|
|
3659
3768
|
]
|
|
3660
3769
|
|
|
@@ -3666,9 +3775,9 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
|
3666
3775
|
|
|
3667
3776
|
[[package]]
|
|
3668
3777
|
name = "yoke"
|
|
3669
|
-
version = "0.
|
|
3778
|
+
version = "0.8.0"
|
|
3670
3779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3671
|
-
checksum = "
|
|
3780
|
+
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
|
|
3672
3781
|
dependencies = [
|
|
3673
3782
|
"serde",
|
|
3674
3783
|
"stable_deref_trait",
|
|
@@ -3678,54 +3787,34 @@ dependencies = [
|
|
|
3678
3787
|
|
|
3679
3788
|
[[package]]
|
|
3680
3789
|
name = "yoke-derive"
|
|
3681
|
-
version = "0.
|
|
3790
|
+
version = "0.8.0"
|
|
3682
3791
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3683
|
-
checksum = "
|
|
3792
|
+
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
|
3684
3793
|
dependencies = [
|
|
3685
3794
|
"proc-macro2",
|
|
3686
3795
|
"quote",
|
|
3687
|
-
"syn 2.0.
|
|
3796
|
+
"syn 2.0.108",
|
|
3688
3797
|
"synstructure",
|
|
3689
3798
|
]
|
|
3690
3799
|
|
|
3691
3800
|
[[package]]
|
|
3692
3801
|
name = "zerocopy"
|
|
3693
|
-
version = "0.
|
|
3694
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3695
|
-
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
3696
|
-
dependencies = [
|
|
3697
|
-
"zerocopy-derive 0.7.35",
|
|
3698
|
-
]
|
|
3699
|
-
|
|
3700
|
-
[[package]]
|
|
3701
|
-
name = "zerocopy"
|
|
3702
|
-
version = "0.8.25"
|
|
3703
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3704
|
-
checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
|
|
3705
|
-
dependencies = [
|
|
3706
|
-
"zerocopy-derive 0.8.25",
|
|
3707
|
-
]
|
|
3708
|
-
|
|
3709
|
-
[[package]]
|
|
3710
|
-
name = "zerocopy-derive"
|
|
3711
|
-
version = "0.7.35"
|
|
3802
|
+
version = "0.8.27"
|
|
3712
3803
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3713
|
-
checksum = "
|
|
3804
|
+
checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
|
|
3714
3805
|
dependencies = [
|
|
3715
|
-
"
|
|
3716
|
-
"quote",
|
|
3717
|
-
"syn 2.0.101",
|
|
3806
|
+
"zerocopy-derive",
|
|
3718
3807
|
]
|
|
3719
3808
|
|
|
3720
3809
|
[[package]]
|
|
3721
3810
|
name = "zerocopy-derive"
|
|
3722
|
-
version = "0.8.
|
|
3811
|
+
version = "0.8.27"
|
|
3723
3812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3724
|
-
checksum = "
|
|
3813
|
+
checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
|
|
3725
3814
|
dependencies = [
|
|
3726
3815
|
"proc-macro2",
|
|
3727
3816
|
"quote",
|
|
3728
|
-
"syn 2.0.
|
|
3817
|
+
"syn 2.0.108",
|
|
3729
3818
|
]
|
|
3730
3819
|
|
|
3731
3820
|
[[package]]
|
|
@@ -3745,21 +3834,32 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
|
3745
3834
|
dependencies = [
|
|
3746
3835
|
"proc-macro2",
|
|
3747
3836
|
"quote",
|
|
3748
|
-
"syn 2.0.
|
|
3837
|
+
"syn 2.0.108",
|
|
3749
3838
|
"synstructure",
|
|
3750
3839
|
]
|
|
3751
3840
|
|
|
3752
3841
|
[[package]]
|
|
3753
3842
|
name = "zeroize"
|
|
3754
|
-
version = "1.8.
|
|
3843
|
+
version = "1.8.2"
|
|
3755
3844
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3756
|
-
checksum = "
|
|
3845
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
3846
|
+
|
|
3847
|
+
[[package]]
|
|
3848
|
+
name = "zerotrie"
|
|
3849
|
+
version = "0.2.2"
|
|
3850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3851
|
+
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
|
|
3852
|
+
dependencies = [
|
|
3853
|
+
"displaydoc",
|
|
3854
|
+
"yoke",
|
|
3855
|
+
"zerofrom",
|
|
3856
|
+
]
|
|
3757
3857
|
|
|
3758
3858
|
[[package]]
|
|
3759
3859
|
name = "zerovec"
|
|
3760
|
-
version = "0.
|
|
3860
|
+
version = "0.11.4"
|
|
3761
3861
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3762
|
-
checksum = "
|
|
3862
|
+
checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
|
|
3763
3863
|
dependencies = [
|
|
3764
3864
|
"yoke",
|
|
3765
3865
|
"zerofrom",
|
|
@@ -3768,23 +3868,24 @@ dependencies = [
|
|
|
3768
3868
|
|
|
3769
3869
|
[[package]]
|
|
3770
3870
|
name = "zerovec-derive"
|
|
3771
|
-
version = "0.
|
|
3871
|
+
version = "0.11.1"
|
|
3772
3872
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3773
|
-
checksum = "
|
|
3873
|
+
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
|
3774
3874
|
dependencies = [
|
|
3775
3875
|
"proc-macro2",
|
|
3776
3876
|
"quote",
|
|
3777
|
-
"syn 2.0.
|
|
3877
|
+
"syn 2.0.108",
|
|
3778
3878
|
]
|
|
3779
3879
|
|
|
3780
3880
|
[[package]]
|
|
3781
3881
|
name = "zizmor"
|
|
3782
|
-
version = "1.
|
|
3882
|
+
version = "1.16.1"
|
|
3783
3883
|
dependencies = [
|
|
3784
3884
|
"annotate-snippets",
|
|
3785
3885
|
"anstream",
|
|
3786
3886
|
"anyhow",
|
|
3787
3887
|
"assert_cmd",
|
|
3888
|
+
"async-trait",
|
|
3788
3889
|
"camino",
|
|
3789
3890
|
"clap",
|
|
3790
3891
|
"clap-verbosity-flag",
|
|
@@ -3796,6 +3897,7 @@ dependencies = [
|
|
|
3796
3897
|
"fst",
|
|
3797
3898
|
"github-actions-expressions",
|
|
3798
3899
|
"github-actions-models",
|
|
3900
|
+
"http",
|
|
3799
3901
|
"http-cache-reqwest",
|
|
3800
3902
|
"human-panic",
|
|
3801
3903
|
"ignore",
|