zizmor 1.9.0__tar.gz → 1.11.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of zizmor might be problematic. Click here for more details.
- {zizmor-1.9.0 → zizmor-1.11.0}/Cargo.lock +277 -110
- {zizmor-1.9.0 → zizmor-1.11.0}/Cargo.toml +29 -19
- {zizmor-1.9.0 → zizmor-1.11.0}/PKG-INFO +23 -2
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-expressions/Cargo.toml +4 -1
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-expressions/src/context.rs +129 -74
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-expressions/src/expr.pest +2 -2
- zizmor-1.11.0/crates/github-actions-expressions/src/lib.rs +1390 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/Cargo.toml +5 -1
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/src/action.rs +5 -5
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/src/common/expr.rs +15 -7
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/src/common.rs +18 -4
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/src/workflow/event.rs +25 -4
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/src/workflow/job.rs +7 -7
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/homebrew-core-dispatch-rebottle.yml +9 -9
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/test_workflow.rs +0 -2
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/yamlpath/Cargo.toml +5 -1
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/yamlpath/src/lib.rs +377 -31
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/yamlpath/tests/integration_test.rs +16 -4
- zizmor-1.11.0/crates/yamlpath/tests/testcases/exact-features.yml +88 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/yamlpath/tests/testcases/flow.yml +21 -2
- zizmor-1.11.0/crates/yamlpath/tests/testcases/key-only-features.yml +32 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/Cargo.toml +10 -3
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/README.md +22 -1
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/data/context-capabilities.csv +23 -12
- zizmor-1.11.0/crates/zizmor/src/audit/anonymous_definition.rs +65 -0
- zizmor-1.11.0/crates/zizmor/src/audit/artipacked.rs +353 -0
- zizmor-1.11.0/crates/zizmor/src/audit/bot_conditions.rs +896 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/audit/cache_poisoning.rs +3 -1
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/audit/dangerous_triggers.rs +1 -1
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/audit/excessive_permissions.rs +3 -3
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/audit/forbidden_uses.rs +1 -1
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/audit/github_env.rs +15 -10
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/audit/hardcoded_container_credentials.rs +2 -3
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/audit/impostor_commit.rs +2 -2
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/audit/insecure_commands.rs +6 -6
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/audit/known_vulnerable_actions.rs +1 -1
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/audit/mod.rs +9 -8
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/audit/obfuscation.rs +40 -10
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/audit/overprovisioned_secrets.rs +24 -14
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/audit/ref_confusion.rs +3 -2
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/audit/secrets_inherit.rs +4 -1
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/audit/self_hosted_runner.rs +2 -3
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/audit/stale_action_refs.rs +2 -2
- zizmor-1.11.0/crates/zizmor/src/audit/template_injection.rs +1097 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/audit/unpinned_images.rs +5 -2
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/audit/unpinned_uses.rs +1 -1
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/audit/unredacted_secrets.rs +9 -7
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/audit/unsound_contains.rs +24 -15
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/audit/use_trusted_publishing.rs +63 -54
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/data/github-action.json +695 -695
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/data/github-workflow.json +1742 -1715
- zizmor-1.11.0/crates/zizmor/src/finding/location.rs +702 -0
- zizmor-1.11.0/crates/zizmor/src/finding.rs +295 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/github_api.rs +1 -0
- zizmor-1.11.0/crates/zizmor/src/lsp.rs +278 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/main.rs +91 -51
- zizmor-1.11.0/crates/zizmor/src/models/action.rs +233 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/models/coordinate.rs +75 -78
- zizmor-1.11.0/crates/zizmor/src/models/inputs.rs +40 -0
- zizmor-1.9.0/crates/zizmor/src/models.rs → zizmor-1.11.0/crates/zizmor/src/models/workflow.rs +224 -365
- zizmor-1.11.0/crates/zizmor/src/models.rs +63 -0
- zizmor-1.11.0/crates/zizmor/src/output/fix.rs +141 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/output/github.rs +1 -4
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/output/mod.rs +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/output/plain.rs +17 -2
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/output/sarif.rs +16 -15
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/registry.rs +115 -20
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/utils.rs +392 -26
- zizmor-1.11.0/crates/zizmor/src/yaml_patch/mod.rs +3328 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/acceptance.rs +15 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/e2e.rs +29 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshot.rs +69 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__gha_hazmat.snap +79 -61
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_input_not_strict-2.snap +7 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_input_not_strict.snap +7 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-10.snap +3 -4
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-2.snap +3 -4
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-3.snap +3 -4
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-4.snap +3 -4
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-5.snap +3 -4
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-6.snap +3 -4
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-7.snap +3 -4
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-8.snap +3 -4
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs-9.snap +3 -4
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_inputs.snap +3 -4
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_569.snap +8 -8
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_726.snap +7 -7
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__menagerie-2.snap +6 -6
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__e2e__menagerie.snap +14 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__e2e__pr_960_backstop.snap +11 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__anonymous_definition-2.snap +28 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__anonymous_definition.snap +28 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__artipacked-2.snap +5 -4
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__artipacked-3.snap +10 -8
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__artipacked-4.snap +19 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__artipacked-5.snap +29 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__artipacked.snap +5 -4
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__bot_conditions.snap +150 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-10.snap +6 -6
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-11.snap +13 -13
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-12.snap +2 -2
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-13.snap +2 -2
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-15.snap +8 -8
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-2.snap +2 -2
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-3.snap +4 -4
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-4.snap +5 -5
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-5.snap +6 -6
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-8.snap +2 -2
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-9.snap +6 -6
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-10.snap +7 -7
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-11.snap +19 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-12.snap +12 -11
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-2.snap +3 -3
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-3.snap +8 -8
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-4.snap +3 -3
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-5.snap +3 -3
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-7.snap +19 -17
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-8.snap +7 -7
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-2.snap +7 -7
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-3.snap +3 -3
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-4.snap +5 -5
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-5.snap +5 -6
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses-6.snap +3 -4
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__github_env-2.snap +5 -5
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__github_env-3.snap +5 -5
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__github_output.snap +2 -2
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__insecure_commands-2.snap +3 -3
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__insecure_commands-4.snap +5 -5
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__insecure_commands.snap +5 -5
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__obfuscation-2.snap +13 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__obfuscation.snap +62 -62
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__overprovisioned_secrets.snap +5 -5
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__ref_confusion-2.snap +3 -3
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__ref_confusion.snap +2 -2
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__secrets_inherit.snap +16 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-3.snap +7 -7
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-4.snap +8 -8
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-5.snap +7 -7
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-6.snap +9 -9
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted.snap +3 -3
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__stale_action_refs.snap +3 -3
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-11.snap +18 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-12.snap +18 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-13.snap +127 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-14.snap +56 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-15.snap +29 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-2.snap +26 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-4.snap +16 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-5.snap +38 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-6.snap +15 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-7.snap +2 -1
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-8.snap +61 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection.snap +5 -6
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-composite-config-2.snap +7 -7
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-composite-config.snap +7 -7
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-default-config.snap +5 -5
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-empty-config.snap +13 -13
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-hash-pin-everything-config.snap +13 -13
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned-uses-ref-pin-everything-config.snap +3 -3
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_images.snap +13 -13
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-10.snap +4 -5
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-11.snap +4 -5
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-12.snap +4 -5
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-2.snap +9 -9
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-5.snap +6 -6
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-6.snap +4 -5
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-7.snap +4 -5
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-8.snap +4 -5
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-9.snap +4 -5
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses.snap +9 -9
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unredacted_secrets.snap +5 -5
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unsound_contains.snap +11 -12
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__use_trusted_publishing-2.snap +16 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__use_trusted_publishing.snap +16 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/test-data/anonymous-definition.yml +20 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/test-data/artipacked/demo-action/action.yml +15 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/artipacked/issue-447-repro.yml +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/artipacked.yml +4 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/test-data/bot-conditions.yml +60 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-disabled-by-default.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-enabled-by-default.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-not-configurable.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-opt-in-boolean-toggle.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-opt-in-boolish-toggle.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-opt-in-expression.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-opt-in-multi-value-toggle.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/caching-opt-out.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/issue-343-repro.yml +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/issue-378-repro.yml +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/issue-642-repro.yml +2 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/no-cache-aware-steps.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/publisher-step.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/workflow-release-branch-trigger.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/cache-poisoning/workflow-tag-trigger.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/cache-poisoning.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/e2e-menagerie/.github/workflows/another-dummy.yml +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/e2e-menagerie/.github/workflows/dummy.yml +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/e2e-menagerie/.github/workflows/ignored.yaml +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/issue-336-repro.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/issue-472-repro.yml +2 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/jobs-broaden-permissions.yml +4 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/reusable-workflow-call.yml +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/reusable-workflow-other-triggers.yml +2 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-default-perms-all-jobs-explicit.yml +4 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-default-perms.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-empty-perms.yml +4 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-read-all.yml +4 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-write-all.yml +4 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/excessive-permissions/workflow-write-explicit.yml +4 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/excessive-permissions.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/forbidden-uses/forbidden-uses-menagerie.yml +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/github-env/github-path.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/github-env/issue-397-repro.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/github_env.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/hardcoded-credentials.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/inlined-ignores.yml +2 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/insecure-commands/issue-839-repro.yml +5 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/insecure-commands.yml +2 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/test-data/obfuscation/computed-indices.yml +16 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/obfuscation.yml +2 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/overprovisioned-secrets.yml +3 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/test-data/pr-960-backstop/action.yml +10 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/ref-confusion/issue-518-repro.yml +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/secrets-inherit.yml +6 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/self-hosted/issue-283-repro.yml +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/self-hosted/self-hosted-matrix-dimension.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/self-hosted/self-hosted-matrix-exclusion.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/self-hosted/self-hosted-matrix-inclusion.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/self-hosted/self-hosted-runner-group.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/self-hosted/self-hosted-runner-label.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/self-hosted.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/stale-action-refs.yml +2 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/template-injection/codeql-sinks.yml +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/template-injection/false-positive-menagerie.yml +1 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/test-data/template-injection/input-caps.yml +18 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/template-injection/issue-418-repro.yml +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/template-injection/issue-749-repro.yml +1 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/test-data/template-injection/issue-883-repro/action.yml +123 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/test-data/template-injection/issue-988-repro.yml +27 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/test-data/template-injection/multiline-expression.yml +27 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/template-injection/patterns.yml +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/template-injection/pwsh-script.yml +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/template-injection/template-injection-dynamic-matrix.yml +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/template-injection/template-injection-static-matrix.yml +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/template-injection.yml +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/unpinned-images.yml +10 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/issue-433-repro.yml +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/issue-659-repro.yml +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/menagerie-of-uses.yml +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/unpinned-uses.yml +1 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/unredacted-secrets.yml +3 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/unsound-contains.yml +3 -0
- zizmor-1.11.0/crates/zizmor/tests/integration/test-data/use-trusted-publishing/demo-action/action.yml +11 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/use-trusted-publishing.yml +3 -0
- zizmor-1.9.0/crates/github-actions-expressions/src/lib.rs +0 -838
- zizmor-1.9.0/crates/zizmor/src/audit/artipacked.rs +0 -148
- zizmor-1.9.0/crates/zizmor/src/audit/bot_conditions.rs +0 -211
- zizmor-1.9.0/crates/zizmor/src/audit/template_injection.rs +0 -342
- zizmor-1.9.0/crates/zizmor/src/finding/mod.rs +0 -613
- zizmor-1.9.0/crates/zizmor/tests/integration/snapshots/integration__e2e__menagerie.snap +0 -14
- zizmor-1.9.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__artipacked-4.snap +0 -18
- zizmor-1.9.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__bot_conditions.snap +0 -45
- zizmor-1.9.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-11.snap +0 -18
- zizmor-1.9.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__secrets_inherit.snap +0 -16
- zizmor-1.9.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-11.snap +0 -18
- zizmor-1.9.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-12.snap +0 -21
- zizmor-1.9.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-2.snap +0 -27
- zizmor-1.9.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-4.snap +0 -18
- zizmor-1.9.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-5.snap +0 -38
- zizmor-1.9.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-6.snap +0 -17
- zizmor-1.9.0/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-8.snap +0 -61
- zizmor-1.9.0/crates/zizmor/tests/integration/test-data/bot-conditions.yml +0 -24
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-expressions/README.md +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/LICENSE +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/README.md +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/src/dependabot/mod.rs +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/src/dependabot/v2.rs +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/src/lib.rs +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/src/workflow/mod.rs +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-actions/gh-action-pip-audit.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-actions/gh-action-pypi-publish.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-actions/gh-action-sigstore-python.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-actions/no-input-output-descriptions.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-actions/setup-python.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-dependabot/v2/pip-audit.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-dependabot/v2/sigstore-python.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/adafruit-circuitpython-run-tests.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/false-condition.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/gh-action-sigstore-python-selftest.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/git-annex-built-windows.yaml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/guacsec-guac-ci.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/homebrew-core-automerge-triggers.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/intel-llvm-sycl-linux-run-tests.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/issue-35.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/jazzband-tablib-docs-lint.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/letsencrypt-boulder-boulder-ci.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/mhils-workflows-python-deploy.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/openbao-openbao-test-go.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/pip-api-test.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/pip-audit-ci.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/pip-audit-scorecards.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/pwn-requests.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/pyca-cryptography-ci.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/pypi-attestations-release.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/reusable-workflow-unpinned.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/rnpgp-rnp-centos-and-fedora.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/runs-on-expr.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/runs-on-group-only.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/scalar-trigger-type.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/vil02-puzzle_generator-check_examples.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/zizmor-issue-646.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/sample-workflows/zizmor-issue-650.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/test_action.rs +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/github-actions-models/tests/test_dependabot_v2.rs +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/yamlpath/LICENSE +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/yamlpath/README.md +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/yamlpath/tests/testcases/basic.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/yamlpath/tests/testcases/comments.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/yamlpath/tests/testcases/directives.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/yamlpath/tests/testcases/interceding-comment.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/yamlpath/tests/testcases/quoted-key.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/build.rs +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/data/codeql-injection-sinks.json +27 -27
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/config.rs +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/models/uses.rs +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/src/state.rs +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/common.rs +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/main.rs +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__invalid_config_file.snap +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__e2e__issue_612_repro.snap +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-14.snap +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-6.snap +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning-7.snap +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cache_poisoning.snap +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__cant_retrieve.snap +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-6.snap +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions-9.snap +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__excessive_permissions.snap +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__forbidden_uses.snap +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__github_env.snap +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__insecure_commands-3.snap +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-2.snap +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-7.snap +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__self_hosted-8.snap +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-10.snap +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-3.snap +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__template_injection-9.snap +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-3.snap +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/snapshots/integration__snapshot__unpinned_uses-4.snap +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/e2e-menagerie/.github/dummy-action-2/action.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/e2e-menagerie/.gitignore +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/e2e-menagerie/README.md +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/e2e-menagerie/dummy-action-1/action.yaml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/allow-all.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/allow-some-refs.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/allow-some.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/deny-all.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/deny-some-refs.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/forbidden-uses/configs/deny-some.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/github-env/action.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/insecure-commands/action.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/invalid/bad-yaml-1.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/invalid/bad-yaml-2.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/invalid/blank.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/invalid/comment-only.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/invalid/empty-action/action.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/invalid/empty.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/invalid/invalid-action-1/action.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/invalid/invalid-action-2/action.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/invalid/invalid-workflow-2.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/invalid/invalid-workflow.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/issue-612-repro/action.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/ref-confusion.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/several-vulnerabilities.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/template-injection/dataflow.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/template-injection/issue-22-repro.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/template-injection/issue-339-repro.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/template-injection/pr-317-repro.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/template-injection/pr-425-backstop/action.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/template-injection/static-env.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/action.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/composite-2.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/composite.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/empty.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/hash-pin-everything.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-1.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-2.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-3.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-4.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-5.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-policy-syntax-6.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/invalid-wrong-policy-object.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/crates/zizmor/tests/integration/test-data/unpinned-uses/configs/ref-pin-everything.yml +0 -0
- {zizmor-1.9.0 → zizmor-1.11.0}/pyproject.toml +0 -0
|
@@ -62,9 +62,9 @@ dependencies = [
|
|
|
62
62
|
|
|
63
63
|
[[package]]
|
|
64
64
|
name = "anstream"
|
|
65
|
-
version = "0.6.
|
|
65
|
+
version = "0.6.19"
|
|
66
66
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
67
|
-
checksum = "
|
|
67
|
+
checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933"
|
|
68
68
|
dependencies = [
|
|
69
69
|
"anstyle",
|
|
70
70
|
"anstyle-parse",
|
|
@@ -149,6 +149,17 @@ dependencies = [
|
|
|
149
149
|
"syn 2.0.101",
|
|
150
150
|
]
|
|
151
151
|
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "auto_impl"
|
|
154
|
+
version = "1.3.0"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "ffdcb70bdbc4d478427380519163274ac86e52916e10f0a8889adf0f96d3fee7"
|
|
157
|
+
dependencies = [
|
|
158
|
+
"proc-macro2",
|
|
159
|
+
"quote",
|
|
160
|
+
"syn 2.0.101",
|
|
161
|
+
]
|
|
162
|
+
|
|
152
163
|
[[package]]
|
|
153
164
|
name = "autocfg"
|
|
154
165
|
version = "1.4.0"
|
|
@@ -206,6 +217,12 @@ version = "0.8.0"
|
|
|
206
217
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
218
|
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
208
219
|
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "bitflags"
|
|
222
|
+
version = "1.3.2"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
225
|
+
|
|
209
226
|
[[package]]
|
|
210
227
|
name = "bitflags"
|
|
211
228
|
version = "2.9.0"
|
|
@@ -285,9 +302,9 @@ dependencies = [
|
|
|
285
302
|
|
|
286
303
|
[[package]]
|
|
287
304
|
name = "camino"
|
|
288
|
-
version = "1.1.
|
|
305
|
+
version = "1.1.10"
|
|
289
306
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
-
checksum = "
|
|
307
|
+
checksum = "0da45bc31171d8d6960122e222a67740df867c1dd53b4d51caa297084c185cab"
|
|
291
308
|
dependencies = [
|
|
292
309
|
"serde",
|
|
293
310
|
]
|
|
@@ -315,9 +332,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
|
315
332
|
|
|
316
333
|
[[package]]
|
|
317
334
|
name = "clap"
|
|
318
|
-
version = "4.5.
|
|
335
|
+
version = "4.5.40"
|
|
319
336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
-
checksum = "
|
|
337
|
+
checksum = "40b6887a1d8685cebccf115538db5c0efe625ccac9696ad45c409d96566e910f"
|
|
321
338
|
dependencies = [
|
|
322
339
|
"clap_builder",
|
|
323
340
|
"clap_derive",
|
|
@@ -335,9 +352,9 @@ dependencies = [
|
|
|
335
352
|
|
|
336
353
|
[[package]]
|
|
337
354
|
name = "clap_builder"
|
|
338
|
-
version = "4.5.
|
|
355
|
+
version = "4.5.40"
|
|
339
356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
-
checksum = "
|
|
357
|
+
checksum = "e0c66c08ce9f0c698cbce5c0279d0bb6ac936d8674174fe48f736533b964f59e"
|
|
341
358
|
dependencies = [
|
|
342
359
|
"anstream",
|
|
343
360
|
"anstyle",
|
|
@@ -347,18 +364,18 @@ dependencies = [
|
|
|
347
364
|
|
|
348
365
|
[[package]]
|
|
349
366
|
name = "clap_complete"
|
|
350
|
-
version = "4.5.
|
|
367
|
+
version = "4.5.54"
|
|
351
368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
-
checksum = "
|
|
369
|
+
checksum = "aad5b1b4de04fead402672b48897030eec1f3bfe1550776322f59f6d6e6a5677"
|
|
353
370
|
dependencies = [
|
|
354
371
|
"clap",
|
|
355
372
|
]
|
|
356
373
|
|
|
357
374
|
[[package]]
|
|
358
375
|
name = "clap_complete_nushell"
|
|
359
|
-
version = "4.5.
|
|
376
|
+
version = "4.5.7"
|
|
360
377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
|
-
checksum = "
|
|
378
|
+
checksum = "cdb8335b398d197fb3176efe9400c6c053a41733c26794316c73423d212b2f3d"
|
|
362
379
|
dependencies = [
|
|
363
380
|
"clap",
|
|
364
381
|
"clap_complete",
|
|
@@ -366,9 +383,9 @@ dependencies = [
|
|
|
366
383
|
|
|
367
384
|
[[package]]
|
|
368
385
|
name = "clap_derive"
|
|
369
|
-
version = "4.5.
|
|
386
|
+
version = "4.5.40"
|
|
370
387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
-
checksum = "
|
|
388
|
+
checksum = "d2c7947ae4cc3d851207c1adb5b5e260ff0cca11446b1d6d1423788e442257ce"
|
|
372
389
|
dependencies = [
|
|
373
390
|
"heck",
|
|
374
391
|
"proc-macro2",
|
|
@@ -397,10 +414,22 @@ dependencies = [
|
|
|
397
414
|
"encode_unicode",
|
|
398
415
|
"libc",
|
|
399
416
|
"once_cell",
|
|
400
|
-
"unicode-width 0.2.0",
|
|
401
417
|
"windows-sys 0.59.0",
|
|
402
418
|
]
|
|
403
419
|
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "console"
|
|
422
|
+
version = "0.16.0"
|
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
+
checksum = "2e09ced7ebbccb63b4c65413d821f2e00ce54c5ca4514ddc6b3c892fdbcbc69d"
|
|
425
|
+
dependencies = [
|
|
426
|
+
"encode_unicode",
|
|
427
|
+
"libc",
|
|
428
|
+
"once_cell",
|
|
429
|
+
"unicode-width 0.2.0",
|
|
430
|
+
"windows-sys 0.60.2",
|
|
431
|
+
]
|
|
432
|
+
|
|
404
433
|
[[package]]
|
|
405
434
|
name = "cpufeatures"
|
|
406
435
|
version = "0.2.17"
|
|
@@ -475,6 +504,19 @@ dependencies = [
|
|
|
475
504
|
"memchr",
|
|
476
505
|
]
|
|
477
506
|
|
|
507
|
+
[[package]]
|
|
508
|
+
name = "dashmap"
|
|
509
|
+
version = "5.5.3"
|
|
510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
+
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
|
|
512
|
+
dependencies = [
|
|
513
|
+
"cfg-if",
|
|
514
|
+
"hashbrown 0.14.5",
|
|
515
|
+
"lock_api",
|
|
516
|
+
"once_cell",
|
|
517
|
+
"parking_lot_core",
|
|
518
|
+
]
|
|
519
|
+
|
|
478
520
|
[[package]]
|
|
479
521
|
name = "deranged"
|
|
480
522
|
version = "0.4.0"
|
|
@@ -602,9 +644,9 @@ dependencies = [
|
|
|
602
644
|
|
|
603
645
|
[[package]]
|
|
604
646
|
name = "flate2"
|
|
605
|
-
version = "1.1.
|
|
647
|
+
version = "1.1.2"
|
|
606
648
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
-
checksum = "
|
|
649
|
+
checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
|
|
608
650
|
dependencies = [
|
|
609
651
|
"crc32fast",
|
|
610
652
|
"miniz_oxide",
|
|
@@ -786,7 +828,7 @@ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
|
786
828
|
|
|
787
829
|
[[package]]
|
|
788
830
|
name = "github-actions-expressions"
|
|
789
|
-
version = "0.0.
|
|
831
|
+
version = "0.0.7"
|
|
790
832
|
dependencies = [
|
|
791
833
|
"anyhow",
|
|
792
834
|
"itertools",
|
|
@@ -797,11 +839,12 @@ dependencies = [
|
|
|
797
839
|
|
|
798
840
|
[[package]]
|
|
799
841
|
name = "github-actions-models"
|
|
800
|
-
version = "0.
|
|
842
|
+
version = "0.31.0"
|
|
801
843
|
dependencies = [
|
|
802
844
|
"indexmap",
|
|
803
845
|
"serde",
|
|
804
846
|
"serde_yaml",
|
|
847
|
+
"tracing",
|
|
805
848
|
]
|
|
806
849
|
|
|
807
850
|
[[package]]
|
|
@@ -817,6 +860,12 @@ dependencies = [
|
|
|
817
860
|
"regex-syntax 0.8.5",
|
|
818
861
|
]
|
|
819
862
|
|
|
863
|
+
[[package]]
|
|
864
|
+
name = "hashbrown"
|
|
865
|
+
version = "0.14.5"
|
|
866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
867
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
868
|
+
|
|
820
869
|
[[package]]
|
|
821
870
|
name = "hashbrown"
|
|
822
871
|
version = "0.15.2"
|
|
@@ -880,9 +929,9 @@ dependencies = [
|
|
|
880
929
|
|
|
881
930
|
[[package]]
|
|
882
931
|
name = "http-cache"
|
|
883
|
-
version = "0.
|
|
932
|
+
version = "0.21.0"
|
|
884
933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
885
|
-
checksum = "
|
|
934
|
+
checksum = "1437561a949a2168929d7559aecd2f0ecb18b9e676080396388cdc399ddb723a"
|
|
886
935
|
dependencies = [
|
|
887
936
|
"async-trait",
|
|
888
937
|
"bincode",
|
|
@@ -896,9 +945,9 @@ dependencies = [
|
|
|
896
945
|
|
|
897
946
|
[[package]]
|
|
898
947
|
name = "http-cache-reqwest"
|
|
899
|
-
version = "0.
|
|
948
|
+
version = "0.16.0"
|
|
900
949
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
-
checksum = "
|
|
950
|
+
checksum = "8ccca775a066b2a65da33611921e078ebdcfc27065c8bee96794703541101886"
|
|
902
951
|
dependencies = [
|
|
903
952
|
"anyhow",
|
|
904
953
|
"async-trait",
|
|
@@ -995,22 +1044,26 @@ dependencies = [
|
|
|
995
1044
|
"tokio",
|
|
996
1045
|
"tokio-rustls",
|
|
997
1046
|
"tower-service",
|
|
998
|
-
"webpki-roots",
|
|
1047
|
+
"webpki-roots 0.26.9",
|
|
999
1048
|
]
|
|
1000
1049
|
|
|
1001
1050
|
[[package]]
|
|
1002
1051
|
name = "hyper-util"
|
|
1003
|
-
version = "0.1.
|
|
1052
|
+
version = "0.1.13"
|
|
1004
1053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
-
checksum = "
|
|
1054
|
+
checksum = "b1c293b6b3d21eca78250dc7dbebd6b9210ec5530e038cbfe0661b5c47ab06e8"
|
|
1006
1055
|
dependencies = [
|
|
1056
|
+
"base64 0.22.1",
|
|
1007
1057
|
"bytes",
|
|
1008
1058
|
"futures-channel",
|
|
1059
|
+
"futures-core",
|
|
1009
1060
|
"futures-util",
|
|
1010
1061
|
"http",
|
|
1011
1062
|
"http-body",
|
|
1012
1063
|
"hyper",
|
|
1064
|
+
"ipnet",
|
|
1013
1065
|
"libc",
|
|
1066
|
+
"percent-encoding",
|
|
1014
1067
|
"pin-project-lite",
|
|
1015
1068
|
"socket2",
|
|
1016
1069
|
"tokio",
|
|
@@ -1175,25 +1228,25 @@ dependencies = [
|
|
|
1175
1228
|
|
|
1176
1229
|
[[package]]
|
|
1177
1230
|
name = "indexmap"
|
|
1178
|
-
version = "2.
|
|
1231
|
+
version = "2.10.0"
|
|
1179
1232
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1180
|
-
checksum = "
|
|
1233
|
+
checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
|
|
1181
1234
|
dependencies = [
|
|
1182
1235
|
"equivalent",
|
|
1183
|
-
"hashbrown",
|
|
1236
|
+
"hashbrown 0.15.2",
|
|
1184
1237
|
"serde",
|
|
1185
1238
|
]
|
|
1186
1239
|
|
|
1187
1240
|
[[package]]
|
|
1188
1241
|
name = "indicatif"
|
|
1189
|
-
version = "0.17.
|
|
1242
|
+
version = "0.17.12"
|
|
1190
1243
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1191
|
-
checksum = "
|
|
1244
|
+
checksum = "4adb2ee6ad319a912210a36e56e3623555817bcc877a7e6e8802d1d69c4d8056"
|
|
1192
1245
|
dependencies = [
|
|
1193
|
-
"console",
|
|
1194
|
-
"number_prefix",
|
|
1246
|
+
"console 0.16.0",
|
|
1195
1247
|
"portable-atomic",
|
|
1196
1248
|
"unicode-width 0.2.0",
|
|
1249
|
+
"unit-prefix",
|
|
1197
1250
|
"vt100",
|
|
1198
1251
|
"web-time",
|
|
1199
1252
|
]
|
|
@@ -1204,7 +1257,7 @@ version = "1.43.1"
|
|
|
1204
1257
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1205
1258
|
checksum = "154934ea70c58054b556dd430b99a98c2a7ff5309ac9891597e339b5c28f4371"
|
|
1206
1259
|
dependencies = [
|
|
1207
|
-
"console",
|
|
1260
|
+
"console 0.15.11",
|
|
1208
1261
|
"once_cell",
|
|
1209
1262
|
"similar",
|
|
1210
1263
|
]
|
|
@@ -1224,6 +1277,16 @@ version = "2.11.0"
|
|
|
1224
1277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1225
1278
|
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
1226
1279
|
|
|
1280
|
+
[[package]]
|
|
1281
|
+
name = "iri-string"
|
|
1282
|
+
version = "0.7.8"
|
|
1283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1284
|
+
checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
|
|
1285
|
+
dependencies = [
|
|
1286
|
+
"memchr",
|
|
1287
|
+
"serde",
|
|
1288
|
+
]
|
|
1289
|
+
|
|
1227
1290
|
[[package]]
|
|
1228
1291
|
name = "is_terminal_polyfill"
|
|
1229
1292
|
version = "1.70.1"
|
|
@@ -1300,7 +1363,7 @@ version = "0.1.3"
|
|
|
1300
1363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
1364
|
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
1302
1365
|
dependencies = [
|
|
1303
|
-
"bitflags",
|
|
1366
|
+
"bitflags 2.9.0",
|
|
1304
1367
|
"libc",
|
|
1305
1368
|
"redox_syscall",
|
|
1306
1369
|
]
|
|
@@ -1343,6 +1406,19 @@ version = "0.4.27"
|
|
|
1343
1406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1344
1407
|
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
1345
1408
|
|
|
1409
|
+
[[package]]
|
|
1410
|
+
name = "lsp-types"
|
|
1411
|
+
version = "0.94.1"
|
|
1412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1413
|
+
checksum = "c66bfd44a06ae10647fe3f8214762e9369fd4248df1350924b4ef9e770a85ea1"
|
|
1414
|
+
dependencies = [
|
|
1415
|
+
"bitflags 1.3.2",
|
|
1416
|
+
"serde",
|
|
1417
|
+
"serde_json",
|
|
1418
|
+
"serde_repr",
|
|
1419
|
+
"url",
|
|
1420
|
+
]
|
|
1421
|
+
|
|
1346
1422
|
[[package]]
|
|
1347
1423
|
name = "matchers"
|
|
1348
1424
|
version = "0.1.0"
|
|
@@ -1354,9 +1430,9 @@ dependencies = [
|
|
|
1354
1430
|
|
|
1355
1431
|
[[package]]
|
|
1356
1432
|
name = "memchr"
|
|
1357
|
-
version = "2.7.
|
|
1433
|
+
version = "2.7.5"
|
|
1358
1434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1359
|
-
checksum = "
|
|
1435
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
|
1360
1436
|
|
|
1361
1437
|
[[package]]
|
|
1362
1438
|
name = "memmap2"
|
|
@@ -1390,12 +1466,6 @@ dependencies = [
|
|
|
1390
1466
|
"syn 2.0.101",
|
|
1391
1467
|
]
|
|
1392
1468
|
|
|
1393
|
-
[[package]]
|
|
1394
|
-
name = "mime"
|
|
1395
|
-
version = "0.3.17"
|
|
1396
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1397
|
-
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1398
|
-
|
|
1399
1469
|
[[package]]
|
|
1400
1470
|
name = "minimal-lexical"
|
|
1401
1471
|
version = "0.2.1"
|
|
@@ -1533,12 +1603,6 @@ dependencies = [
|
|
|
1533
1603
|
"autocfg",
|
|
1534
1604
|
]
|
|
1535
1605
|
|
|
1536
|
-
[[package]]
|
|
1537
|
-
name = "number_prefix"
|
|
1538
|
-
version = "0.4.0"
|
|
1539
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1540
|
-
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
|
1541
|
-
|
|
1542
1606
|
[[package]]
|
|
1543
1607
|
name = "object"
|
|
1544
1608
|
version = "0.36.7"
|
|
@@ -1579,9 +1643,9 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
|
|
1579
1643
|
|
|
1580
1644
|
[[package]]
|
|
1581
1645
|
name = "owo-colors"
|
|
1582
|
-
version = "4.2.
|
|
1646
|
+
version = "4.2.2"
|
|
1583
1647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1584
|
-
checksum = "
|
|
1648
|
+
checksum = "48dd4f4a2c8405440fd0462561f0e5806bd0f77e86f51c761481bdd4018b545e"
|
|
1585
1649
|
|
|
1586
1650
|
[[package]]
|
|
1587
1651
|
name = "parking_lot"
|
|
@@ -1614,9 +1678,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
|
1614
1678
|
|
|
1615
1679
|
[[package]]
|
|
1616
1680
|
name = "pest"
|
|
1617
|
-
version = "2.8.
|
|
1681
|
+
version = "2.8.1"
|
|
1618
1682
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
|
-
checksum = "
|
|
1683
|
+
checksum = "1db05f56d34358a8b1066f67cbb203ee3e7ed2ba674a6263a1d5ec6db2204323"
|
|
1620
1684
|
dependencies = [
|
|
1621
1685
|
"memchr",
|
|
1622
1686
|
"thiserror 2.0.12",
|
|
@@ -1625,9 +1689,9 @@ dependencies = [
|
|
|
1625
1689
|
|
|
1626
1690
|
[[package]]
|
|
1627
1691
|
name = "pest_derive"
|
|
1628
|
-
version = "2.8.
|
|
1692
|
+
version = "2.8.1"
|
|
1629
1693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1630
|
-
checksum = "
|
|
1694
|
+
checksum = "bb056d9e8ea77922845ec74a1c4e8fb17e7c218cc4fc11a15c5d25e189aa40bc"
|
|
1631
1695
|
dependencies = [
|
|
1632
1696
|
"pest",
|
|
1633
1697
|
"pest_generator",
|
|
@@ -1635,9 +1699,9 @@ dependencies = [
|
|
|
1635
1699
|
|
|
1636
1700
|
[[package]]
|
|
1637
1701
|
name = "pest_generator"
|
|
1638
|
-
version = "2.8.
|
|
1702
|
+
version = "2.8.1"
|
|
1639
1703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1640
|
-
checksum = "
|
|
1704
|
+
checksum = "87e404e638f781eb3202dc82db6760c8ae8a1eeef7fb3fa8264b2ef280504966"
|
|
1641
1705
|
dependencies = [
|
|
1642
1706
|
"pest",
|
|
1643
1707
|
"pest_meta",
|
|
@@ -1648,15 +1712,34 @@ dependencies = [
|
|
|
1648
1712
|
|
|
1649
1713
|
[[package]]
|
|
1650
1714
|
name = "pest_meta"
|
|
1651
|
-
version = "2.8.
|
|
1715
|
+
version = "2.8.1"
|
|
1652
1716
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1653
|
-
checksum = "
|
|
1717
|
+
checksum = "edd1101f170f5903fde0914f899bb503d9ff5271d7ba76bbb70bea63690cc0d5"
|
|
1654
1718
|
dependencies = [
|
|
1655
|
-
"once_cell",
|
|
1656
1719
|
"pest",
|
|
1657
1720
|
"sha2",
|
|
1658
1721
|
]
|
|
1659
1722
|
|
|
1723
|
+
[[package]]
|
|
1724
|
+
name = "pin-project"
|
|
1725
|
+
version = "1.1.10"
|
|
1726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1727
|
+
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
|
1728
|
+
dependencies = [
|
|
1729
|
+
"pin-project-internal",
|
|
1730
|
+
]
|
|
1731
|
+
|
|
1732
|
+
[[package]]
|
|
1733
|
+
name = "pin-project-internal"
|
|
1734
|
+
version = "1.1.10"
|
|
1735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1736
|
+
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
1737
|
+
dependencies = [
|
|
1738
|
+
"proc-macro2",
|
|
1739
|
+
"quote",
|
|
1740
|
+
"syn 2.0.101",
|
|
1741
|
+
]
|
|
1742
|
+
|
|
1660
1743
|
[[package]]
|
|
1661
1744
|
name = "pin-project-lite"
|
|
1662
1745
|
version = "0.2.16"
|
|
@@ -1850,7 +1933,7 @@ version = "0.5.11"
|
|
|
1850
1933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1851
1934
|
checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
|
|
1852
1935
|
dependencies = [
|
|
1853
|
-
"bitflags",
|
|
1936
|
+
"bitflags 2.9.0",
|
|
1854
1937
|
]
|
|
1855
1938
|
|
|
1856
1939
|
[[package]]
|
|
@@ -1945,9 +2028,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
|
1945
2028
|
|
|
1946
2029
|
[[package]]
|
|
1947
2030
|
name = "reqwest"
|
|
1948
|
-
version = "0.12.
|
|
2031
|
+
version = "0.12.20"
|
|
1949
2032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1950
|
-
checksum = "
|
|
2033
|
+
checksum = "eabf4c97d9130e2bf606614eb937e86edac8292eaa6f422f995d7e8de1eb1813"
|
|
1951
2034
|
dependencies = [
|
|
1952
2035
|
"base64 0.22.1",
|
|
1953
2036
|
"bytes",
|
|
@@ -1960,16 +2043,12 @@ dependencies = [
|
|
|
1960
2043
|
"hyper",
|
|
1961
2044
|
"hyper-rustls",
|
|
1962
2045
|
"hyper-util",
|
|
1963
|
-
"ipnet",
|
|
1964
2046
|
"js-sys",
|
|
1965
2047
|
"log",
|
|
1966
|
-
"mime",
|
|
1967
|
-
"once_cell",
|
|
1968
2048
|
"percent-encoding",
|
|
1969
2049
|
"pin-project-lite",
|
|
1970
2050
|
"quinn",
|
|
1971
2051
|
"rustls",
|
|
1972
|
-
"rustls-pemfile",
|
|
1973
2052
|
"rustls-pki-types",
|
|
1974
2053
|
"serde",
|
|
1975
2054
|
"serde_json",
|
|
@@ -1977,14 +2056,14 @@ dependencies = [
|
|
|
1977
2056
|
"sync_wrapper",
|
|
1978
2057
|
"tokio",
|
|
1979
2058
|
"tokio-rustls",
|
|
1980
|
-
"tower",
|
|
2059
|
+
"tower 0.5.2",
|
|
2060
|
+
"tower-http",
|
|
1981
2061
|
"tower-service",
|
|
1982
2062
|
"url",
|
|
1983
2063
|
"wasm-bindgen",
|
|
1984
2064
|
"wasm-bindgen-futures",
|
|
1985
2065
|
"web-sys",
|
|
1986
|
-
"webpki-roots",
|
|
1987
|
-
"windows-registry",
|
|
2066
|
+
"webpki-roots 1.0.0",
|
|
1988
2067
|
]
|
|
1989
2068
|
|
|
1990
2069
|
[[package]]
|
|
@@ -2034,7 +2113,7 @@ version = "1.0.5"
|
|
|
2034
2113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2035
2114
|
checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
|
|
2036
2115
|
dependencies = [
|
|
2037
|
-
"bitflags",
|
|
2116
|
+
"bitflags 2.9.0",
|
|
2038
2117
|
"errno",
|
|
2039
2118
|
"libc",
|
|
2040
2119
|
"linux-raw-sys",
|
|
@@ -2055,15 +2134,6 @@ dependencies = [
|
|
|
2055
2134
|
"zeroize",
|
|
2056
2135
|
]
|
|
2057
2136
|
|
|
2058
|
-
[[package]]
|
|
2059
|
-
name = "rustls-pemfile"
|
|
2060
|
-
version = "2.2.0"
|
|
2061
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2062
|
-
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
|
2063
|
-
dependencies = [
|
|
2064
|
-
"rustls-pki-types",
|
|
2065
|
-
]
|
|
2066
|
-
|
|
2067
2137
|
[[package]]
|
|
2068
2138
|
name = "rustls-pki-types"
|
|
2069
2139
|
version = "1.11.0"
|
|
@@ -2241,6 +2311,17 @@ dependencies = [
|
|
|
2241
2311
|
"syn 2.0.101",
|
|
2242
2312
|
]
|
|
2243
2313
|
|
|
2314
|
+
[[package]]
|
|
2315
|
+
name = "serde_repr"
|
|
2316
|
+
version = "0.1.20"
|
|
2317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2318
|
+
checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
|
|
2319
|
+
dependencies = [
|
|
2320
|
+
"proc-macro2",
|
|
2321
|
+
"quote",
|
|
2322
|
+
"syn 2.0.101",
|
|
2323
|
+
]
|
|
2324
|
+
|
|
2244
2325
|
[[package]]
|
|
2245
2326
|
name = "serde_spanned"
|
|
2246
2327
|
version = "0.6.8"
|
|
@@ -2652,6 +2733,19 @@ dependencies = [
|
|
|
2652
2733
|
"tokio",
|
|
2653
2734
|
]
|
|
2654
2735
|
|
|
2736
|
+
[[package]]
|
|
2737
|
+
name = "tokio-util"
|
|
2738
|
+
version = "0.7.15"
|
|
2739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2740
|
+
checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
|
|
2741
|
+
dependencies = [
|
|
2742
|
+
"bytes",
|
|
2743
|
+
"futures-core",
|
|
2744
|
+
"futures-sink",
|
|
2745
|
+
"pin-project-lite",
|
|
2746
|
+
"tokio",
|
|
2747
|
+
]
|
|
2748
|
+
|
|
2655
2749
|
[[package]]
|
|
2656
2750
|
name = "toml"
|
|
2657
2751
|
version = "0.8.22"
|
|
@@ -2692,6 +2786,20 @@ version = "0.1.1"
|
|
|
2692
2786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2693
2787
|
checksum = "bfb942dfe1d8e29a7ee7fcbde5bd2b9a25fb89aa70caea2eba3bee836ff41076"
|
|
2694
2788
|
|
|
2789
|
+
[[package]]
|
|
2790
|
+
name = "tower"
|
|
2791
|
+
version = "0.4.13"
|
|
2792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2793
|
+
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
|
|
2794
|
+
dependencies = [
|
|
2795
|
+
"futures-core",
|
|
2796
|
+
"futures-util",
|
|
2797
|
+
"pin-project",
|
|
2798
|
+
"pin-project-lite",
|
|
2799
|
+
"tower-layer",
|
|
2800
|
+
"tower-service",
|
|
2801
|
+
]
|
|
2802
|
+
|
|
2695
2803
|
[[package]]
|
|
2696
2804
|
name = "tower"
|
|
2697
2805
|
version = "0.5.2"
|
|
@@ -2707,12 +2815,64 @@ dependencies = [
|
|
|
2707
2815
|
"tower-service",
|
|
2708
2816
|
]
|
|
2709
2817
|
|
|
2818
|
+
[[package]]
|
|
2819
|
+
name = "tower-http"
|
|
2820
|
+
version = "0.6.5"
|
|
2821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2822
|
+
checksum = "5cc2d9e086a412a451384326f521c8123a99a466b329941a9403696bff9b0da2"
|
|
2823
|
+
dependencies = [
|
|
2824
|
+
"bitflags 2.9.0",
|
|
2825
|
+
"bytes",
|
|
2826
|
+
"futures-util",
|
|
2827
|
+
"http",
|
|
2828
|
+
"http-body",
|
|
2829
|
+
"iri-string",
|
|
2830
|
+
"pin-project-lite",
|
|
2831
|
+
"tower 0.5.2",
|
|
2832
|
+
"tower-layer",
|
|
2833
|
+
"tower-service",
|
|
2834
|
+
]
|
|
2835
|
+
|
|
2710
2836
|
[[package]]
|
|
2711
2837
|
name = "tower-layer"
|
|
2712
2838
|
version = "0.3.3"
|
|
2713
2839
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2714
2840
|
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
2715
2841
|
|
|
2842
|
+
[[package]]
|
|
2843
|
+
name = "tower-lsp"
|
|
2844
|
+
version = "0.20.0"
|
|
2845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2846
|
+
checksum = "d4ba052b54a6627628d9b3c34c176e7eda8359b7da9acd497b9f20998d118508"
|
|
2847
|
+
dependencies = [
|
|
2848
|
+
"async-trait",
|
|
2849
|
+
"auto_impl",
|
|
2850
|
+
"bytes",
|
|
2851
|
+
"dashmap",
|
|
2852
|
+
"futures",
|
|
2853
|
+
"httparse",
|
|
2854
|
+
"lsp-types",
|
|
2855
|
+
"memchr",
|
|
2856
|
+
"serde",
|
|
2857
|
+
"serde_json",
|
|
2858
|
+
"tokio",
|
|
2859
|
+
"tokio-util",
|
|
2860
|
+
"tower 0.4.13",
|
|
2861
|
+
"tower-lsp-macros",
|
|
2862
|
+
"tracing",
|
|
2863
|
+
]
|
|
2864
|
+
|
|
2865
|
+
[[package]]
|
|
2866
|
+
name = "tower-lsp-macros"
|
|
2867
|
+
version = "0.9.0"
|
|
2868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2869
|
+
checksum = "84fd902d4e0b9a4b27f2f440108dc034e1758628a9b702f8ec61ad66355422fa"
|
|
2870
|
+
dependencies = [
|
|
2871
|
+
"proc-macro2",
|
|
2872
|
+
"quote",
|
|
2873
|
+
"syn 2.0.101",
|
|
2874
|
+
]
|
|
2875
|
+
|
|
2716
2876
|
[[package]]
|
|
2717
2877
|
name = "tower-service"
|
|
2718
2878
|
version = "0.3.3"
|
|
@@ -2794,9 +2954,9 @@ dependencies = [
|
|
|
2794
2954
|
|
|
2795
2955
|
[[package]]
|
|
2796
2956
|
name = "tree-sitter"
|
|
2797
|
-
version = "0.25.
|
|
2957
|
+
version = "0.25.6"
|
|
2798
2958
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2799
|
-
checksum = "
|
|
2959
|
+
checksum = "a7cf18d43cbf0bfca51f657132cc616a5097edc4424d538bae6fa60142eaf9f0"
|
|
2800
2960
|
dependencies = [
|
|
2801
2961
|
"cc",
|
|
2802
2962
|
"regex",
|
|
@@ -2824,9 +2984,9 @@ checksum = "c4013970217383f67b18aef68f6fb2e8d409bc5755227092d32efb0422ba24b8"
|
|
|
2824
2984
|
|
|
2825
2985
|
[[package]]
|
|
2826
2986
|
name = "tree-sitter-powershell"
|
|
2827
|
-
version = "0.25.
|
|
2987
|
+
version = "0.25.6"
|
|
2828
2988
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2829
|
-
checksum = "
|
|
2989
|
+
checksum = "e265a36be4ab388c842629bef61fb719c83f9be3241db92288d064ed425758ba"
|
|
2830
2990
|
dependencies = [
|
|
2831
2991
|
"cc",
|
|
2832
2992
|
"tree-sitter-language",
|
|
@@ -2898,6 +3058,12 @@ version = "0.2.0"
|
|
|
2898
3058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2899
3059
|
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
|
|
2900
3060
|
|
|
3061
|
+
[[package]]
|
|
3062
|
+
name = "unit-prefix"
|
|
3063
|
+
version = "0.5.1"
|
|
3064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3065
|
+
checksum = "323402cff2dd658f39ca17c789b502021b3f18707c91cdf22e3838e1b4023817"
|
|
3066
|
+
|
|
2901
3067
|
[[package]]
|
|
2902
3068
|
name = "unsafe-libyaml"
|
|
2903
3069
|
version = "0.2.11"
|
|
@@ -3164,6 +3330,15 @@ dependencies = [
|
|
|
3164
3330
|
"rustls-pki-types",
|
|
3165
3331
|
]
|
|
3166
3332
|
|
|
3333
|
+
[[package]]
|
|
3334
|
+
name = "webpki-roots"
|
|
3335
|
+
version = "1.0.0"
|
|
3336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3337
|
+
checksum = "2853738d1cc4f2da3a225c18ec6c3721abb31961096e9dbf5ab35fa88b19cfdb"
|
|
3338
|
+
dependencies = [
|
|
3339
|
+
"rustls-pki-types",
|
|
3340
|
+
]
|
|
3341
|
+
|
|
3167
3342
|
[[package]]
|
|
3168
3343
|
name = "winapi"
|
|
3169
3344
|
version = "0.3.9"
|
|
@@ -3227,7 +3402,7 @@ dependencies = [
|
|
|
3227
3402
|
"windows-interface",
|
|
3228
3403
|
"windows-link",
|
|
3229
3404
|
"windows-result",
|
|
3230
|
-
"windows-strings
|
|
3405
|
+
"windows-strings",
|
|
3231
3406
|
]
|
|
3232
3407
|
|
|
3233
3408
|
[[package]]
|
|
@@ -3278,17 +3453,6 @@ dependencies = [
|
|
|
3278
3453
|
"windows-link",
|
|
3279
3454
|
]
|
|
3280
3455
|
|
|
3281
|
-
[[package]]
|
|
3282
|
-
name = "windows-registry"
|
|
3283
|
-
version = "0.4.0"
|
|
3284
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3285
|
-
checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
|
|
3286
|
-
dependencies = [
|
|
3287
|
-
"windows-result",
|
|
3288
|
-
"windows-strings 0.3.1",
|
|
3289
|
-
"windows-targets 0.53.0",
|
|
3290
|
-
]
|
|
3291
|
-
|
|
3292
3456
|
[[package]]
|
|
3293
3457
|
name = "windows-result"
|
|
3294
3458
|
version = "0.3.2"
|
|
@@ -3298,15 +3462,6 @@ dependencies = [
|
|
|
3298
3462
|
"windows-link",
|
|
3299
3463
|
]
|
|
3300
3464
|
|
|
3301
|
-
[[package]]
|
|
3302
|
-
name = "windows-strings"
|
|
3303
|
-
version = "0.3.1"
|
|
3304
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3305
|
-
checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
|
|
3306
|
-
dependencies = [
|
|
3307
|
-
"windows-link",
|
|
3308
|
-
]
|
|
3309
|
-
|
|
3310
3465
|
[[package]]
|
|
3311
3466
|
name = "windows-strings"
|
|
3312
3467
|
version = "0.4.0"
|
|
@@ -3334,6 +3489,15 @@ dependencies = [
|
|
|
3334
3489
|
"windows-targets 0.52.6",
|
|
3335
3490
|
]
|
|
3336
3491
|
|
|
3492
|
+
[[package]]
|
|
3493
|
+
name = "windows-sys"
|
|
3494
|
+
version = "0.60.2"
|
|
3495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3496
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
3497
|
+
dependencies = [
|
|
3498
|
+
"windows-targets 0.53.2",
|
|
3499
|
+
]
|
|
3500
|
+
|
|
3337
3501
|
[[package]]
|
|
3338
3502
|
name = "windows-targets"
|
|
3339
3503
|
version = "0.52.6"
|
|
@@ -3352,9 +3516,9 @@ dependencies = [
|
|
|
3352
3516
|
|
|
3353
3517
|
[[package]]
|
|
3354
3518
|
name = "windows-targets"
|
|
3355
|
-
version = "0.53.
|
|
3519
|
+
version = "0.53.2"
|
|
3356
3520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3357
|
-
checksum = "
|
|
3521
|
+
checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
|
|
3358
3522
|
dependencies = [
|
|
3359
3523
|
"windows_aarch64_gnullvm 0.53.0",
|
|
3360
3524
|
"windows_aarch64_msvc 0.53.0",
|
|
@@ -3468,7 +3632,7 @@ version = "0.39.0"
|
|
|
3468
3632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3469
3633
|
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
3470
3634
|
dependencies = [
|
|
3471
|
-
"bitflags",
|
|
3635
|
+
"bitflags 2.9.0",
|
|
3472
3636
|
]
|
|
3473
3637
|
|
|
3474
3638
|
[[package]]
|
|
@@ -3501,8 +3665,9 @@ checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
|
|
|
3501
3665
|
|
|
3502
3666
|
[[package]]
|
|
3503
3667
|
name = "yamlpath"
|
|
3504
|
-
version = "0.
|
|
3668
|
+
version = "0.23.0"
|
|
3505
3669
|
dependencies = [
|
|
3670
|
+
"line-index",
|
|
3506
3671
|
"serde",
|
|
3507
3672
|
"serde_yaml",
|
|
3508
3673
|
"thiserror 2.0.12",
|
|
@@ -3631,7 +3796,7 @@ dependencies = [
|
|
|
3631
3796
|
|
|
3632
3797
|
[[package]]
|
|
3633
3798
|
name = "zizmor"
|
|
3634
|
-
version = "1.
|
|
3799
|
+
version = "1.11.0"
|
|
3635
3800
|
dependencies = [
|
|
3636
3801
|
"annotate-snippets",
|
|
3637
3802
|
"anstream",
|
|
@@ -3657,6 +3822,7 @@ dependencies = [
|
|
|
3657
3822
|
"itertools",
|
|
3658
3823
|
"jsonschema",
|
|
3659
3824
|
"line-index",
|
|
3825
|
+
"memchr",
|
|
3660
3826
|
"owo-colors",
|
|
3661
3827
|
"regex",
|
|
3662
3828
|
"reqwest",
|
|
@@ -3670,6 +3836,7 @@ dependencies = [
|
|
|
3670
3836
|
"terminal-link",
|
|
3671
3837
|
"thiserror 2.0.12",
|
|
3672
3838
|
"tokio",
|
|
3839
|
+
"tower-lsp",
|
|
3673
3840
|
"tracing",
|
|
3674
3841
|
"tracing-indicatif",
|
|
3675
3842
|
"tracing-subscriber",
|