citry-core 1.3.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.
- citry_core-1.3.0/Cargo.lock +2083 -0
- citry_core-1.3.0/Cargo.toml +118 -0
- citry_core-1.3.0/PKG-INFO +226 -0
- citry_core-1.3.0/README.md +200 -0
- citry_core-1.3.0/citry_core/__init__.py +33 -0
- citry_core-1.3.0/citry_core/_rust.pyi +382 -0
- citry_core-1.3.0/citry_core/html_transform/__init__.py +9 -0
- citry_core-1.3.0/citry_core/py.typed +0 -0
- citry_core-1.3.0/citry_core/safe_eval/__init__.py +11 -0
- citry_core-1.3.0/citry_core/safe_eval/error.py +164 -0
- citry_core-1.3.0/citry_core/safe_eval/eval.py +475 -0
- citry_core-1.3.0/citry_core/safe_eval/sandbox.py +223 -0
- citry_core-1.3.0/citry_core/template_parser/__init__.py +80 -0
- citry_core-1.3.0/citry_core/template_parser/compile.py +69 -0
- citry_core-1.3.0/citry_core/template_parser/parse.py +49 -0
- citry_core-1.3.0/crates/citry_core_py/AGENTS.md +42 -0
- citry_core-1.3.0/crates/citry_core_py/Cargo.toml +18 -0
- citry_core-1.3.0/crates/citry_core_py/README.md +58 -0
- citry_core-1.3.0/crates/citry_core_py/src/html_transform.rs +162 -0
- citry_core-1.3.0/crates/citry_core_py/src/lib.rs +75 -0
- citry_core-1.3.0/crates/citry_core_py/src/safe_eval.rs +56 -0
- citry_core-1.3.0/crates/citry_core_py/src/template_parser.rs +100 -0
- citry_core-1.3.0/crates/citry_html_transform/AGENTS.md +28 -0
- citry_core-1.3.0/crates/citry_html_transform/Cargo.toml +9 -0
- citry_core-1.3.0/crates/citry_html_transform/README.md +111 -0
- citry_core-1.3.0/crates/citry_html_transform/src/lib.rs +13 -0
- citry_core-1.3.0/crates/citry_html_transform/src/marker.rs +353 -0
- citry_core-1.3.0/crates/citry_html_transform/src/transformer.rs +186 -0
- citry_core-1.3.0/crates/citry_html_transform/tests/marker.rs +259 -0
- citry_core-1.3.0/crates/citry_html_transform/tests/transformer.rs +245 -0
- citry_core-1.3.0/crates/citry_template_parser/AGENTS.md +55 -0
- citry_core-1.3.0/crates/citry_template_parser/Cargo.toml +19 -0
- citry_core-1.3.0/crates/citry_template_parser/README.md +256 -0
- citry_core-1.3.0/crates/citry_template_parser/docs/agent/INDEX.md +157 -0
- citry_core-1.3.0/crates/citry_template_parser/src/ast.rs +862 -0
- citry_core-1.3.0/crates/citry_template_parser/src/compiler.rs +1757 -0
- citry_core-1.3.0/crates/citry_template_parser/src/constants.rs +297 -0
- citry_core-1.3.0/crates/citry_template_parser/src/error.rs +61 -0
- citry_core-1.3.0/crates/citry_template_parser/src/grammar.pest +389 -0
- citry_core-1.3.0/crates/citry_template_parser/src/grammar.rs +5 -0
- citry_core-1.3.0/crates/citry_template_parser/src/lang/go.rs +277 -0
- citry_core-1.3.0/crates/citry_template_parser/src/lang/js.rs +175 -0
- citry_core-1.3.0/crates/citry_template_parser/src/lang/lang.rs +213 -0
- citry_core-1.3.0/crates/citry_template_parser/src/lang/php.rs +146 -0
- citry_core-1.3.0/crates/citry_template_parser/src/lang/python.rs +351 -0
- citry_core-1.3.0/crates/citry_template_parser/src/lang/rust.rs +337 -0
- citry_core-1.3.0/crates/citry_template_parser/src/lib.rs +41 -0
- citry_core-1.3.0/crates/citry_template_parser/src/parser.rs +2807 -0
- citry_core-1.3.0/crates/citry_template_parser/src/parser_context.rs +275 -0
- citry_core-1.3.0/crates/citry_template_parser/src/utils/pest.rs +26 -0
- citry_core-1.3.0/crates/citry_template_parser/tests/common/mod.rs +465 -0
- citry_core-1.3.0/crates/citry_template_parser/tests/tag_compiler.rs +610 -0
- citry_core-1.3.0/crates/citry_template_parser/tests/tag_compiler_dynamic.rs +224 -0
- citry_core-1.3.0/crates/citry_template_parser/tests/tag_parser_boolean_attrs.rs +151 -0
- citry_core-1.3.0/crates/citry_template_parser/tests/tag_parser_comments.rs +562 -0
- citry_core-1.3.0/crates/citry_template_parser/tests/tag_parser_composition.rs +86 -0
- citry_core-1.3.0/crates/citry_template_parser/tests/tag_parser_control_flow_for.rs +525 -0
- citry_core-1.3.0/crates/citry_template_parser/tests/tag_parser_control_flow_if.rs +765 -0
- citry_core-1.3.0/crates/citry_template_parser/tests/tag_parser_dynamic_attrs.rs +182 -0
- citry_core-1.3.0/crates/citry_template_parser/tests/tag_parser_expressions.rs +190 -0
- citry_core-1.3.0/crates/citry_template_parser/tests/tag_parser_fills.rs +709 -0
- citry_core-1.3.0/crates/citry_template_parser/tests/tag_parser_html.rs +177 -0
- citry_core-1.3.0/crates/citry_template_parser/tests/tag_parser_kwargs.rs +188 -0
- citry_core-1.3.0/crates/citry_template_parser/tests/tag_parser_nested_templates.rs +390 -0
- citry_core-1.3.0/crates/citry_template_parser/tests/tag_parser_raw.rs +87 -0
- citry_core-1.3.0/crates/citry_template_parser/tests/tag_parser_spreads.rs +196 -0
- citry_core-1.3.0/crates/citry_template_parser/tests/tag_parser_structure.rs +150 -0
- citry_core-1.3.0/crates/citry_template_parser/tests/tag_parser_user_rules.rs +603 -0
- citry_core-1.3.0/crates/python_safe_eval/AGENTS.md +41 -0
- citry_core-1.3.0/crates/python_safe_eval/Cargo.toml +16 -0
- citry_core-1.3.0/crates/python_safe_eval/README.md +507 -0
- citry_core-1.3.0/crates/python_safe_eval/src/codegen.rs +10 -0
- citry_core-1.3.0/crates/python_safe_eval/src/comments.rs +184 -0
- citry_core-1.3.0/crates/python_safe_eval/src/lib.rs +71 -0
- citry_core-1.3.0/crates/python_safe_eval/src/transformer.rs +1499 -0
- citry_core-1.3.0/crates/python_safe_eval/src/utils/python_ast.rs +146 -0
- citry_core-1.3.0/crates/python_safe_eval/tests/codegen.rs +46 -0
- citry_core-1.3.0/crates/python_safe_eval/tests/comments.rs +250 -0
- citry_core-1.3.0/crates/python_safe_eval/tests/transformer.rs +2668 -0
- citry_core-1.3.0/pyproject.toml +72 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/Cargo.toml +38 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/LICENSE-APACHE +202 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/LICENSE-MIT +19 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/README.md +15 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/examples/expected_type.rs +23 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/examples/expected_type.svg +46 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/examples/footer.rs +22 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/examples/footer.svg +43 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/examples/format.rs +44 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/examples/format.svg +83 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/examples/multislice.rs +19 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/examples/multislice.svg +44 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/src/lib.rs +71 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/src/renderer/display_list.rs +1944 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/src/renderer/margin.rs +107 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/src/renderer/mod.rs +181 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/src/renderer/styled_buffer.rs +97 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/src/renderer/stylesheet.rs +70 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/src/snippet.rs +211 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/examples.rs +37 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/ann_eof.svg +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/ann_eof.toml +15 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/ann_insertion.svg +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/ann_insertion.toml +15 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/ann_multiline.svg +42 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/ann_multiline.toml +21 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/ann_multiline2.svg +40 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/ann_multiline2.toml +21 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/ann_removed_nl.svg +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/ann_removed_nl.toml +15 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/ensure-emoji-highlight-width.svg +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/ensure-emoji-highlight-width.toml +18 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/fold_ann_multiline.svg +49 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/fold_ann_multiline.toml +44 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/fold_bad_origin_line.svg +37 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/fold_bad_origin_line.toml +20 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/fold_leading.svg +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/fold_leading.toml +29 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/fold_trailing.svg +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/fold_trailing.toml +28 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/issue_9.svg +49 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/issue_9.toml +31 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/multiple_annotations.svg +54 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/multiple_annotations.toml +32 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/regression_leading_tab_label_alignment.svg +38 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/regression_leading_tab_label_alignment.toml +45 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/regression_leading_tab_long_line.svg +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/regression_leading_tab_long_line.toml +20 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/simple.svg +43 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/simple.toml +22 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/strip_line.svg +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/strip_line.toml +18 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/strip_line_char.svg +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/strip_line_char.toml +18 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/strip_line_non_ws.svg +40 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/color/strip_line_non_ws.toml +26 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/deserialize.rs +130 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/fixtures/main.rs +41 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/formatter.rs +1031 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_annotate_snippets/tests/rustc_tests.rs +783 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_cache/Cargo.toml +25 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_cache/src/cache_key.rs +470 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_cache/src/filetime.rs +11 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_cache/src/globset.rs +15 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_cache/src/lib.rs +14 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_cache/tests/cache_key.rs +139 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_macros/Cargo.toml +27 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_macros/src/cache_key.rs +153 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_macros/src/combine.rs +37 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_macros/src/combine_options.rs +62 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_macros/src/config.rs +362 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_macros/src/derive_message_formats.rs +105 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_macros/src/env_vars.rs +95 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_macros/src/kebab_case.rs +10 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_macros/src/lib.rs +159 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_macros/src/map_codes.rs +491 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_macros/src/newtype_index.rs +138 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_macros/src/rule_code_prefix.rs +129 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_macros/src/rule_namespace.rs +170 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_macros/src/rust_doc.rs +62 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_macros/src/violation_metadata.rs +130 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/Cargo.toml +55 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/ast.toml +650 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/generate.py +1105 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/comparable.rs +1943 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/docstrings.rs +22 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/expression.rs +380 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/find_node.rs +136 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/generated.rs +10873 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/helpers.rs +1899 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/identifier.rs +258 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/int.rs +235 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/lib.rs +143 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/name.rs +1015 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/node.rs +775 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/node_index.rs +152 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/nodes.rs +3669 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/operator_precedence.rs +195 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/parenthesize.rs +71 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/python_version.rs +226 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/relocate.rs +128 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/script.rs +149 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/statement_visitor.rs +105 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/stmt_if.rs +51 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/str.rs +358 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/str_prefix.rs +241 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/token/parentheses.rs +58 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/token/tokens.rs +516 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/token.rs +853 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/traversal.rs +88 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/types.rs +7 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/visitor/source_order.rs +628 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/visitor/transformer.rs +873 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/visitor.rs +873 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_ast/src/whitespace.rs +44 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_codegen/Cargo.toml +28 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_codegen/src/generator.rs +2144 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_codegen/src/lib.rs +15 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_codegen/src/stylist.rs +346 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_literal/Cargo.toml +27 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_literal/src/cformat.rs +561 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_literal/src/char.rs +15 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_literal/src/escape.rs +417 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_literal/src/float.rs +28 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_literal/src/format.rs +1086 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_literal/src/lib.rs +11 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/CONTRIBUTING.md +95 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/Cargo.toml +50 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/README.md +22 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/.editorconfig +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/ann_assign_stmt_invalid_annotation.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/ann_assign_stmt_invalid_target.py +10 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/ann_assign_stmt_invalid_value.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/ann_assign_stmt_missing_rhs.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/ann_assign_stmt_type_alias_annotation.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/args_unparenthesized_generator.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/assert_empty_msg.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/assert_empty_test.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/assert_invalid_msg_expr.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/assert_invalid_test_expr.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/assign_stmt_invalid_target.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/assign_stmt_invalid_value_expr.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/assign_stmt_keyword_target.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/assign_stmt_missing_rhs.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/assign_stmt_starred_expr_value.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/async_unexpected_token.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/aug_assign_stmt_invalid_target.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/aug_assign_stmt_invalid_value.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/aug_assign_stmt_missing_rhs.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/case_expect_indented_block.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/class_def_empty_body.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/class_def_missing_name.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/class_def_unclosed_type_param_list.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/class_type_params_py311.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/clause_expect_indented_block.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/clause_expect_single_statement.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/comma_separated_missing_comma.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/comma_separated_missing_comma_between_elements.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/comma_separated_missing_element_between_commas.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/comma_separated_missing_first_element.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/comprehension_missing_for_after_async.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/debug_shadow_class.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/debug_shadow_function.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/debug_shadow_import.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/debug_shadow_match.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/debug_shadow_try.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/debug_shadow_type_alias.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/debug_shadow_with.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/decorator_await_expression_py38.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/decorator_dict_literal_py38.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/decorator_expression_py38.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/decorator_float_literal_py38.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/decorator_invalid_expression.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/decorator_missing_expression.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/decorator_missing_newline.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/decorator_named_expression_py37.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/decorator_non_toplevel_call_expression_py38.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/decorator_unexpected_token.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/del_debug_py39.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/del_incomplete_target.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/del_stmt_empty.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/different_match_pattern_bindings.py +13 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/dotted_name_multiple_dots.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/duplicate_match_class_attr.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/duplicate_match_key.py +22 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/duplicate_type_parameter_names.py +7 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/except_star_py310.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/except_stmt_invalid_expression.py +8 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/except_stmt_missing_as_name.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/except_stmt_missing_exception.py +13 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/except_stmt_missing_exception_and_as_name.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/except_stmt_unparenthesized_tuple_as.py +8 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/except_stmt_unparenthesized_tuple_no_as_py313.py +9 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/f_string_conversion_follows_exclamation.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/f_string_empty_expression.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/f_string_invalid_conversion_flag_name_tok.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/f_string_invalid_conversion_flag_other_tok.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/f_string_invalid_starred_expr.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/f_string_lambda_without_parentheses.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/f_string_unclosed_lbrace.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/f_string_unclosed_lbrace_in_format_spec.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/for_iter_unpack_py38.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/for_stmt_invalid_iter_expr.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/for_stmt_invalid_target.py +7 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/for_stmt_invalid_target_binary_expr.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/for_stmt_invalid_target_in_keyword.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/for_stmt_missing_in_keyword.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/for_stmt_missing_iter.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/for_stmt_missing_target.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/from_import_dotted_names.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/from_import_empty_names.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/from_import_missing_module.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/from_import_missing_rpar.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/from_import_star_with_other_names.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/from_import_unparenthesized_trailing_comma.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/function_def_empty_body.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/function_def_invalid_return_expr.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/function_def_missing_identifier.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/function_def_missing_return_type.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/function_def_unclosed_parameter_list.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/function_def_unclosed_type_param_list.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/function_def_unparenthesized_return_types.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/function_type_params_py311.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/global_stmt_empty.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/global_stmt_expression.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/global_stmt_trailing_comma.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/if_stmt_elif_missing_colon.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/if_stmt_empty_body.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/if_stmt_invalid_elif_test_expr.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/if_stmt_invalid_test_expr.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/if_stmt_missing_colon.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/if_stmt_missing_test.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/if_stmt_misspelled_elif.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/implicitly_concatenated_unterminated_string.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/implicitly_concatenated_unterminated_string_multiline.py +11 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/import_alias_missing_asname.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/import_from_star.py +8 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/import_stmt_empty.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/import_stmt_parenthesized_names.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/import_stmt_star_import.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/import_stmt_trailing_comma.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/invalid_annotation_class.py +7 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/invalid_annotation_function.py +20 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/invalid_annotation_function_py314.py +11 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/invalid_annotation_py314.py +7 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/invalid_annotation_type_alias.py +8 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/invalid_byte_literal.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/invalid_del_target.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/invalid_fstring_literal_element.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/invalid_future_feature.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/invalid_string_literal.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/ipython_help_escape_command_error_recovery_1.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/ipython_help_escape_command_error_recovery_2.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/ipython_help_escape_command_error_recovery_3.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/irrefutable_case_pattern.py +12 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/iter_unpack_return_py37.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/iter_unpack_yield_py37.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/lambda_body_with_starred_expr.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/lambda_body_with_yield_expr.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/match_before_py310.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/match_classify_as_keyword.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/match_classify_as_keyword_or_identifier.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/match_expected_colon.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/match_stmt_expect_indented_block.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/match_stmt_expected_case_block.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/match_stmt_invalid_guard_expr.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/match_stmt_invalid_subject_expr.py +7 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/match_stmt_missing_guard_expr.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/match_stmt_missing_pattern.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/match_stmt_no_newline_before_case.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/match_stmt_single_starred_subject.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/mixed_bytes_and_non_bytes_literals.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/multiple_assignment_in_case_pattern.py +10 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/multiple_clauses_on_same_line.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/multiple_starred_assignment_target.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/named_expr_slice.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/named_expr_slice_parse_error.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/nested_async_comprehension_py310.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/nested_quote_in_format_spec_py312.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/node_range_with_gaps.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/nonlocal_declaration_at_module_level.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/nonlocal_stmt_empty.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/nonlocal_stmt_expression.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/nonlocal_stmt_trailing_comma.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/param_missing_annotation.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/param_missing_default.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/param_with_invalid_annotation.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/param_with_invalid_default.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/param_with_invalid_star_annotation.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/param_with_star_annotation_py310.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/params_duplicate_names.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/params_expected_after_star_separator.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/params_kwarg_after_star_separator.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/params_multiple_kwargs.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/params_multiple_slash_separator.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/params_multiple_star_separator.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/params_multiple_varargs.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/params_no_arg_before_slash.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/params_non_default_after_default.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/params_star_after_slash.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/params_star_separator_after_star_param.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/params_var_keyword_with_default.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/params_var_positional_with_default.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/parenthesized_context_manager_py38.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/parenthesized_kwarg_py38.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/pep701_f_string_py311.py +12 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/pep701_nested_interpolation_py311.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/pos_only_py37.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/raise_stmt_from_without_exc.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/raise_stmt_invalid_cause.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/raise_stmt_invalid_exc.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/raise_stmt_unparenthesized_tuple_cause.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/raise_stmt_unparenthesized_tuple_exc.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/rebound_comprehension_variable.py +9 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/return_stmt_invalid_expr.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/simple_and_compound_stmt_on_same_line.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/simple_and_compound_stmt_on_same_line_in_block.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/simple_stmts_on_same_line.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/simple_stmts_on_same_line_in_block.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/single_star_for.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/single_star_return.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/single_star_yield.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/single_starred_assignment_target.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/star_index_py310.py +7 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/star_slices.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/t_string_empty_expression.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/t_string_invalid_conversion_flag_name_tok.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/t_string_invalid_conversion_flag_other_tok.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/t_string_invalid_starred_expr.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/t_string_lambda_without_parentheses.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/t_string_unclosed_lbrace.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/t_string_unclosed_lbrace_in_format_spec.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/template_strings_py313.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/try_stmt_invalid_order.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/try_stmt_missing_except_finally.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/try_stmt_misspelled_except.py +14 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/try_stmt_mixed_except_kind.py +22 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/tuple_context_manager_py38.py +11 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/type_alias_incomplete_stmt.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/type_alias_invalid_value_expr.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/type_param_default_py312.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/type_param_invalid_bound_expr.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/type_param_missing_bound.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/type_param_param_spec_bound.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/type_param_param_spec_invalid_default_expr.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/type_param_param_spec_missing_default.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/type_param_type_var_invalid_default_expr.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/type_param_type_var_missing_default.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/type_param_type_var_tuple_bound.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/type_param_type_var_tuple_invalid_default_expr.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/type_param_type_var_tuple_missing_default.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/type_parameter_default_order.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/type_params_empty.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/type_stmt_py311.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/unparenthesized_named_expr_index_py38.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/unparenthesized_named_expr_set_comp_py38.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/unparenthesized_named_expr_set_literal_py38.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/unterminated_fstring_newline_recovery.py +8 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/walrus_py37.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/while_stmt_invalid_test_expr.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/while_stmt_missing_colon.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/while_stmt_missing_test.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/with_items_parenthesized_missing_colon.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/with_items_parenthesized_missing_comma.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/write_to_debug_expr.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/err/yield_from_in_async_function.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/all_async_comprehension_py310.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/ambiguous_lpar_with_items_binary_expr.py +10 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/ambiguous_lpar_with_items_if_expr.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/ann_assign_stmt_simple_target.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/args_unparenthesized_generator.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/assign_stmt_starred_expr_value.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/assign_targets_terminator.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/async_for_statement.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/async_function_definition.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/async_with_statement.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/class_def_arguments.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/class_keyword_in_case_pattern.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/class_type_params_py312.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/comma_separated_regular_list_terminator.py +7 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/debug_rename_import.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/decorator_async_function.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/decorator_await_expression_py39.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/decorator_expression_dotted_ident_py38.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/decorator_expression_eval_hack_py38.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/decorator_expression_identity_hack_py38.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/decorator_expression_py39.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/del_debug_py38.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/del_targets_terminator.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/different_match_pattern_bindings.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/dotted_name_normalized_spaces.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/duplicate_match_key_attr.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/except_star_py311.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/except_stmt_as_name_soft_keyword.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/except_stmt_unparenthesized_tuple_no_as_py314.py +9 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/for_in_target_valid_expr.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/for_iter_unpack_py38.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/for_iter_unpack_py39.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/from_import_no_space.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/from_import_soft_keyword_module_name.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/from_import_stmt_terminator.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/fstring_format_spec_terminator.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/function_def_parameter_range.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/function_def_parenthesized_return_types.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/function_def_valid_return_expr.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/function_type_params_py312.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/global_stmt.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/import_as_name_soft_keyword.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/import_from_star.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/import_stmt_terminator.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/irrefutable_case_pattern_at_end.py +9 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/iter_unpack_return_py37.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/iter_unpack_return_py38.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/iter_unpack_yield_py37.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/iter_unpack_yield_py38.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/lambda_with_no_parameters.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/lambda_with_valid_body.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/match_after_py310.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/match_as_pattern.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/match_as_pattern_soft_keyword.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/match_attr_pattern_soft_keyword.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/match_classify_as_identifier_1.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/match_classify_as_identifier_2.py +13 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/match_classify_as_keyword_1.py +24 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/match_classify_as_keyword_2.py +12 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/match_classify_as_keyword_or_identifier.py +10 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/match_sequence_pattern_parentheses_terminator.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/match_sequence_pattern_terminator.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/match_stmt_subject_expr.py +9 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/match_stmt_valid_guard_expr.py +8 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/multiple_assignment_in_case_pattern.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/multiple_starred_assignment_target.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/nested_alternative_patterns.py +9 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/nested_async_comprehension_py310.py +7 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/nested_async_comprehension_py311.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/non_duplicate_type_parameter_names.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/non_nested_quote_in_format_spec_py311.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/non_rebound_comprehension_variable.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/nonlocal_declaration_at_module_level.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/nonlocal_stmt.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/param_with_annotation.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/param_with_default.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/param_with_star_annotation.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/param_with_star_annotation_py310.py +9 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/param_with_star_annotation_py311.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/params_non_default_after_star.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/params_seen_keyword_only_param_after_star.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/parenthesized_context_manager_py39.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/parenthesized_kwarg_py37.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/parenthesized_named_expr_index_py38.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/parenthesized_named_expr_py38.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/parenthesized_star_index_py310.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/pep701_f_string_py311.py +9 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/pep701_f_string_py312.py +10 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/pep750_t_string_py314.py +10 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/pos_only_py38.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/read_from_debug.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/simple_stmts_in_block.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/simple_stmts_with_semicolons.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/single_parenthesized_item_context_manager_py38.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/single_star_in_tuple.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/single_starred_assignment_target.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/star_index_py311.py +7 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/template_strings_py314.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/tuple_context_manager_py38.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/type_param_default_py313.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/type_param_param_spec.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/type_param_type_var.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/type_param_type_var_tuple.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/type_stmt_py312.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/unparenthesized_named_expr_index_py39.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/unparenthesized_named_expr_py39.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/valid_annotation_class.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/valid_annotation_function_py313.py +11 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/valid_annotation_py313.py +7 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/valid_future_feature.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/inline/ok/walrus_py38.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/double_starred.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/duplicate_keyword_arguments.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/invalid_expression.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/invalid_keyword_expression.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/invalid_order.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/missing_argument.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/missing_comma.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/missing_expression.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/starred.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/unclosed_0.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/unclosed_1.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/unclosed_2.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/attribute/invalid_member.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/attribute/multiple_dots.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/attribute/no_member.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/await/no_expression_0.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/await/no_expression_1.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/await/recover.py +17 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/bin_op/invalid_rhs_expression.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/bin_op/missing_lhs.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/bin_op/missing_rhs_0.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/bin_op/missing_rhs_1.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/bin_op/multiple_ops.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/bin_op/named_expression.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/bin_op/starred_expression.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/bool_op/invalid_rhs_expression.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/bool_op/missing_lhs.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/bool_op/missing_rhs.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/bool_op/named_expression.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/bool_op/starred_expression.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/compare/invalid_order.py +7 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/compare/invalid_rhs_expression.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/compare/missing_lhs.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/compare/missing_rhs_0.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/compare/missing_rhs_1.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/compare/missing_rhs_2.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/compare/multiple_equals.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/compare/named_expression.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/compare/starred_expression.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/dict/comprehension.py +17 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/dict/double_star.py +12 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/dict/double_star_comprehension.py +9 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/dict/missing_closing_brace_0.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/dict/missing_closing_brace_1.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/dict/missing_closing_brace_2.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/dict/named_expression_0.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/dict/named_expression_1.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/dict/recover.py +24 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/emoji_identifiers.py +7 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/emoji_statement.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/if/missing_orelse_expr_0.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/if/missing_orelse_expr_1.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/if/missing_test_expr_0.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/if/missing_test_expr_1.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/if/recover.py +10 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/lambda_default_parameters.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/lambda_duplicate_parameters.py +9 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/list/comprehension.py +20 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/list/missing_closing_bracket_0.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/list/missing_closing_bracket_1.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/list/missing_closing_bracket_2.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/list/missing_closing_bracket_3.py +7 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/list/recover.py +20 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/list/star_expression_precedence.py +10 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/named/invalid_target.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/named/missing_expression_0.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/named/missing_expression_1.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/named/missing_expression_2.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/named/missing_expression_3.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/named/missing_expression_4.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/generator.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/missing_closing_paren_0.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/missing_closing_paren_1.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/missing_closing_paren_2.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/missing_closing_paren_3.py +7 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/parenthesized.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/tuple.py +21 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/tuple_starred_expr.py +20 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/set/comprehension.py +20 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/set/missing_closing_curly_brace_0.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/set/missing_closing_curly_brace_1.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/set/missing_closing_curly_brace_2.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/set/missing_closing_curly_brace_3.py +7 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/set/recover.py +22 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/set/star_expression_precedence.py +10 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/subscript/invalid_slice_element.py +12 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/subscript/unclosed_slice_0.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/subscript/unclosed_slice_1.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/unary/named_expression.py +2 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/unary/no_expression_0.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/unary/no_expression_1.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/unary.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/yield/named_expression.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/yield/star_expression.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/yield_from/starred_expression.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/expressions/yield_from/unparenthesized.py +9 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/re_lex_logical_token.py +57 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/re_lex_logical_token_mac_eol.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/re_lex_logical_token_windows_eol.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/re_lexing/fstring_format_spec_1.py +12 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/re_lexing/line_continuation_1.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/re_lexing/line_continuation_windows_eol.py +4 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/re_lexing/triple_quoted_fstring_1.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/re_lexing/triple_quoted_fstring_2.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/re_lexing/triple_quoted_fstring_3.py +7 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/re_lexing/ty_1828.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/statements/function_type_parameters.py +19 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/statements/if_extra_closing_parentheses.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/statements/if_extra_indent.py +8 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/statements/invalid_assignment_targets.py +42 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/statements/invalid_augmented_assignment_target.py +34 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/statements/match/as_pattern_0.py +8 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/statements/match/as_pattern_1.py +8 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/statements/match/as_pattern_2.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/statements/match/as_pattern_3.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/statements/match/as_pattern_4.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/statements/match/invalid_class_pattern.py +17 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/statements/match/invalid_lhs_or_rhs_pattern.py +41 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/statements/match/invalid_mapping_pattern.py +23 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/statements/match/star_pattern_usage.py +24 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/statements/match/unary_add_usage.py +12 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/statements/with/ambiguous_lpar_with_items.py +32 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/statements/with/empty_with_items.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/statements/with/unclosed_ambiguous_lpar.py +3 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/statements/with/unclosed_ambiguous_lpar_eof.py +1 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/invalid/statements/with/unparenthesized_with_items.py +9 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/arguments.py +50 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/attribute.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/await.py +15 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/bin_op.py +33 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/bool_op.py +9 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/call.py +21 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/compare.py +30 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/dictionary.py +41 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/dictionary_comprehension.py +16 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/f_string.py +64 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/generator.py +20 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/if.py +21 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/lambda.py +24 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/list.py +34 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/list_comprehension.py +25 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/name.py +11 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/named.py +8 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/number_literal.py +40 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/parenthesized.py +9 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/set.py +33 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/set_comprehension.py +14 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/slice.py +21 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/starred.py +8 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/string.py +17 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/subscript.py +17 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/t_string.py +61 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/tuple.py +27 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/unary_op.py +22 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/yield.py +14 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/expressions/yield_from.py +11 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/other/atom.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/other/decorator.py +50 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/statement/ambiguous_lpar_with_items.py +105 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/statement/annotated_assignment.py +6 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/statement/assert.py +11 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/statement/assignment.py +43 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/statement/augmented_assignment.py +21 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/statement/class.py +67 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/statement/delete.py +13 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/statement/for.py +37 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/statement/from_import.py +9 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/statement/function.py +162 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/statement/if.py +37 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/statement/import.py +5 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/statement/match.py +340 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/statement/raise.py +18 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/statement/return.py +12 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/statement/simple.py +13 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/statement/try.py +99 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/statement/type.py +84 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/statement/while.py +28 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/resources/valid/statement/with.py +14 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/error.rs +1082 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/lexer/cursor.rs +178 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/lexer/indentation.rs +157 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/lexer/interpolated_string.rs +157 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/lexer.rs +3064 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/lib.rs +542 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/parser/expression.rs +3061 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/parser/helpers.rs +106 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/parser/mod.rs +1504 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/parser/options.rs +59 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/parser/pattern.rs +793 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/parser/progress.rs +46 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/parser/recovery.rs +206 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__expr_mode_invalid_syntax1.snap +9 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__expr_mode_invalid_syntax2.snap +9 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__expr_mode_invalid_syntax3.snap +9 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__expr_mode_valid_syntax.snap +12 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__fstring_expr_inner_line_continuation_and_t_string.snap +10 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__fstring_expr_inner_line_continuation_newline_t_string.snap +12 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__ipython_escape_commands.snap +455 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__unicode_aliases.snap +43 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/parser/statement.rs +4033 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/parser/tests.rs +159 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/semantic_errors.rs +2248 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__assignment.snap +50 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__bom.snap +30 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__bom_with_offset.snap +30 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__bom_with_offset_edge.snap +20 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__comment_until_mac_eol.snap +34 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__comment_until_unix_eol.snap +34 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__comment_until_windows_eol.snap +34 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__dedent_after_whitespace.snap +80 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_mac_eol.snap +92 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_tabs_mac_eol.snap +92 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_tabs_unix_eol.snap +92 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_tabs_windows_eol.snap +92 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_unix_eol.snap +92 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_windows_eol.snap +92 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__emoji_identifier.snap +25 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__empty_fstrings.snap +99 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__empty_ipython_escape_command.snap +109 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__empty_tstrings.snap +98 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__escape_unicode_name.snap +23 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring.snap +105 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_comments.snap +71 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_conversion.snap +133 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_escape.snap +86 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_escape_braces.snap +133 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_escape_raw.snap +86 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_expression_multiline.snap +85 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_multiline.snap +136 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_named_unicode.snap +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_named_unicode_raw.snap +59 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_nested.snap +216 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_newline_format_spec.snap +196 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_parentheses.snap +209 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_prefix.snap +154 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_single_quote_escape_mac_eol.snap +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_single_quote_escape_unix_eol.snap +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_single_quote_escape_windows_eol.snap +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_format_spec.snap +289 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_ipy_escape_command.snap +63 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_lambda_expression.snap +126 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_multiline_format_spec.snap +143 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_named_expression.snap +187 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_nul_char.snap +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__indentation_with_mac_eol.snap +62 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__indentation_with_unix_eol.snap +62 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__indentation_with_windows_eol.snap +62 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__invalid_leading_zero_big.snap +29 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__invalid_leading_zero_small.snap +29 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command.snap +131 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_assignment.snap +94 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_indentation.snap +45 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_mac_eol.snap +21 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_unix_eol.snap +21 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_windows_eol.snap +21 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_with_mac_eol_and_eof.snap +21 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_with_unix_eol_and_eof.snap +21 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_with_windows_eol_and_eof.snap +21 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_help_end_escape_command.snap +186 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_comment_empty.snap +24 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_comment_long.snap +24 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_comment_single_whitespace.snap +24 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_comment_whitespace.snap +24 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_continuation_at_eof_after_newline_mac_eol.snap +22 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_continuation_at_eof_after_newline_unix_eol.snap +22 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_continuation_at_eof_after_newline_windows_eol.snap +22 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_continuation_at_eof_mac_eol.snap +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_continuation_at_eof_unix_eol.snap +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_continuation_at_eof_windows_eol.snap +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__logical_newline_line_comment.snap +26 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__match_softkeyword_in_notebook.snap +70 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__nested_t_and_fstring.snap +226 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__newline_in_brackets_mac_eol.snap +146 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__newline_in_brackets_unix_eol.snap +146 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__newline_in_brackets_windows_eol.snap +146 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__non_logical_newline_in_string_continuation.snap +66 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__numbers.snap +100 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__operators.snap +34 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__string.snap +77 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__string_continuation_with_mac_eol.snap +23 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__string_continuation_with_unix_eol.snap +23 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__string_continuation_with_windows_eol.snap +23 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tet_too_low_dedent.snap +59 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__triple_quoted_mac_eol.snap +23 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__triple_quoted_unix_eol.snap +23 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__triple_quoted_windows_eol.snap +23 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring.snap +105 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_comments.snap +71 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_conversion.snap +133 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_escape.snap +86 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_escape_braces.snap +133 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_escape_raw.snap +86 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_expression_multiline.snap +85 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_multiline.snap +136 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_named_unicode.snap +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_named_unicode_raw.snap +59 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_nested.snap +216 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_newline_format_spec.snap +196 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_parentheses.snap +209 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_prefix.snap +153 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_single_quote_escape_mac_eol.snap +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_single_quote_escape_unix_eol.snap +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_single_quote_escape_windows_eol.snap +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_with_format_spec.snap +289 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_with_ipy_escape_command.snap +63 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_with_lambda_expression.snap +125 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_with_multiline_format_spec.snap +143 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_with_named_expression.snap +187 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_with_nul_char.snap +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__backspace_alias.snap +33 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__bell_alias.snap +33 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__carriage_return_alias.snap +33 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__character_tabulation_with_justification_alias.snap +33 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__delete_alias.snap +33 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__dont_panic_on_8_in_octal_escape.snap +43 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__double_quoted_byte.snap +290 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__escape_alias.snap +33 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__escape_char_in_byte_literal.snap +44 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__escape_octet.snap +39 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__form_feed_alias.snap +33 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_constant_range.snap +91 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_escaped_character.snap +60 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_escaped_newline.snap +60 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_line_continuation.snap +62 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_parse_self_documenting_base.snap +58 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_parse_self_documenting_base_more.snap +94 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_parse_self_documenting_format.snap +72 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_unescaped_newline.snap +60 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__hts_alias.snap +33 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__invalid_byte_literal_error.snap +11 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__invalid_unicode_literal.snap +11 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__invalid_unicode_name_error.snap +11 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__missing_unicode_lbrace_error.snap +11 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__missing_unicode_rbrace_error.snap +11 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_empty_fstring.snap +35 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_empty_tstring.snap +33 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_f_string_concat_1.snap +58 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_f_string_concat_2.snap +58 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_f_string_concat_3.snap +88 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_f_string_concat_4.snap +101 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_f_t_string_concat_1_error.snap +10 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_f_t_string_concat_2_error.snap +10 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring.snap +77 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_equals.snap +74 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_nested_concatenation_string_spec.snap +106 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_nested_spec.snap +77 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_nested_string_spec.snap +90 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_not_equals.snap +74 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_not_nested_spec.snap +67 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_self_doc_prec_space.snap +58 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_self_doc_trailing_space.snap +58 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_yield_expr.snap +52 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_string_concat.snap +49 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_string_triple_quotes_with_kind.snap +33 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_t_string_concat_1_error.snap +10 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_t_string_concat_2_error.snap +10 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_t_string_concat_3_error.snap +10 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_t_string_concat_4_error.snap +10 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_tstring.snap +75 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_tstring_equals.snap +72 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_tstring_nested_concatenation_string_spec.snap +104 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_tstring_nested_spec.snap +75 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_tstring_nested_string_spec.snap +88 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_tstring_not_equals.snap +72 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_tstring_not_nested_spec.snap +65 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_tstring_self_doc_prec_space.snap +56 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_tstring_self_doc_trailing_space.snap +56 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_tstring_yield_expr.snap +50 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_u_f_string_concat_1.snap +58 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_u_f_string_concat_2.snap +71 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_u_string_concat_1.snap +49 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_u_string_concat_2.snap +49 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_u_t_string_concat_1_error.snap +10 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_u_t_string_concat_2_error.snap +10 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__raw_byte_literal_1.snap +40 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__raw_byte_literal_2.snap +38 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__raw_fstring.snap +55 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__raw_tstring.snap +53 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__single_quoted_byte.snap +290 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__string_parser_escaped_mac_eol.snap +33 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__string_parser_escaped_unix_eol.snap +33 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__string_parser_escaped_windows_eol.snap +33 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__triple_quoted_raw_fstring.snap +55 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__triple_quoted_raw_tstring.snap +53 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__tstring_constant_range.snap +89 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__tstring_escaped_character.snap +58 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__tstring_escaped_newline.snap +58 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__tstring_line_continuation.snap +60 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__tstring_parse_self_documenting_base.snap +56 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__tstring_parse_self_documenting_base_more.snap +92 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__tstring_parse_self_documenting_format.snap +70 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__tstring_unescaped_newline.snap +58 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/string.rs +1154 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/token.rs +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/token_set.rs +52 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/token_source.rs +264 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/src/typing.rs +92 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/fixtures.rs +728 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/generate_inline_tests.rs +303 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ann_assign_stmt_invalid_annotation.py.snap +242 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ann_assign_stmt_invalid_target.py.snap +566 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ann_assign_stmt_invalid_value.py.snap +249 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ann_assign_stmt_missing_rhs.py.snap +46 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ann_assign_stmt_type_alias_annotation.py.snap +123 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@args_unparenthesized_generator.py.snap +340 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assert_empty_msg.py.snap +37 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assert_empty_test.py.snap +37 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assert_invalid_msg_expr.py.snap +178 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assert_invalid_test_expr.py.snap +163 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assign_stmt_invalid_target.py.snap +287 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assign_stmt_invalid_value_expr.py.snap +345 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assign_stmt_keyword_target.py.snap +163 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assign_stmt_missing_rhs.py.snap +226 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assign_stmt_starred_expr_value.py.snap +220 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@async_unexpected_token.py.snap +225 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@aug_assign_stmt_invalid_target.py.snap +258 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@aug_assign_stmt_invalid_value.py.snap +282 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@aug_assign_stmt_missing_rhs.py.snap +151 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@case_expect_indented_block.py.snap +95 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@class_def_empty_body.py.snap +94 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@class_def_missing_name.py.snap +158 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@class_def_unclosed_type_param_list.py.snap +127 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@class_type_params_py311.py.snap +197 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@clause_expect_indented_block.py.snap +70 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@clause_expect_single_statement.py.snap +59 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@comma_separated_missing_comma.py.snap +78 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@comma_separated_missing_comma_between_elements.py.snap +65 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@comma_separated_missing_element_between_commas.py.snap +64 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@comma_separated_missing_first_element.py.snap +58 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@comprehension_missing_for_after_async.py.snap +89 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@debug_shadow_class.py.snap +106 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@debug_shadow_function.py.snap +190 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@debug_shadow_import.py.snap +150 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@debug_shadow_match.py.snap +72 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@debug_shadow_try.py.snap +85 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@debug_shadow_type_alias.py.snap +111 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@debug_shadow_with.py.snap +101 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_await_expression_py38.py.snap +108 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_dict_literal_py38.py.snap +97 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_expression_py38.py.snap +115 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_float_literal_py38.py.snap +76 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_invalid_expression.py.snap +196 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_missing_expression.py.snap +211 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_missing_newline.py.snap +183 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_named_expression_py37.py.snap +151 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_non_toplevel_call_expression_py38.py.snap +111 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_unexpected_token.py.snap +94 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@del_debug_py39.py.snap +39 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@del_incomplete_target.py.snap +140 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@del_stmt_empty.py.snap +29 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@different_match_pattern_bindings.py.snap +1233 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@dotted_name_multiple_dots.py.snap +99 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@duplicate_match_class_attr.py.snap +831 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@duplicate_match_key.py.snap +1668 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@duplicate_type_parameter_names.py.snap +674 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_star_py310.py.snap +161 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_invalid_expression.py.snap +138 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_missing_as_name.py.snap +104 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_missing_exception.py.snap +170 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_missing_exception_and_as_name.py.snap +69 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_unparenthesized_tuple_as.py.snap +171 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_unparenthesized_tuple_no_as_py313.py.snap +159 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__double_starred.py.snap +250 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__duplicate_keyword_arguments.py.snap +155 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__invalid_expression.py.snap +226 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__invalid_keyword_expression.py.snap +262 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__invalid_order.py.snap +346 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__missing_argument.py.snap +65 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__missing_comma.py.snap +65 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__missing_expression.py.snap +188 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__starred.py.snap +211 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__unclosed_0.py.snap +83 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__unclosed_1.py.snap +92 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__unclosed_2.py.snap +92 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__attribute__invalid_member.py.snap +163 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__attribute__multiple_dots.py.snap +174 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__attribute__no_member.py.snap +99 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__await__no_expression_0.py.snap +74 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__await__no_expression_1.py.snap +78 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__await__recover.py.snap +368 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__invalid_rhs_expression.py.snap +131 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__missing_lhs.py.snap +69 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__missing_rhs_0.py.snap +85 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__missing_rhs_1.py.snap +117 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__multiple_ops.py.snap +168 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__named_expression.py.snap +137 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__starred_expression.py.snap +102 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bool_op__invalid_rhs_expression.py.snap +135 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bool_op__missing_lhs.py.snap +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bool_op__missing_rhs.py.snap +86 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bool_op__named_expression.py.snap +120 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bool_op__starred_expression.py.snap +106 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__invalid_order.py.snap +186 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__invalid_rhs_expression.py.snap +139 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__missing_lhs.py.snap +69 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__missing_rhs_0.py.snap +88 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__missing_rhs_1.py.snap +100 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__missing_rhs_2.py.snap +88 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__multiple_equals.py.snap +134 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__named_expression.py.snap +145 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__starred_expression.py.snap +208 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__comprehension.py.snap +938 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__double_star.py.snap +636 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__double_star_comprehension.py.snap +170 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__missing_closing_brace_0.py.snap +114 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__missing_closing_brace_1.py.snap +75 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__missing_closing_brace_2.py.snap +92 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__named_expression_0.py.snap +155 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__named_expression_1.py.snap +181 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__recover.py.snap +569 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__emoji_identifiers.py.snap +148 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__emoji_statement.py.snap +21 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__if__missing_orelse_expr_0.py.snap +94 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__if__missing_orelse_expr_1.py.snap +92 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__if__missing_test_expr_0.py.snap +94 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__if__missing_test_expr_1.py.snap +92 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__if__recover.py.snap +407 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__lambda_default_parameters.py.snap +110 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__lambda_duplicate_parameters.py.snap +390 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__comprehension.py.snap +902 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__missing_closing_bracket_0.py.snap +47 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__missing_closing_bracket_1.py.snap +62 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__missing_closing_bracket_2.py.snap +71 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__missing_closing_bracket_3.py.snap +92 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__recover.py.snap +347 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__star_expression_precedence.py.snap +525 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__invalid_target.py.snap +237 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__missing_expression_0.py.snap +46 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__missing_expression_1.py.snap +52 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__missing_expression_2.py.snap +112 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__missing_expression_3.py.snap +67 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__missing_expression_4.py.snap +83 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__generator.py.snap +160 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__missing_closing_paren_0.py.snap +38 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__missing_closing_paren_1.py.snap +53 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__missing_closing_paren_2.py.snap +72 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__missing_closing_paren_3.py.snap +93 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__parenthesized.py.snap +82 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__tuple.py.snap +424 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__tuple_starred_expr.py.snap +1546 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__comprehension.py.snap +902 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__missing_closing_curly_brace_0.py.snap +46 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__missing_closing_curly_brace_1.py.snap +61 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__missing_closing_curly_brace_2.py.snap +70 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__missing_closing_curly_brace_3.py.snap +91 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__recover.py.snap +335 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__star_expression_precedence.py.snap +517 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__subscript__invalid_slice_element.py.snap +340 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__subscript__unclosed_slice_0.py.snap +78 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__subscript__unclosed_slice_1.py.snap +123 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__unary.py.snap +58 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__unary__named_expression.py.snap +102 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__unary__no_expression_0.py.snap +74 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__unary__no_expression_1.py.snap +74 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__yield__named_expression.py.snap +129 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__yield__star_expression.py.snap +137 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__yield_from__starred_expression.py.snap +104 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__yield_from__unparenthesized.py.snap +177 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_conversion_follows_exclamation.py.snap +187 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_empty_expression.py.snap +124 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_invalid_conversion_flag_name_tok.py.snap +69 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_invalid_conversion_flag_other_tok.py.snap +124 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_invalid_starred_expr.py.snap +229 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_lambda_without_parentheses.py.snap +127 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_unclosed_lbrace.py.snap +300 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_unclosed_lbrace_in_format_spec.py.snap +158 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_iter_unpack_py38.py.snap +246 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_invalid_iter_expr.py.snap +214 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_invalid_target.py.snap +541 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_invalid_target_binary_expr.py.snap +382 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_invalid_target_in_keyword.py.snap +496 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_missing_in_keyword.py.snap +106 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_missing_iter.py.snap +74 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_missing_target.py.snap +66 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_dotted_names.py.snap +196 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_empty_names.py.snap +101 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_missing_module.py.snap +59 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_missing_rpar.py.snap +168 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_star_with_other_names.py.snap +220 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_unparenthesized_trailing_comma.py.snap +134 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_empty_body.py.snap +116 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_invalid_return_expr.py.snap +213 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_missing_identifier.py.snap +115 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_missing_return_type.py.snap +60 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_unclosed_parameter_list.py.snap +265 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_unclosed_type_param_list.py.snap +169 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_unparenthesized_return_types.py.snap +152 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_type_params_py311.py.snap +144 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@global_stmt_empty.py.snap +29 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@global_stmt_expression.py.snap +57 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@global_stmt_trailing_comma.py.snap +86 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_elif_missing_colon.py.snap +86 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_empty_body.py.snap +69 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_invalid_elif_test_expr.py.snap +118 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_invalid_test_expr.py.snap +148 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_missing_colon.py.snap +107 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_missing_test.py.snap +51 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_misspelled_elif.py.snap +137 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@implicitly_concatenated_unterminated_string.py.snap +207 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@implicitly_concatenated_unterminated_string_multiline.py.snap +253 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@import_alias_missing_asname.py.snap +40 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@import_from_star.py.snap +271 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@import_stmt_empty.py.snap +29 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@import_stmt_parenthesized_names.py.snap +90 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@import_stmt_star_import.py.snap +136 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@import_stmt_trailing_comma.py.snap +72 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_annotation_class.py.snap +575 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_annotation_function.py.snap +1808 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_annotation_function_py314.py.snap +660 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_annotation_py314.py.snap +239 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_annotation_type_alias.py.snap +491 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_byte_literal.py.snap +123 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_del_target.py.snap +297 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_fstring_literal_element.py.snap +104 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_future_feature.py.snap +146 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_string_literal.py.snap +84 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ipython_help_escape_command_error_recovery_1.py.snap +84 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ipython_help_escape_command_error_recovery_2.py.snap +80 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ipython_help_escape_command_error_recovery_3.py.snap +112 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@irrefutable_case_pattern.py.snap +438 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@iter_unpack_return_py37.py.snap +163 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@iter_unpack_yield_py37.py.snap +288 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@lambda_body_with_starred_expr.py.snap +311 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@lambda_body_with_yield_expr.py.snap +138 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_before_py310.py.snap +70 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_classify_as_keyword.py.snap +74 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_classify_as_keyword_or_identifier.py.snap +73 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_expected_colon.py.snap +85 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_expect_indented_block.py.snap +73 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_expected_case_block.py.snap +149 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_invalid_guard_expr.py.snap +239 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_invalid_subject_expr.py.snap +229 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_missing_guard_expr.py.snap +72 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_missing_pattern.py.snap +72 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_no_newline_before_case.py.snap +71 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_single_starred_subject.py.snap +73 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@mixed_bytes_and_non_bytes_literals.py.snap +200 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@multiple_assignment_in_case_pattern.py.snap +822 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@multiple_clauses_on_same_line.py.snap +429 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@multiple_starred_assignment_target.py.snap +520 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@named_expr_slice.py.snap +285 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@named_expr_slice_parse_error.py.snap +95 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@nested_async_comprehension_py310.py.snap +938 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@nested_quote_in_format_spec_py312.py.snap +92 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@node_range_with_gaps.py.snap +135 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@nonlocal_declaration_at_module_level.py.snap +61 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@nonlocal_stmt_empty.py.snap +56 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@nonlocal_stmt_expression.py.snap +84 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@nonlocal_stmt_trailing_comma.py.snap +115 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_missing_annotation.py.snap +138 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_missing_default.py.snap +147 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_with_invalid_annotation.py.snap +269 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_with_invalid_default.py.snap +251 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_with_invalid_star_annotation.py.snap +363 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_with_star_annotation_py310.py.snap +88 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_duplicate_names.py.snap +187 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_expected_after_star_separator.py.snap +293 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_kwarg_after_star_separator.py.snap +71 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_multiple_kwargs.py.snap +87 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_multiple_slash_separator.py.snap +185 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_multiple_star_separator.py.snap +185 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_multiple_varargs.py.snap +299 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_no_arg_before_slash.py.snap +122 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_non_default_after_default.py.snap +131 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_star_after_slash.py.snap +350 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_star_separator_after_star_param.py.snap +207 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_var_keyword_with_default.py.snap +187 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_var_positional_with_default.py.snap +139 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@parenthesized_context_manager_py38.py.snap +225 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@parenthesized_kwarg_py38.py.snap +183 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@pep701_f_string_py311.py.snap +1047 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@pep701_nested_interpolation_py311.py.snap +231 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@pos_only_py37.py.snap +332 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@raise_stmt_from_without_exc.py.snap +62 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@raise_stmt_invalid_cause.py.snap +148 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@raise_stmt_invalid_exc.py.snap +121 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@raise_stmt_unparenthesized_tuple_cause.py.snap +110 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@raise_stmt_unparenthesized_tuple_exc.py.snap +146 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lex_logical_token.py.snap +952 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lex_logical_token_mac_eol.py.snap +123 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lex_logical_token_windows_eol.py.snap +127 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__fstring_format_spec_1.py.snap +517 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__line_continuation_1.py.snap +116 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__line_continuation_windows_eol.py.snap +100 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__triple_quoted_fstring_1.py.snap +104 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__triple_quoted_fstring_2.py.snap +84 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__triple_quoted_fstring_3.py.snap +123 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__ty_1828.py.snap +227 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@rebound_comprehension_variable.py.snap +1028 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@return_stmt_invalid_expr.py.snap +219 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@simple_and_compound_stmt_on_same_line.py.snap +73 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@simple_and_compound_stmt_on_same_line_in_block.py.snap +118 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@simple_stmts_on_same_line.py.snap +164 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@simple_stmts_on_same_line_in_block.py.snap +74 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@single_star_for.py.snap +120 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@single_star_return.py.snap +71 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@single_star_yield.py.snap +77 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@single_starred_assignment_target.py.snap +64 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@star_index_py310.py.snap +471 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@star_slices.py.snap +90 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__function_type_parameters.py.snap +453 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__if_extra_closing_parentheses.py.snap +84 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__if_extra_indent.py.snap +116 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__invalid_assignment_targets.py.snap +1897 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__invalid_augmented_assignment_target.py.snap +1740 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__as_pattern_0.py.snap +104 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__as_pattern_1.py.snap +86 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__as_pattern_2.py.snap +140 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__as_pattern_3.py.snap +169 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__as_pattern_4.py.snap +128 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__invalid_class_pattern.py.snap +440 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__invalid_lhs_or_rhs_pattern.py.snap +1242 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__invalid_mapping_pattern.py.snap +649 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__star_pattern_usage.py.snap +637 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__unary_add_usage.py.snap +454 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__with__ambiguous_lpar_with_items.py.snap +1882 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__with__empty_with_items.py.snap +77 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__with__unclosed_ambiguous_lpar.py.snap +85 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__with__unclosed_ambiguous_lpar_eof.py.snap +45 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__with__unparenthesized_with_items.py.snap +405 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@t_string_empty_expression.py.snap +122 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@t_string_invalid_conversion_flag_name_tok.py.snap +68 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@t_string_invalid_conversion_flag_other_tok.py.snap +122 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@t_string_invalid_starred_expr.py.snap +224 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@t_string_lambda_without_parentheses.py.snap +129 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@t_string_unclosed_lbrace.py.snap +292 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@t_string_unclosed_lbrace_in_format_spec.py.snap +156 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@template_strings_py313.py.snap +169 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@try_stmt_invalid_order.py.snap +89 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@try_stmt_missing_except_finally.py.snap +76 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@try_stmt_misspelled_except.py.snap +294 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@try_stmt_mixed_except_kind.py.snap +279 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@tuple_context_manager_py38.py.snap +191 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_alias_incomplete_stmt.py.snap +97 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_alias_invalid_value_expr.py.snap +198 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_default_py312.py.snap +342 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_invalid_bound_expr.py.snap +312 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_missing_bound.py.snap +129 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_param_spec_bound.py.snap +104 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_param_spec_invalid_default_expr.py.snap +386 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_param_spec_missing_default.py.snap +127 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_type_var_invalid_default_expr.py.snap +470 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_type_var_missing_default.py.snap +191 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_type_var_tuple_bound.py.snap +104 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_type_var_tuple_invalid_default_expr.py.snap +394 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_type_var_tuple_missing_default.py.snap +127 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_parameter_default_order.py.snap +277 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_params_empty.py.snap +114 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_stmt_py311.py.snap +46 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@unparenthesized_named_expr_index_py38.py.snap +67 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@unparenthesized_named_expr_set_comp_py38.py.snap +103 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@unparenthesized_named_expr_set_literal_py38.py.snap +207 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@unterminated_fstring_newline_recovery.py.snap +412 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@walrus_py37.py.snap +52 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@while_stmt_invalid_test_expr.py.snap +214 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@while_stmt_missing_colon.py.snap +68 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@while_stmt_missing_test.py.snap +103 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@with_items_parenthesized_missing_colon.py.snap +67 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@with_items_parenthesized_missing_comma.py.snap +380 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@write_to_debug_expr.py.snap +227 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@yield_from_in_async_function.py.snap +68 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@all_async_comprehension_py310.py.snap +161 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@ambiguous_lpar_with_items_binary_expr.py.snap +427 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@ambiguous_lpar_with_items_if_expr.py.snap +322 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@ann_assign_stmt_simple_target.py.snap +140 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@args_unparenthesized_generator.py.snap +341 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@assign_stmt_starred_expr_value.py.snap +177 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@assign_targets_terminator.py.snap +162 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@async_for_statement.py.snap +54 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@async_function_definition.py.snap +54 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@async_with_statement.py.snap +52 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@class_def_arguments.py.snap +79 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@class_keyword_in_case_pattern.py.snap +96 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@class_type_params_py312.py.snap +137 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@comma_separated_regular_list_terminator.py.snap +190 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@debug_rename_import.py.snap +98 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@decorator_async_function.py.snap +67 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@decorator_await_expression_py39.py.snap +99 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@decorator_expression_dotted_ident_py38.py.snap +91 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@decorator_expression_eval_hack_py38.py.snap +101 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@decorator_expression_identity_hack_py38.py.snap +186 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@decorator_expression_py39.py.snap +226 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@del_debug_py38.py.snap +32 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@del_targets_terminator.py.snap +128 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@different_match_pattern_bindings.py.snap +458 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@dotted_name_normalized_spaces.py.snap +52 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@duplicate_match_key_attr.py.snap +132 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@except_star_py311.py.snap +72 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@except_stmt_as_name_soft_keyword.py.snap +152 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@except_stmt_unparenthesized_tuple_no_as_py314.py.snap +140 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__arguments.py.snap +2016 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__attribute.py.snap +268 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__await.py.snap +592 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__bin_op.py.snap +1198 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__bool_op.py.snap +459 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__call.py.snap +683 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__compare.py.snap +792 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__dictionary.py.snap +1398 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__dictionary_comprehension.py.snap +1148 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__f_string.py.snap +3101 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__generator.py.snap +801 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__if.py.snap +709 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__lambda.py.snap +1806 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__list.py.snap +925 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__list_comprehension.py.snap +1485 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__name.py.snap +142 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__named.py.snap +366 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__number_literal.py.snap +1181 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__parenthesized.py.snap +272 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__set.py.snap +708 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__set_comprehension.py.snap +852 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__slice.py.snap +747 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__starred.py.snap +405 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__string.py.snap +362 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__subscript.py.snap +893 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__t_string.py.snap +2800 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__tuple.py.snap +808 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__unary_op.py.snap +584 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__yield.py.snap +530 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__yield_from.py.snap +431 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@for_in_target_valid_expr.py.snap +230 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@for_iter_unpack_py38.py.snap +212 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@for_iter_unpack_py39.py.snap +212 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@from_import_no_space.py.snap +56 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@from_import_soft_keyword_module_name.py.snap +120 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@from_import_stmt_terminator.py.snap +256 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@fstring_format_spec_terminator.py.snap +158 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@function_def_parameter_range.py.snap +112 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@function_def_parenthesized_return_types.py.snap +138 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@function_def_valid_return_expr.py.snap +226 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@function_type_params_py312.py.snap +74 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@global_stmt.py.snap +52 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@import_as_name_soft_keyword.py.snap +88 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@import_from_star.py.snap +42 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@import_stmt_terminator.py.snap +132 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@irrefutable_case_pattern_at_end.py.snap +267 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@iter_unpack_return_py37.py.snap +155 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@iter_unpack_return_py38.py.snap +155 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@iter_unpack_yield_py37.py.snap +161 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@iter_unpack_yield_py38.py.snap +271 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@lambda_with_no_parameters.py.snap +38 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@lambda_with_valid_body.py.snap +406 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_after_py310.py.snap +61 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_as_pattern.py.snap +108 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_as_pattern_soft_keyword.py.snap +163 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_attr_pattern_soft_keyword.py.snap +272 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_classify_as_identifier_1.py.snap +49 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_classify_as_identifier_2.py.snap +366 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_classify_as_keyword_1.py.snap +670 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_classify_as_keyword_2.py.snap +270 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_classify_as_keyword_or_identifier.py.snap +334 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_sequence_pattern_parentheses_terminator.py.snap +142 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_sequence_pattern_terminator.py.snap +226 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_stmt_subject_expr.py.snap +264 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_stmt_valid_guard_expr.py.snap +325 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@multiple_assignment_in_case_pattern.py.snap +131 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@multiple_starred_assignment_target.py.snap +188 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@nested_alternative_patterns.py.snap +705 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@nested_async_comprehension_py310.py.snap +304 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@nested_async_comprehension_py311.py.snap +460 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@non_duplicate_type_parameter_names.py.snap +428 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@non_nested_quote_in_format_spec_py311.py.snap +78 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@non_rebound_comprehension_variable.py.snap +97 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@nonlocal_declaration_at_module_level.py.snap +55 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@nonlocal_stmt.py.snap +78 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@other__atom.py.snap +66 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@other__decorator.py.snap +781 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@param_with_annotation.py.snap +175 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@param_with_default.py.snap +338 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@param_with_star_annotation.py.snap +178 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@param_with_star_annotation_py310.py.snap +451 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@param_with_star_annotation_py311.py.snap +81 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@params_non_default_after_star.py.snap +267 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@params_seen_keyword_only_param_after_star.py.snap +156 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@parenthesized_context_manager_py39.py.snap +199 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@parenthesized_kwarg_py37.py.snap +63 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@parenthesized_named_expr_index_py38.py.snap +60 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@parenthesized_named_expr_py38.py.snap +151 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@parenthesized_star_index_py310.py.snap +160 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@pep701_f_string_py311.py.snap +734 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@pep701_f_string_py312.py.snap +670 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@pep750_t_string_py314.py.snap +646 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@pos_only_py38.py.snap +70 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@read_from_debug.py.snap +69 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@simple_stmts_in_block.py.snap +141 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@simple_stmts_with_semicolons.py.snap +104 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@single_parenthesized_item_context_manager_py38.py.snap +165 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@single_star_in_tuple.py.snap +250 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@single_starred_assignment_target.py.snap +171 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@star_index_py311.py.snap +406 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__ambiguous_lpar_with_items.py.snap +4654 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__annotated_assignment.py.snap +311 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__assert.py.snap +385 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__assignment.py.snap +1070 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__augmented_assignment.py.snap +552 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__class.py.snap +1443 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__delete.py.snap +341 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__for.py.snap +721 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__from_import.py.snap +280 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__function.py.snap +3839 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__if.py.snap +779 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__import.py.snap +154 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__match.py.snap +8956 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__raise.py.snap +557 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__return.py.snap +377 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__simple.py.snap +286 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__try.py.snap +1794 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__type.py.snap +3177 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__while.py.snap +533 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__with.py.snap +462 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@template_strings_py314.py.snap +141 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@tuple_context_manager_py38.py.snap +87 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@type_param_default_py313.py.snap +199 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@type_param_param_spec.py.snap +228 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@type_param_type_var.py.snap +361 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@type_param_type_var_tuple.py.snap +286 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@type_stmt_py312.py.snap +39 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@unparenthesized_named_expr_index_py39.py.snap +60 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@unparenthesized_named_expr_py39.py.snap +151 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@valid_annotation_class.py.snap +281 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@valid_annotation_function_py313.py.snap +584 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@valid_annotation_py313.py.snap +202 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@valid_future_feature.py.snap +42 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@walrus_py38.py.snap +45 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_trivia/Cargo.toml +23 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_trivia/src/comment_ranges.rs +220 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_trivia/src/comments.rs +121 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_trivia/src/cursor.rs +172 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_trivia/src/lib.rs +14 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_trivia/src/pragmas.rs +30 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_trivia/src/textwrap.rs +580 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_trivia/src/tokenizer.rs +1037 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_python_trivia/src/whitespace.rs +80 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_source_file/Cargo.toml +29 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_source_file/src/lib.rs +326 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_source_file/src/line_index.rs +973 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_source_file/src/line_ranges.rs +396 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_source_file/src/newlines.rs +457 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_text_size/Cargo.toml +32 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_text_size/src/lib.rs +36 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_text_size/src/range.rs +562 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_text_size/src/schemars_impls.rs +34 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_text_size/src/serde_impls.rs +47 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_text_size/src/size.rs +219 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_text_size/src/traits.rs +99 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_text_size/tests/auto_traits.rs +18 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_text_size/tests/constructors.rs +24 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_text_size/tests/indexing.rs +8 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_text_size/tests/main.rs +79 -0
- citry_core-1.3.0/third_party/rust/ruff/crates/ruff_text_size/tests/serde.rs +83 -0
|
@@ -0,0 +1,2083 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.3"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "allocator-api2"
|
|
16
|
+
version = "0.2.21"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "anstream"
|
|
22
|
+
version = "0.6.21"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"anstyle",
|
|
27
|
+
"anstyle-parse",
|
|
28
|
+
"anstyle-query",
|
|
29
|
+
"anstyle-wincon",
|
|
30
|
+
"colorchoice",
|
|
31
|
+
"is_terminal_polyfill",
|
|
32
|
+
"utf8parse",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstyle"
|
|
37
|
+
version = "1.0.13"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "anstyle-lossy"
|
|
43
|
+
version = "1.1.4"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "04d3a5dc826f84d0ea11882bb8054ff7f3d482602e11bb181101303a279ea01f"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"anstyle",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anstyle-parse"
|
|
52
|
+
version = "0.2.7"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"utf8parse",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "anstyle-query"
|
|
61
|
+
version = "1.1.4"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"windows-sys 0.60.2",
|
|
66
|
+
]
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "anstyle-svg"
|
|
70
|
+
version = "0.1.11"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "26b9ec8c976eada1b0f9747a3d7cc4eae3bef10613e443746e7487f26c872fde"
|
|
73
|
+
dependencies = [
|
|
74
|
+
"anstyle",
|
|
75
|
+
"anstyle-lossy",
|
|
76
|
+
"anstyle-parse",
|
|
77
|
+
"html-escape",
|
|
78
|
+
"unicode-width",
|
|
79
|
+
]
|
|
80
|
+
|
|
81
|
+
[[package]]
|
|
82
|
+
name = "anstyle-wincon"
|
|
83
|
+
version = "3.0.10"
|
|
84
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
85
|
+
checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
|
|
86
|
+
dependencies = [
|
|
87
|
+
"anstyle",
|
|
88
|
+
"once_cell_polyfill",
|
|
89
|
+
"windows-sys 0.60.2",
|
|
90
|
+
]
|
|
91
|
+
|
|
92
|
+
[[package]]
|
|
93
|
+
name = "anyhow"
|
|
94
|
+
version = "1.0.100"
|
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
97
|
+
|
|
98
|
+
[[package]]
|
|
99
|
+
name = "attribute-derive"
|
|
100
|
+
version = "0.10.5"
|
|
101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
+
checksum = "05832cdddc8f2650cc2cc187cc2e952b8c133a48eb055f35211f61ee81502d77"
|
|
103
|
+
dependencies = [
|
|
104
|
+
"attribute-derive-macro",
|
|
105
|
+
"derive-where",
|
|
106
|
+
"manyhow",
|
|
107
|
+
"proc-macro2",
|
|
108
|
+
"quote",
|
|
109
|
+
"syn",
|
|
110
|
+
]
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "attribute-derive-macro"
|
|
114
|
+
version = "0.10.5"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "0a7cdbbd4bd005c5d3e2e9c885e6fa575db4f4a3572335b974d8db853b6beb61"
|
|
117
|
+
dependencies = [
|
|
118
|
+
"collection_literals",
|
|
119
|
+
"interpolator",
|
|
120
|
+
"manyhow",
|
|
121
|
+
"proc-macro-utils",
|
|
122
|
+
"proc-macro2",
|
|
123
|
+
"quote",
|
|
124
|
+
"quote-use",
|
|
125
|
+
"syn",
|
|
126
|
+
]
|
|
127
|
+
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "autocfg"
|
|
130
|
+
version = "1.4.0"
|
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "bit-set"
|
|
136
|
+
version = "0.8.0"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
139
|
+
dependencies = [
|
|
140
|
+
"bit-vec",
|
|
141
|
+
]
|
|
142
|
+
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "bit-vec"
|
|
145
|
+
version = "0.8.0"
|
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "bitflags"
|
|
151
|
+
version = "2.10.0"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "block-buffer"
|
|
157
|
+
version = "0.10.4"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
160
|
+
dependencies = [
|
|
161
|
+
"generic-array",
|
|
162
|
+
]
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "boxcar"
|
|
166
|
+
version = "0.2.14"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
|
|
169
|
+
|
|
170
|
+
[[package]]
|
|
171
|
+
name = "bstr"
|
|
172
|
+
version = "1.12.1"
|
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
175
|
+
dependencies = [
|
|
176
|
+
"memchr",
|
|
177
|
+
"regex-automata",
|
|
178
|
+
"serde",
|
|
179
|
+
]
|
|
180
|
+
|
|
181
|
+
[[package]]
|
|
182
|
+
name = "camino"
|
|
183
|
+
version = "1.2.2"
|
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
+
checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "castaway"
|
|
189
|
+
version = "0.2.4"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
|
|
192
|
+
dependencies = [
|
|
193
|
+
"rustversion",
|
|
194
|
+
]
|
|
195
|
+
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "cfg-if"
|
|
198
|
+
version = "1.0.4"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
201
|
+
|
|
202
|
+
[[package]]
|
|
203
|
+
name = "citry_core_py"
|
|
204
|
+
version = "1.1.0"
|
|
205
|
+
dependencies = [
|
|
206
|
+
"citry_html_transform",
|
|
207
|
+
"citry_template_parser",
|
|
208
|
+
"pyo3",
|
|
209
|
+
"python_safe_eval",
|
|
210
|
+
"quick-xml",
|
|
211
|
+
]
|
|
212
|
+
|
|
213
|
+
[[package]]
|
|
214
|
+
name = "citry_html_transform"
|
|
215
|
+
version = "1.0.3"
|
|
216
|
+
dependencies = [
|
|
217
|
+
"quick-xml",
|
|
218
|
+
]
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "citry_template_parser"
|
|
222
|
+
version = "1.0.0"
|
|
223
|
+
dependencies = [
|
|
224
|
+
"lazy_static",
|
|
225
|
+
"pest",
|
|
226
|
+
"pest_derive",
|
|
227
|
+
"pyo3",
|
|
228
|
+
"python_safe_eval",
|
|
229
|
+
"quick-xml",
|
|
230
|
+
"regex",
|
|
231
|
+
"ruff_python_ast",
|
|
232
|
+
"ruff_python_parser",
|
|
233
|
+
"thiserror",
|
|
234
|
+
]
|
|
235
|
+
|
|
236
|
+
[[package]]
|
|
237
|
+
name = "clap"
|
|
238
|
+
version = "4.5.51"
|
|
239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
+
checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5"
|
|
241
|
+
dependencies = [
|
|
242
|
+
"clap_builder",
|
|
243
|
+
"clap_derive",
|
|
244
|
+
]
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "clap_builder"
|
|
248
|
+
version = "4.5.51"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a"
|
|
251
|
+
dependencies = [
|
|
252
|
+
"anstream",
|
|
253
|
+
"anstyle",
|
|
254
|
+
"clap_lex",
|
|
255
|
+
"strsim",
|
|
256
|
+
]
|
|
257
|
+
|
|
258
|
+
[[package]]
|
|
259
|
+
name = "clap_derive"
|
|
260
|
+
version = "4.5.49"
|
|
261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
262
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
263
|
+
dependencies = [
|
|
264
|
+
"heck",
|
|
265
|
+
"proc-macro2",
|
|
266
|
+
"quote",
|
|
267
|
+
"syn",
|
|
268
|
+
]
|
|
269
|
+
|
|
270
|
+
[[package]]
|
|
271
|
+
name = "clap_lex"
|
|
272
|
+
version = "0.7.6"
|
|
273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
274
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
275
|
+
|
|
276
|
+
[[package]]
|
|
277
|
+
name = "collection_literals"
|
|
278
|
+
version = "1.0.3"
|
|
279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
280
|
+
checksum = "2550f75b8cfac212855f6b1885455df8eaee8fe8e246b647d69146142e016084"
|
|
281
|
+
|
|
282
|
+
[[package]]
|
|
283
|
+
name = "colorchoice"
|
|
284
|
+
version = "1.0.4"
|
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
287
|
+
|
|
288
|
+
[[package]]
|
|
289
|
+
name = "compact_str"
|
|
290
|
+
version = "0.9.0"
|
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
+
checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
|
|
293
|
+
dependencies = [
|
|
294
|
+
"castaway",
|
|
295
|
+
"cfg-if",
|
|
296
|
+
"itoa",
|
|
297
|
+
"rustversion",
|
|
298
|
+
"ryu",
|
|
299
|
+
"serde",
|
|
300
|
+
"static_assertions",
|
|
301
|
+
]
|
|
302
|
+
|
|
303
|
+
[[package]]
|
|
304
|
+
name = "console"
|
|
305
|
+
version = "0.15.11"
|
|
306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
|
308
|
+
dependencies = [
|
|
309
|
+
"encode_unicode",
|
|
310
|
+
"libc",
|
|
311
|
+
"once_cell",
|
|
312
|
+
"windows-sys 0.59.0",
|
|
313
|
+
]
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "cpufeatures"
|
|
317
|
+
version = "0.2.17"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
320
|
+
dependencies = [
|
|
321
|
+
"libc",
|
|
322
|
+
]
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "crossbeam-deque"
|
|
326
|
+
version = "0.8.6"
|
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
329
|
+
dependencies = [
|
|
330
|
+
"crossbeam-epoch",
|
|
331
|
+
"crossbeam-utils",
|
|
332
|
+
]
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "crossbeam-epoch"
|
|
336
|
+
version = "0.9.18"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
339
|
+
dependencies = [
|
|
340
|
+
"crossbeam-utils",
|
|
341
|
+
]
|
|
342
|
+
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "crossbeam-queue"
|
|
345
|
+
version = "0.3.12"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
|
348
|
+
dependencies = [
|
|
349
|
+
"crossbeam-utils",
|
|
350
|
+
]
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "crossbeam-utils"
|
|
354
|
+
version = "0.8.21"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
357
|
+
|
|
358
|
+
[[package]]
|
|
359
|
+
name = "crypto-common"
|
|
360
|
+
version = "0.1.6"
|
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
363
|
+
dependencies = [
|
|
364
|
+
"generic-array",
|
|
365
|
+
"typenum",
|
|
366
|
+
]
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "datatest-stable"
|
|
370
|
+
version = "0.3.3"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "a867d7322eb69cf3a68a5426387a25b45cb3b9c5ee41023ee6cea92e2afadd82"
|
|
373
|
+
dependencies = [
|
|
374
|
+
"camino",
|
|
375
|
+
"fancy-regex",
|
|
376
|
+
"libtest-mimic 0.8.1",
|
|
377
|
+
"walkdir",
|
|
378
|
+
]
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "derive-where"
|
|
382
|
+
version = "1.6.0"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "ef941ded77d15ca19b40374869ac6000af1c9f2a4c0f3d4c70926287e6364a8f"
|
|
385
|
+
dependencies = [
|
|
386
|
+
"proc-macro2",
|
|
387
|
+
"quote",
|
|
388
|
+
"syn",
|
|
389
|
+
]
|
|
390
|
+
|
|
391
|
+
[[package]]
|
|
392
|
+
name = "digest"
|
|
393
|
+
version = "0.10.7"
|
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
396
|
+
dependencies = [
|
|
397
|
+
"block-buffer",
|
|
398
|
+
"crypto-common",
|
|
399
|
+
]
|
|
400
|
+
|
|
401
|
+
[[package]]
|
|
402
|
+
name = "dyn-clone"
|
|
403
|
+
version = "1.0.20"
|
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "either"
|
|
409
|
+
version = "1.15.0"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "encode_unicode"
|
|
415
|
+
version = "1.0.0"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "equivalent"
|
|
421
|
+
version = "1.0.2"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "escape8259"
|
|
427
|
+
version = "0.5.3"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "5692dd7b5a1978a5aeb0ce83b7655c58ca8efdcb79d21036ea249da95afec2c6"
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "escargot"
|
|
433
|
+
version = "0.5.15"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "11c3aea32bc97b500c9ca6a72b768a26e558264303d101d3409cf6d57a9ed0cf"
|
|
436
|
+
dependencies = [
|
|
437
|
+
"log",
|
|
438
|
+
"serde",
|
|
439
|
+
"serde_json",
|
|
440
|
+
]
|
|
441
|
+
|
|
442
|
+
[[package]]
|
|
443
|
+
name = "fancy-regex"
|
|
444
|
+
version = "0.14.0"
|
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
+
checksum = "6e24cb5a94bcae1e5408b0effca5cd7172ea3c5755049c5f3af4cd283a165298"
|
|
447
|
+
dependencies = [
|
|
448
|
+
"bit-set",
|
|
449
|
+
"regex-automata",
|
|
450
|
+
"regex-syntax",
|
|
451
|
+
]
|
|
452
|
+
|
|
453
|
+
[[package]]
|
|
454
|
+
name = "filetime"
|
|
455
|
+
version = "0.2.26"
|
|
456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
457
|
+
checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
|
|
458
|
+
dependencies = [
|
|
459
|
+
"cfg-if",
|
|
460
|
+
"libc",
|
|
461
|
+
"libredox",
|
|
462
|
+
"windows-sys 0.60.2",
|
|
463
|
+
]
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "foldhash"
|
|
467
|
+
version = "0.1.5"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "generic-array"
|
|
473
|
+
version = "0.14.9"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
|
|
476
|
+
dependencies = [
|
|
477
|
+
"typenum",
|
|
478
|
+
"version_check",
|
|
479
|
+
]
|
|
480
|
+
|
|
481
|
+
[[package]]
|
|
482
|
+
name = "get-size-derive2"
|
|
483
|
+
version = "0.7.1"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "46b134aa084df7c3a513a1035c52f623e4b3065dfaf3d905a4f28a2e79b5bb3f"
|
|
486
|
+
dependencies = [
|
|
487
|
+
"attribute-derive",
|
|
488
|
+
"quote",
|
|
489
|
+
"syn",
|
|
490
|
+
]
|
|
491
|
+
|
|
492
|
+
[[package]]
|
|
493
|
+
name = "get-size2"
|
|
494
|
+
version = "0.7.1"
|
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
+
checksum = "c0d51c9f2e956a517619ad9e7eaebc7a573f9c49b38152e12eade750f89156f9"
|
|
497
|
+
dependencies = [
|
|
498
|
+
"compact_str",
|
|
499
|
+
"get-size-derive2",
|
|
500
|
+
"hashbrown 0.16.0",
|
|
501
|
+
"smallvec",
|
|
502
|
+
]
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "getopts"
|
|
506
|
+
version = "0.2.24"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
|
|
509
|
+
dependencies = [
|
|
510
|
+
"unicode-width",
|
|
511
|
+
]
|
|
512
|
+
|
|
513
|
+
[[package]]
|
|
514
|
+
name = "getrandom"
|
|
515
|
+
version = "0.2.16"
|
|
516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
518
|
+
dependencies = [
|
|
519
|
+
"cfg-if",
|
|
520
|
+
"libc",
|
|
521
|
+
"wasi",
|
|
522
|
+
]
|
|
523
|
+
|
|
524
|
+
[[package]]
|
|
525
|
+
name = "glob"
|
|
526
|
+
version = "0.3.3"
|
|
527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
528
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
529
|
+
|
|
530
|
+
[[package]]
|
|
531
|
+
name = "globset"
|
|
532
|
+
version = "0.4.18"
|
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
|
+
checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
|
|
535
|
+
dependencies = [
|
|
536
|
+
"aho-corasick",
|
|
537
|
+
"bstr",
|
|
538
|
+
"log",
|
|
539
|
+
"regex-automata",
|
|
540
|
+
"regex-syntax",
|
|
541
|
+
]
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "hashbrown"
|
|
545
|
+
version = "0.15.5"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
548
|
+
dependencies = [
|
|
549
|
+
"allocator-api2",
|
|
550
|
+
"equivalent",
|
|
551
|
+
"foldhash",
|
|
552
|
+
]
|
|
553
|
+
|
|
554
|
+
[[package]]
|
|
555
|
+
name = "hashbrown"
|
|
556
|
+
version = "0.16.0"
|
|
557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
558
|
+
checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "hashlink"
|
|
562
|
+
version = "0.10.0"
|
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
+
checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
|
|
565
|
+
dependencies = [
|
|
566
|
+
"hashbrown 0.15.5",
|
|
567
|
+
]
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "heck"
|
|
571
|
+
version = "0.5.0"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "hermit-abi"
|
|
577
|
+
version = "0.5.2"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "html-escape"
|
|
583
|
+
version = "0.2.13"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
|
|
586
|
+
dependencies = [
|
|
587
|
+
"utf8-width",
|
|
588
|
+
]
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "ignore"
|
|
592
|
+
version = "0.4.25"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
|
|
595
|
+
dependencies = [
|
|
596
|
+
"crossbeam-deque",
|
|
597
|
+
"globset",
|
|
598
|
+
"log",
|
|
599
|
+
"memchr",
|
|
600
|
+
"regex-automata",
|
|
601
|
+
"same-file",
|
|
602
|
+
"walkdir",
|
|
603
|
+
"winapi-util",
|
|
604
|
+
]
|
|
605
|
+
|
|
606
|
+
[[package]]
|
|
607
|
+
name = "indexmap"
|
|
608
|
+
version = "2.12.0"
|
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
+
checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
|
|
611
|
+
dependencies = [
|
|
612
|
+
"equivalent",
|
|
613
|
+
"hashbrown 0.16.0",
|
|
614
|
+
]
|
|
615
|
+
|
|
616
|
+
[[package]]
|
|
617
|
+
name = "indoc"
|
|
618
|
+
version = "2.0.7"
|
|
619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
621
|
+
dependencies = [
|
|
622
|
+
"rustversion",
|
|
623
|
+
]
|
|
624
|
+
|
|
625
|
+
[[package]]
|
|
626
|
+
name = "insta"
|
|
627
|
+
version = "1.43.2"
|
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
+
checksum = "46fdb647ebde000f43b5b53f773c30cf9b0cb4300453208713fa38b2c70935a0"
|
|
630
|
+
dependencies = [
|
|
631
|
+
"console",
|
|
632
|
+
"once_cell",
|
|
633
|
+
"similar",
|
|
634
|
+
]
|
|
635
|
+
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "interpolator"
|
|
638
|
+
version = "0.5.0"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8"
|
|
641
|
+
|
|
642
|
+
[[package]]
|
|
643
|
+
name = "intrusive-collections"
|
|
644
|
+
version = "0.9.7"
|
|
645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
646
|
+
checksum = "189d0897e4cbe8c75efedf3502c18c887b05046e59d28404d4d8e46cbc4d1e86"
|
|
647
|
+
dependencies = [
|
|
648
|
+
"memoffset",
|
|
649
|
+
]
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "inventory"
|
|
653
|
+
version = "0.3.21"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
|
|
656
|
+
dependencies = [
|
|
657
|
+
"rustversion",
|
|
658
|
+
]
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "is-macro"
|
|
662
|
+
version = "0.3.7"
|
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
+
checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
|
|
665
|
+
dependencies = [
|
|
666
|
+
"heck",
|
|
667
|
+
"proc-macro2",
|
|
668
|
+
"quote",
|
|
669
|
+
"syn",
|
|
670
|
+
]
|
|
671
|
+
|
|
672
|
+
[[package]]
|
|
673
|
+
name = "is_terminal_polyfill"
|
|
674
|
+
version = "1.70.2"
|
|
675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
676
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "itertools"
|
|
680
|
+
version = "0.14.0"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
683
|
+
dependencies = [
|
|
684
|
+
"either",
|
|
685
|
+
]
|
|
686
|
+
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "itoa"
|
|
689
|
+
version = "1.0.15"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "lazy_static"
|
|
695
|
+
version = "1.5.0"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
698
|
+
|
|
699
|
+
[[package]]
|
|
700
|
+
name = "libc"
|
|
701
|
+
version = "0.2.177"
|
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
|
|
704
|
+
|
|
705
|
+
[[package]]
|
|
706
|
+
name = "libredox"
|
|
707
|
+
version = "0.1.10"
|
|
708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
+
checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
|
|
710
|
+
dependencies = [
|
|
711
|
+
"bitflags",
|
|
712
|
+
"libc",
|
|
713
|
+
"redox_syscall",
|
|
714
|
+
]
|
|
715
|
+
|
|
716
|
+
[[package]]
|
|
717
|
+
name = "libtest-mimic"
|
|
718
|
+
version = "0.7.3"
|
|
719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
720
|
+
checksum = "cc0bda45ed5b3a2904262c1bb91e526127aa70e7ef3758aba2ef93cf896b9b58"
|
|
721
|
+
dependencies = [
|
|
722
|
+
"clap",
|
|
723
|
+
"escape8259",
|
|
724
|
+
"termcolor",
|
|
725
|
+
"threadpool",
|
|
726
|
+
]
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "libtest-mimic"
|
|
730
|
+
version = "0.8.1"
|
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
+
checksum = "5297962ef19edda4ce33aaa484386e0a5b3d7f2f4e037cbeee00503ef6b29d33"
|
|
733
|
+
dependencies = [
|
|
734
|
+
"anstream",
|
|
735
|
+
"anstyle",
|
|
736
|
+
"clap",
|
|
737
|
+
"escape8259",
|
|
738
|
+
]
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "lock_api"
|
|
742
|
+
version = "0.4.14"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
745
|
+
dependencies = [
|
|
746
|
+
"scopeguard",
|
|
747
|
+
]
|
|
748
|
+
|
|
749
|
+
[[package]]
|
|
750
|
+
name = "log"
|
|
751
|
+
version = "0.4.28"
|
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
+
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "manyhow"
|
|
757
|
+
version = "0.11.4"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "b33efb3ca6d3b07393750d4030418d594ab1139cee518f0dc88db70fec873587"
|
|
760
|
+
dependencies = [
|
|
761
|
+
"manyhow-macros",
|
|
762
|
+
"proc-macro2",
|
|
763
|
+
"quote",
|
|
764
|
+
"syn",
|
|
765
|
+
]
|
|
766
|
+
|
|
767
|
+
[[package]]
|
|
768
|
+
name = "manyhow-macros"
|
|
769
|
+
version = "0.11.4"
|
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
+
checksum = "46fce34d199b78b6e6073abf984c9cf5fd3e9330145a93ee0738a7443e371495"
|
|
772
|
+
dependencies = [
|
|
773
|
+
"proc-macro-utils",
|
|
774
|
+
"proc-macro2",
|
|
775
|
+
"quote",
|
|
776
|
+
]
|
|
777
|
+
|
|
778
|
+
[[package]]
|
|
779
|
+
name = "matches"
|
|
780
|
+
version = "0.1.10"
|
|
781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
+
checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
|
|
783
|
+
|
|
784
|
+
[[package]]
|
|
785
|
+
name = "memchr"
|
|
786
|
+
version = "2.7.4"
|
|
787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
789
|
+
|
|
790
|
+
[[package]]
|
|
791
|
+
name = "memoffset"
|
|
792
|
+
version = "0.9.1"
|
|
793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
795
|
+
dependencies = [
|
|
796
|
+
"autocfg",
|
|
797
|
+
]
|
|
798
|
+
|
|
799
|
+
[[package]]
|
|
800
|
+
name = "normalize-line-endings"
|
|
801
|
+
version = "0.3.0"
|
|
802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
+
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
|
804
|
+
|
|
805
|
+
[[package]]
|
|
806
|
+
name = "num_cpus"
|
|
807
|
+
version = "1.17.0"
|
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
810
|
+
dependencies = [
|
|
811
|
+
"hermit-abi",
|
|
812
|
+
"libc",
|
|
813
|
+
]
|
|
814
|
+
|
|
815
|
+
[[package]]
|
|
816
|
+
name = "once_cell"
|
|
817
|
+
version = "1.21.3"
|
|
818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
819
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
820
|
+
|
|
821
|
+
[[package]]
|
|
822
|
+
name = "once_cell_polyfill"
|
|
823
|
+
version = "1.70.2"
|
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
826
|
+
|
|
827
|
+
[[package]]
|
|
828
|
+
name = "os_pipe"
|
|
829
|
+
version = "1.2.3"
|
|
830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
+
checksum = "7d8fae84b431384b68627d0f9b3b1245fcf9f46f6c0e3dc902e9dce64edd1967"
|
|
832
|
+
dependencies = [
|
|
833
|
+
"libc",
|
|
834
|
+
"windows-sys 0.61.2",
|
|
835
|
+
]
|
|
836
|
+
|
|
837
|
+
[[package]]
|
|
838
|
+
name = "parking_lot"
|
|
839
|
+
version = "0.12.5"
|
|
840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
841
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
842
|
+
dependencies = [
|
|
843
|
+
"lock_api",
|
|
844
|
+
"parking_lot_core",
|
|
845
|
+
]
|
|
846
|
+
|
|
847
|
+
[[package]]
|
|
848
|
+
name = "parking_lot_core"
|
|
849
|
+
version = "0.9.12"
|
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
852
|
+
dependencies = [
|
|
853
|
+
"cfg-if",
|
|
854
|
+
"libc",
|
|
855
|
+
"redox_syscall",
|
|
856
|
+
"smallvec",
|
|
857
|
+
"windows-link",
|
|
858
|
+
]
|
|
859
|
+
|
|
860
|
+
[[package]]
|
|
861
|
+
name = "pest"
|
|
862
|
+
version = "2.8.3"
|
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
864
|
+
checksum = "989e7521a040efde50c3ab6bbadafbe15ab6dc042686926be59ac35d74607df4"
|
|
865
|
+
dependencies = [
|
|
866
|
+
"memchr",
|
|
867
|
+
"ucd-trie",
|
|
868
|
+
]
|
|
869
|
+
|
|
870
|
+
[[package]]
|
|
871
|
+
name = "pest_derive"
|
|
872
|
+
version = "2.8.3"
|
|
873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
874
|
+
checksum = "187da9a3030dbafabbbfb20cb323b976dc7b7ce91fcd84f2f74d6e31d378e2de"
|
|
875
|
+
dependencies = [
|
|
876
|
+
"pest",
|
|
877
|
+
"pest_generator",
|
|
878
|
+
]
|
|
879
|
+
|
|
880
|
+
[[package]]
|
|
881
|
+
name = "pest_generator"
|
|
882
|
+
version = "2.8.3"
|
|
883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
884
|
+
checksum = "49b401d98f5757ebe97a26085998d6c0eecec4995cad6ab7fc30ffdf4b052843"
|
|
885
|
+
dependencies = [
|
|
886
|
+
"pest",
|
|
887
|
+
"pest_meta",
|
|
888
|
+
"proc-macro2",
|
|
889
|
+
"quote",
|
|
890
|
+
"syn",
|
|
891
|
+
]
|
|
892
|
+
|
|
893
|
+
[[package]]
|
|
894
|
+
name = "pest_meta"
|
|
895
|
+
version = "2.8.3"
|
|
896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
897
|
+
checksum = "72f27a2cfee9f9039c4d86faa5af122a0ac3851441a34865b8a043b46be0065a"
|
|
898
|
+
dependencies = [
|
|
899
|
+
"pest",
|
|
900
|
+
"sha2",
|
|
901
|
+
]
|
|
902
|
+
|
|
903
|
+
[[package]]
|
|
904
|
+
name = "phf"
|
|
905
|
+
version = "0.11.3"
|
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
908
|
+
dependencies = [
|
|
909
|
+
"phf_shared",
|
|
910
|
+
]
|
|
911
|
+
|
|
912
|
+
[[package]]
|
|
913
|
+
name = "phf_codegen"
|
|
914
|
+
version = "0.11.3"
|
|
915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
917
|
+
dependencies = [
|
|
918
|
+
"phf_generator",
|
|
919
|
+
"phf_shared",
|
|
920
|
+
]
|
|
921
|
+
|
|
922
|
+
[[package]]
|
|
923
|
+
name = "phf_generator"
|
|
924
|
+
version = "0.11.3"
|
|
925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
927
|
+
dependencies = [
|
|
928
|
+
"phf_shared",
|
|
929
|
+
"rand",
|
|
930
|
+
]
|
|
931
|
+
|
|
932
|
+
[[package]]
|
|
933
|
+
name = "phf_shared"
|
|
934
|
+
version = "0.11.3"
|
|
935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
937
|
+
dependencies = [
|
|
938
|
+
"siphasher",
|
|
939
|
+
]
|
|
940
|
+
|
|
941
|
+
[[package]]
|
|
942
|
+
name = "pin-project-lite"
|
|
943
|
+
version = "0.2.16"
|
|
944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
945
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
946
|
+
|
|
947
|
+
[[package]]
|
|
948
|
+
name = "portable-atomic"
|
|
949
|
+
version = "1.11.1"
|
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
952
|
+
|
|
953
|
+
[[package]]
|
|
954
|
+
name = "ppv-lite86"
|
|
955
|
+
version = "0.2.21"
|
|
956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
957
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
958
|
+
dependencies = [
|
|
959
|
+
"zerocopy",
|
|
960
|
+
]
|
|
961
|
+
|
|
962
|
+
[[package]]
|
|
963
|
+
name = "proc-macro-utils"
|
|
964
|
+
version = "0.10.0"
|
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
|
+
checksum = "eeaf08a13de400bc215877b5bdc088f241b12eb42f0a548d3390dc1c56bb7071"
|
|
967
|
+
dependencies = [
|
|
968
|
+
"proc-macro2",
|
|
969
|
+
"quote",
|
|
970
|
+
"smallvec",
|
|
971
|
+
]
|
|
972
|
+
|
|
973
|
+
[[package]]
|
|
974
|
+
name = "proc-macro2"
|
|
975
|
+
version = "1.0.93"
|
|
976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
+
checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
|
|
978
|
+
dependencies = [
|
|
979
|
+
"unicode-ident",
|
|
980
|
+
]
|
|
981
|
+
|
|
982
|
+
[[package]]
|
|
983
|
+
name = "pyo3"
|
|
984
|
+
version = "0.27.1"
|
|
985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
986
|
+
checksum = "37a6df7eab65fc7bee654a421404947e10a0f7085b6951bf2ea395f4659fb0cf"
|
|
987
|
+
dependencies = [
|
|
988
|
+
"indoc",
|
|
989
|
+
"libc",
|
|
990
|
+
"memoffset",
|
|
991
|
+
"once_cell",
|
|
992
|
+
"portable-atomic",
|
|
993
|
+
"pyo3-build-config",
|
|
994
|
+
"pyo3-ffi",
|
|
995
|
+
"pyo3-macros",
|
|
996
|
+
"unindent",
|
|
997
|
+
]
|
|
998
|
+
|
|
999
|
+
[[package]]
|
|
1000
|
+
name = "pyo3-build-config"
|
|
1001
|
+
version = "0.27.1"
|
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
+
checksum = "f77d387774f6f6eec64a004eac0ed525aab7fa1966d94b42f743797b3e395afb"
|
|
1004
|
+
dependencies = [
|
|
1005
|
+
"target-lexicon",
|
|
1006
|
+
]
|
|
1007
|
+
|
|
1008
|
+
[[package]]
|
|
1009
|
+
name = "pyo3-ffi"
|
|
1010
|
+
version = "0.27.1"
|
|
1011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1012
|
+
checksum = "2dd13844a4242793e02df3e2ec093f540d948299a6a77ea9ce7afd8623f542be"
|
|
1013
|
+
dependencies = [
|
|
1014
|
+
"libc",
|
|
1015
|
+
"pyo3-build-config",
|
|
1016
|
+
]
|
|
1017
|
+
|
|
1018
|
+
[[package]]
|
|
1019
|
+
name = "pyo3-macros"
|
|
1020
|
+
version = "0.27.1"
|
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
+
checksum = "eaf8f9f1108270b90d3676b8679586385430e5c0bb78bb5f043f95499c821a71"
|
|
1023
|
+
dependencies = [
|
|
1024
|
+
"proc-macro2",
|
|
1025
|
+
"pyo3-macros-backend",
|
|
1026
|
+
"quote",
|
|
1027
|
+
"syn",
|
|
1028
|
+
]
|
|
1029
|
+
|
|
1030
|
+
[[package]]
|
|
1031
|
+
name = "pyo3-macros-backend"
|
|
1032
|
+
version = "0.27.1"
|
|
1033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
|
+
checksum = "70a3b2274450ba5288bc9b8c1b69ff569d1d61189d4bff38f8d22e03d17f932b"
|
|
1035
|
+
dependencies = [
|
|
1036
|
+
"heck",
|
|
1037
|
+
"proc-macro2",
|
|
1038
|
+
"pyo3-build-config",
|
|
1039
|
+
"quote",
|
|
1040
|
+
"syn",
|
|
1041
|
+
]
|
|
1042
|
+
|
|
1043
|
+
[[package]]
|
|
1044
|
+
name = "python_safe_eval"
|
|
1045
|
+
version = "1.0.0"
|
|
1046
|
+
dependencies = [
|
|
1047
|
+
"regex",
|
|
1048
|
+
"ruff_python_ast",
|
|
1049
|
+
"ruff_python_codegen",
|
|
1050
|
+
"ruff_python_parser",
|
|
1051
|
+
"ruff_source_file",
|
|
1052
|
+
"ruff_text_size",
|
|
1053
|
+
]
|
|
1054
|
+
|
|
1055
|
+
[[package]]
|
|
1056
|
+
name = "quick-xml"
|
|
1057
|
+
version = "0.38.3"
|
|
1058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
+
checksum = "42a232e7487fc2ef313d96dde7948e7a3c05101870d8985e4fd8d26aedd27b89"
|
|
1060
|
+
dependencies = [
|
|
1061
|
+
"memchr",
|
|
1062
|
+
]
|
|
1063
|
+
|
|
1064
|
+
[[package]]
|
|
1065
|
+
name = "quote"
|
|
1066
|
+
version = "1.0.38"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
|
|
1069
|
+
dependencies = [
|
|
1070
|
+
"proc-macro2",
|
|
1071
|
+
]
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "quote-use"
|
|
1075
|
+
version = "0.8.4"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "9619db1197b497a36178cfc736dc96b271fe918875fbf1344c436a7e93d0321e"
|
|
1078
|
+
dependencies = [
|
|
1079
|
+
"quote",
|
|
1080
|
+
"quote-use-macros",
|
|
1081
|
+
]
|
|
1082
|
+
|
|
1083
|
+
[[package]]
|
|
1084
|
+
name = "quote-use-macros"
|
|
1085
|
+
version = "0.8.4"
|
|
1086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1087
|
+
checksum = "82ebfb7faafadc06a7ab141a6f67bcfb24cb8beb158c6fe933f2f035afa99f35"
|
|
1088
|
+
dependencies = [
|
|
1089
|
+
"proc-macro-utils",
|
|
1090
|
+
"proc-macro2",
|
|
1091
|
+
"quote",
|
|
1092
|
+
"syn",
|
|
1093
|
+
]
|
|
1094
|
+
|
|
1095
|
+
[[package]]
|
|
1096
|
+
name = "rand"
|
|
1097
|
+
version = "0.8.5"
|
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1100
|
+
dependencies = [
|
|
1101
|
+
"libc",
|
|
1102
|
+
"rand_chacha",
|
|
1103
|
+
"rand_core",
|
|
1104
|
+
]
|
|
1105
|
+
|
|
1106
|
+
[[package]]
|
|
1107
|
+
name = "rand_chacha"
|
|
1108
|
+
version = "0.3.1"
|
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1110
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1111
|
+
dependencies = [
|
|
1112
|
+
"ppv-lite86",
|
|
1113
|
+
"rand_core",
|
|
1114
|
+
]
|
|
1115
|
+
|
|
1116
|
+
[[package]]
|
|
1117
|
+
name = "rand_core"
|
|
1118
|
+
version = "0.6.4"
|
|
1119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1120
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1121
|
+
dependencies = [
|
|
1122
|
+
"getrandom",
|
|
1123
|
+
]
|
|
1124
|
+
|
|
1125
|
+
[[package]]
|
|
1126
|
+
name = "redox_syscall"
|
|
1127
|
+
version = "0.5.18"
|
|
1128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1129
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1130
|
+
dependencies = [
|
|
1131
|
+
"bitflags",
|
|
1132
|
+
]
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "regex"
|
|
1136
|
+
version = "1.12.2"
|
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
1139
|
+
dependencies = [
|
|
1140
|
+
"aho-corasick",
|
|
1141
|
+
"memchr",
|
|
1142
|
+
"regex-automata",
|
|
1143
|
+
"regex-syntax",
|
|
1144
|
+
]
|
|
1145
|
+
|
|
1146
|
+
[[package]]
|
|
1147
|
+
name = "regex-automata"
|
|
1148
|
+
version = "0.4.13"
|
|
1149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1150
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
1151
|
+
dependencies = [
|
|
1152
|
+
"aho-corasick",
|
|
1153
|
+
"memchr",
|
|
1154
|
+
"regex-syntax",
|
|
1155
|
+
]
|
|
1156
|
+
|
|
1157
|
+
[[package]]
|
|
1158
|
+
name = "regex-syntax"
|
|
1159
|
+
version = "0.8.8"
|
|
1160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
1162
|
+
|
|
1163
|
+
[[package]]
|
|
1164
|
+
name = "ruff_annotate_snippets"
|
|
1165
|
+
version = "0.1.0"
|
|
1166
|
+
dependencies = [
|
|
1167
|
+
"anstream",
|
|
1168
|
+
"anstyle",
|
|
1169
|
+
"memchr",
|
|
1170
|
+
"ruff_annotate_snippets",
|
|
1171
|
+
"serde",
|
|
1172
|
+
"snapbox",
|
|
1173
|
+
"toml",
|
|
1174
|
+
"tryfn",
|
|
1175
|
+
"unicode-width",
|
|
1176
|
+
]
|
|
1177
|
+
|
|
1178
|
+
[[package]]
|
|
1179
|
+
name = "ruff_cache"
|
|
1180
|
+
version = "0.0.0"
|
|
1181
|
+
dependencies = [
|
|
1182
|
+
"filetime",
|
|
1183
|
+
"glob",
|
|
1184
|
+
"globset",
|
|
1185
|
+
"itertools",
|
|
1186
|
+
"regex",
|
|
1187
|
+
"ruff_macros",
|
|
1188
|
+
"seahash",
|
|
1189
|
+
]
|
|
1190
|
+
|
|
1191
|
+
[[package]]
|
|
1192
|
+
name = "ruff_macros"
|
|
1193
|
+
version = "0.0.0"
|
|
1194
|
+
dependencies = [
|
|
1195
|
+
"heck",
|
|
1196
|
+
"itertools",
|
|
1197
|
+
"proc-macro2",
|
|
1198
|
+
"quote",
|
|
1199
|
+
"ruff_python_trivia",
|
|
1200
|
+
"syn",
|
|
1201
|
+
]
|
|
1202
|
+
|
|
1203
|
+
[[package]]
|
|
1204
|
+
name = "ruff_python_ast"
|
|
1205
|
+
version = "0.0.0"
|
|
1206
|
+
dependencies = [
|
|
1207
|
+
"aho-corasick",
|
|
1208
|
+
"bitflags",
|
|
1209
|
+
"compact_str",
|
|
1210
|
+
"get-size2",
|
|
1211
|
+
"is-macro",
|
|
1212
|
+
"itertools",
|
|
1213
|
+
"memchr",
|
|
1214
|
+
"ruff_cache",
|
|
1215
|
+
"ruff_macros",
|
|
1216
|
+
"ruff_python_trivia",
|
|
1217
|
+
"ruff_source_file",
|
|
1218
|
+
"ruff_text_size",
|
|
1219
|
+
"rustc-hash",
|
|
1220
|
+
"salsa",
|
|
1221
|
+
"schemars",
|
|
1222
|
+
"serde",
|
|
1223
|
+
"serde_json",
|
|
1224
|
+
"thiserror",
|
|
1225
|
+
]
|
|
1226
|
+
|
|
1227
|
+
[[package]]
|
|
1228
|
+
name = "ruff_python_codegen"
|
|
1229
|
+
version = "0.0.0"
|
|
1230
|
+
dependencies = [
|
|
1231
|
+
"ruff_python_ast",
|
|
1232
|
+
"ruff_python_literal",
|
|
1233
|
+
"ruff_python_parser",
|
|
1234
|
+
"ruff_source_file",
|
|
1235
|
+
"ruff_text_size",
|
|
1236
|
+
"test-case",
|
|
1237
|
+
]
|
|
1238
|
+
|
|
1239
|
+
[[package]]
|
|
1240
|
+
name = "ruff_python_literal"
|
|
1241
|
+
version = "0.0.0"
|
|
1242
|
+
dependencies = [
|
|
1243
|
+
"bitflags",
|
|
1244
|
+
"itertools",
|
|
1245
|
+
"ruff_python_ast",
|
|
1246
|
+
"unic-ucd-category",
|
|
1247
|
+
]
|
|
1248
|
+
|
|
1249
|
+
[[package]]
|
|
1250
|
+
name = "ruff_python_parser"
|
|
1251
|
+
version = "0.0.0"
|
|
1252
|
+
dependencies = [
|
|
1253
|
+
"anyhow",
|
|
1254
|
+
"bitflags",
|
|
1255
|
+
"bstr",
|
|
1256
|
+
"compact_str",
|
|
1257
|
+
"datatest-stable",
|
|
1258
|
+
"get-size2",
|
|
1259
|
+
"insta",
|
|
1260
|
+
"itertools",
|
|
1261
|
+
"memchr",
|
|
1262
|
+
"ruff_annotate_snippets",
|
|
1263
|
+
"ruff_python_ast",
|
|
1264
|
+
"ruff_python_trivia",
|
|
1265
|
+
"ruff_source_file",
|
|
1266
|
+
"ruff_text_size",
|
|
1267
|
+
"rustc-hash",
|
|
1268
|
+
"serde",
|
|
1269
|
+
"serde_json",
|
|
1270
|
+
"static_assertions",
|
|
1271
|
+
"unicode-ident",
|
|
1272
|
+
"unicode-normalization",
|
|
1273
|
+
"unicode_names2",
|
|
1274
|
+
"walkdir",
|
|
1275
|
+
]
|
|
1276
|
+
|
|
1277
|
+
[[package]]
|
|
1278
|
+
name = "ruff_python_trivia"
|
|
1279
|
+
version = "0.0.0"
|
|
1280
|
+
dependencies = [
|
|
1281
|
+
"itertools",
|
|
1282
|
+
"ruff_source_file",
|
|
1283
|
+
"ruff_text_size",
|
|
1284
|
+
"unicode-ident",
|
|
1285
|
+
]
|
|
1286
|
+
|
|
1287
|
+
[[package]]
|
|
1288
|
+
name = "ruff_source_file"
|
|
1289
|
+
version = "0.0.0"
|
|
1290
|
+
dependencies = [
|
|
1291
|
+
"get-size2",
|
|
1292
|
+
"memchr",
|
|
1293
|
+
"ruff_text_size",
|
|
1294
|
+
"serde",
|
|
1295
|
+
]
|
|
1296
|
+
|
|
1297
|
+
[[package]]
|
|
1298
|
+
name = "ruff_text_size"
|
|
1299
|
+
version = "0.0.0"
|
|
1300
|
+
dependencies = [
|
|
1301
|
+
"get-size2",
|
|
1302
|
+
"schemars",
|
|
1303
|
+
"serde",
|
|
1304
|
+
"serde_test",
|
|
1305
|
+
"static_assertions",
|
|
1306
|
+
]
|
|
1307
|
+
|
|
1308
|
+
[[package]]
|
|
1309
|
+
name = "rustc-hash"
|
|
1310
|
+
version = "2.1.1"
|
|
1311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1312
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
1313
|
+
|
|
1314
|
+
[[package]]
|
|
1315
|
+
name = "rustversion"
|
|
1316
|
+
version = "1.0.22"
|
|
1317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1318
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1319
|
+
|
|
1320
|
+
[[package]]
|
|
1321
|
+
name = "ryu"
|
|
1322
|
+
version = "1.0.20"
|
|
1323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
1325
|
+
|
|
1326
|
+
[[package]]
|
|
1327
|
+
name = "salsa"
|
|
1328
|
+
version = "0.23.0"
|
|
1329
|
+
source = "git+https://github.com/salsa-rs/salsa.git?rev=29ab321b45d00daa4315fa2a06f7207759a8c87e#29ab321b45d00daa4315fa2a06f7207759a8c87e"
|
|
1330
|
+
dependencies = [
|
|
1331
|
+
"boxcar",
|
|
1332
|
+
"compact_str",
|
|
1333
|
+
"crossbeam-queue",
|
|
1334
|
+
"crossbeam-utils",
|
|
1335
|
+
"hashbrown 0.15.5",
|
|
1336
|
+
"hashlink",
|
|
1337
|
+
"indexmap",
|
|
1338
|
+
"intrusive-collections",
|
|
1339
|
+
"inventory",
|
|
1340
|
+
"parking_lot",
|
|
1341
|
+
"portable-atomic",
|
|
1342
|
+
"rustc-hash",
|
|
1343
|
+
"salsa-macro-rules",
|
|
1344
|
+
"salsa-macros",
|
|
1345
|
+
"smallvec",
|
|
1346
|
+
"thin-vec",
|
|
1347
|
+
"tracing",
|
|
1348
|
+
]
|
|
1349
|
+
|
|
1350
|
+
[[package]]
|
|
1351
|
+
name = "salsa-macro-rules"
|
|
1352
|
+
version = "0.23.0"
|
|
1353
|
+
source = "git+https://github.com/salsa-rs/salsa.git?rev=29ab321b45d00daa4315fa2a06f7207759a8c87e#29ab321b45d00daa4315fa2a06f7207759a8c87e"
|
|
1354
|
+
|
|
1355
|
+
[[package]]
|
|
1356
|
+
name = "salsa-macros"
|
|
1357
|
+
version = "0.23.0"
|
|
1358
|
+
source = "git+https://github.com/salsa-rs/salsa.git?rev=29ab321b45d00daa4315fa2a06f7207759a8c87e#29ab321b45d00daa4315fa2a06f7207759a8c87e"
|
|
1359
|
+
dependencies = [
|
|
1360
|
+
"proc-macro2",
|
|
1361
|
+
"quote",
|
|
1362
|
+
"syn",
|
|
1363
|
+
"synstructure",
|
|
1364
|
+
]
|
|
1365
|
+
|
|
1366
|
+
[[package]]
|
|
1367
|
+
name = "same-file"
|
|
1368
|
+
version = "1.0.6"
|
|
1369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1370
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1371
|
+
dependencies = [
|
|
1372
|
+
"winapi-util",
|
|
1373
|
+
]
|
|
1374
|
+
|
|
1375
|
+
[[package]]
|
|
1376
|
+
name = "schemars"
|
|
1377
|
+
version = "0.8.22"
|
|
1378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1379
|
+
checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
|
|
1380
|
+
dependencies = [
|
|
1381
|
+
"dyn-clone",
|
|
1382
|
+
"schemars_derive",
|
|
1383
|
+
"serde",
|
|
1384
|
+
"serde_json",
|
|
1385
|
+
]
|
|
1386
|
+
|
|
1387
|
+
[[package]]
|
|
1388
|
+
name = "schemars_derive"
|
|
1389
|
+
version = "0.8.22"
|
|
1390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1391
|
+
checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
|
|
1392
|
+
dependencies = [
|
|
1393
|
+
"proc-macro2",
|
|
1394
|
+
"quote",
|
|
1395
|
+
"serde_derive_internals",
|
|
1396
|
+
"syn",
|
|
1397
|
+
]
|
|
1398
|
+
|
|
1399
|
+
[[package]]
|
|
1400
|
+
name = "scopeguard"
|
|
1401
|
+
version = "1.2.0"
|
|
1402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1403
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1404
|
+
|
|
1405
|
+
[[package]]
|
|
1406
|
+
name = "seahash"
|
|
1407
|
+
version = "4.1.0"
|
|
1408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
+
checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
|
|
1410
|
+
|
|
1411
|
+
[[package]]
|
|
1412
|
+
name = "serde"
|
|
1413
|
+
version = "1.0.228"
|
|
1414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1415
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1416
|
+
dependencies = [
|
|
1417
|
+
"serde_core",
|
|
1418
|
+
"serde_derive",
|
|
1419
|
+
]
|
|
1420
|
+
|
|
1421
|
+
[[package]]
|
|
1422
|
+
name = "serde_core"
|
|
1423
|
+
version = "1.0.228"
|
|
1424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1425
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1426
|
+
dependencies = [
|
|
1427
|
+
"serde_derive",
|
|
1428
|
+
]
|
|
1429
|
+
|
|
1430
|
+
[[package]]
|
|
1431
|
+
name = "serde_derive"
|
|
1432
|
+
version = "1.0.228"
|
|
1433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1434
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1435
|
+
dependencies = [
|
|
1436
|
+
"proc-macro2",
|
|
1437
|
+
"quote",
|
|
1438
|
+
"syn",
|
|
1439
|
+
]
|
|
1440
|
+
|
|
1441
|
+
[[package]]
|
|
1442
|
+
name = "serde_derive_internals"
|
|
1443
|
+
version = "0.29.1"
|
|
1444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1445
|
+
checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
|
|
1446
|
+
dependencies = [
|
|
1447
|
+
"proc-macro2",
|
|
1448
|
+
"quote",
|
|
1449
|
+
"syn",
|
|
1450
|
+
]
|
|
1451
|
+
|
|
1452
|
+
[[package]]
|
|
1453
|
+
name = "serde_json"
|
|
1454
|
+
version = "1.0.145"
|
|
1455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1456
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
1457
|
+
dependencies = [
|
|
1458
|
+
"itoa",
|
|
1459
|
+
"memchr",
|
|
1460
|
+
"ryu",
|
|
1461
|
+
"serde",
|
|
1462
|
+
"serde_core",
|
|
1463
|
+
]
|
|
1464
|
+
|
|
1465
|
+
[[package]]
|
|
1466
|
+
name = "serde_spanned"
|
|
1467
|
+
version = "1.0.3"
|
|
1468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1469
|
+
checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392"
|
|
1470
|
+
dependencies = [
|
|
1471
|
+
"serde_core",
|
|
1472
|
+
]
|
|
1473
|
+
|
|
1474
|
+
[[package]]
|
|
1475
|
+
name = "serde_test"
|
|
1476
|
+
version = "1.0.177"
|
|
1477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1478
|
+
checksum = "7f901ee573cab6b3060453d2d5f0bae4e6d628c23c0a962ff9b5f1d7c8d4f1ed"
|
|
1479
|
+
dependencies = [
|
|
1480
|
+
"serde",
|
|
1481
|
+
]
|
|
1482
|
+
|
|
1483
|
+
[[package]]
|
|
1484
|
+
name = "sha2"
|
|
1485
|
+
version = "0.10.9"
|
|
1486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1487
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
1488
|
+
dependencies = [
|
|
1489
|
+
"cfg-if",
|
|
1490
|
+
"cpufeatures",
|
|
1491
|
+
"digest",
|
|
1492
|
+
]
|
|
1493
|
+
|
|
1494
|
+
[[package]]
|
|
1495
|
+
name = "similar"
|
|
1496
|
+
version = "2.7.0"
|
|
1497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1498
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
1499
|
+
|
|
1500
|
+
[[package]]
|
|
1501
|
+
name = "siphasher"
|
|
1502
|
+
version = "1.0.1"
|
|
1503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1504
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
1505
|
+
|
|
1506
|
+
[[package]]
|
|
1507
|
+
name = "smallvec"
|
|
1508
|
+
version = "1.15.1"
|
|
1509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1510
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1511
|
+
|
|
1512
|
+
[[package]]
|
|
1513
|
+
name = "snapbox"
|
|
1514
|
+
version = "0.6.23"
|
|
1515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1516
|
+
checksum = "96fa1ce81be900d083b30ec2d481e6658c2acfaa2cfc7be45ccc2cc1b820edb3"
|
|
1517
|
+
dependencies = [
|
|
1518
|
+
"anstream",
|
|
1519
|
+
"anstyle",
|
|
1520
|
+
"anstyle-svg",
|
|
1521
|
+
"escargot",
|
|
1522
|
+
"libc",
|
|
1523
|
+
"normalize-line-endings",
|
|
1524
|
+
"os_pipe",
|
|
1525
|
+
"serde_json",
|
|
1526
|
+
"similar",
|
|
1527
|
+
"snapbox-macros",
|
|
1528
|
+
"wait-timeout",
|
|
1529
|
+
"windows-sys 0.60.2",
|
|
1530
|
+
]
|
|
1531
|
+
|
|
1532
|
+
[[package]]
|
|
1533
|
+
name = "snapbox-macros"
|
|
1534
|
+
version = "0.4.0"
|
|
1535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1536
|
+
checksum = "3b750c344002d7cc69afb9da00ebd9b5c0f8ac2eb7d115d9d45d5b5f47718d74"
|
|
1537
|
+
dependencies = [
|
|
1538
|
+
"anstream",
|
|
1539
|
+
]
|
|
1540
|
+
|
|
1541
|
+
[[package]]
|
|
1542
|
+
name = "static_assertions"
|
|
1543
|
+
version = "1.1.0"
|
|
1544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1545
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1546
|
+
|
|
1547
|
+
[[package]]
|
|
1548
|
+
name = "strsim"
|
|
1549
|
+
version = "0.11.1"
|
|
1550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1552
|
+
|
|
1553
|
+
[[package]]
|
|
1554
|
+
name = "syn"
|
|
1555
|
+
version = "2.0.107"
|
|
1556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1557
|
+
checksum = "2a26dbd934e5451d21ef060c018dae56fc073894c5a7896f882928a76e6d081b"
|
|
1558
|
+
dependencies = [
|
|
1559
|
+
"proc-macro2",
|
|
1560
|
+
"quote",
|
|
1561
|
+
"unicode-ident",
|
|
1562
|
+
]
|
|
1563
|
+
|
|
1564
|
+
[[package]]
|
|
1565
|
+
name = "synstructure"
|
|
1566
|
+
version = "0.13.2"
|
|
1567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1568
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1569
|
+
dependencies = [
|
|
1570
|
+
"proc-macro2",
|
|
1571
|
+
"quote",
|
|
1572
|
+
"syn",
|
|
1573
|
+
]
|
|
1574
|
+
|
|
1575
|
+
[[package]]
|
|
1576
|
+
name = "target-lexicon"
|
|
1577
|
+
version = "0.13.3"
|
|
1578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1579
|
+
checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
|
|
1580
|
+
|
|
1581
|
+
[[package]]
|
|
1582
|
+
name = "termcolor"
|
|
1583
|
+
version = "1.4.1"
|
|
1584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1585
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
1586
|
+
dependencies = [
|
|
1587
|
+
"winapi-util",
|
|
1588
|
+
]
|
|
1589
|
+
|
|
1590
|
+
[[package]]
|
|
1591
|
+
name = "test-case"
|
|
1592
|
+
version = "3.3.1"
|
|
1593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1594
|
+
checksum = "eb2550dd13afcd286853192af8601920d959b14c401fcece38071d53bf0768a8"
|
|
1595
|
+
dependencies = [
|
|
1596
|
+
"test-case-macros",
|
|
1597
|
+
]
|
|
1598
|
+
|
|
1599
|
+
[[package]]
|
|
1600
|
+
name = "test-case-core"
|
|
1601
|
+
version = "3.3.1"
|
|
1602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1603
|
+
checksum = "adcb7fd841cd518e279be3d5a3eb0636409487998a4aff22f3de87b81e88384f"
|
|
1604
|
+
dependencies = [
|
|
1605
|
+
"cfg-if",
|
|
1606
|
+
"proc-macro2",
|
|
1607
|
+
"quote",
|
|
1608
|
+
"syn",
|
|
1609
|
+
]
|
|
1610
|
+
|
|
1611
|
+
[[package]]
|
|
1612
|
+
name = "test-case-macros"
|
|
1613
|
+
version = "3.3.1"
|
|
1614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1615
|
+
checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb"
|
|
1616
|
+
dependencies = [
|
|
1617
|
+
"proc-macro2",
|
|
1618
|
+
"quote",
|
|
1619
|
+
"syn",
|
|
1620
|
+
"test-case-core",
|
|
1621
|
+
]
|
|
1622
|
+
|
|
1623
|
+
[[package]]
|
|
1624
|
+
name = "thin-vec"
|
|
1625
|
+
version = "0.2.14"
|
|
1626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1627
|
+
checksum = "144f754d318415ac792f9d69fc87abbbfc043ce2ef041c60f16ad828f638717d"
|
|
1628
|
+
|
|
1629
|
+
[[package]]
|
|
1630
|
+
name = "thiserror"
|
|
1631
|
+
version = "2.0.17"
|
|
1632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1633
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
1634
|
+
dependencies = [
|
|
1635
|
+
"thiserror-impl",
|
|
1636
|
+
]
|
|
1637
|
+
|
|
1638
|
+
[[package]]
|
|
1639
|
+
name = "thiserror-impl"
|
|
1640
|
+
version = "2.0.17"
|
|
1641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1642
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
1643
|
+
dependencies = [
|
|
1644
|
+
"proc-macro2",
|
|
1645
|
+
"quote",
|
|
1646
|
+
"syn",
|
|
1647
|
+
]
|
|
1648
|
+
|
|
1649
|
+
[[package]]
|
|
1650
|
+
name = "threadpool"
|
|
1651
|
+
version = "1.8.1"
|
|
1652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1653
|
+
checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
|
|
1654
|
+
dependencies = [
|
|
1655
|
+
"num_cpus",
|
|
1656
|
+
]
|
|
1657
|
+
|
|
1658
|
+
[[package]]
|
|
1659
|
+
name = "tinyvec"
|
|
1660
|
+
version = "1.10.0"
|
|
1661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1662
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
1663
|
+
dependencies = [
|
|
1664
|
+
"tinyvec_macros",
|
|
1665
|
+
]
|
|
1666
|
+
|
|
1667
|
+
[[package]]
|
|
1668
|
+
name = "tinyvec_macros"
|
|
1669
|
+
version = "0.1.1"
|
|
1670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1671
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1672
|
+
|
|
1673
|
+
[[package]]
|
|
1674
|
+
name = "toml"
|
|
1675
|
+
version = "0.9.8"
|
|
1676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1677
|
+
checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8"
|
|
1678
|
+
dependencies = [
|
|
1679
|
+
"indexmap",
|
|
1680
|
+
"serde_core",
|
|
1681
|
+
"serde_spanned",
|
|
1682
|
+
"toml_datetime",
|
|
1683
|
+
"toml_parser",
|
|
1684
|
+
"toml_writer",
|
|
1685
|
+
"winnow",
|
|
1686
|
+
]
|
|
1687
|
+
|
|
1688
|
+
[[package]]
|
|
1689
|
+
name = "toml_datetime"
|
|
1690
|
+
version = "0.7.3"
|
|
1691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1692
|
+
checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
|
|
1693
|
+
dependencies = [
|
|
1694
|
+
"serde_core",
|
|
1695
|
+
]
|
|
1696
|
+
|
|
1697
|
+
[[package]]
|
|
1698
|
+
name = "toml_parser"
|
|
1699
|
+
version = "1.0.4"
|
|
1700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1701
|
+
checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
|
|
1702
|
+
dependencies = [
|
|
1703
|
+
"winnow",
|
|
1704
|
+
]
|
|
1705
|
+
|
|
1706
|
+
[[package]]
|
|
1707
|
+
name = "toml_writer"
|
|
1708
|
+
version = "1.0.4"
|
|
1709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
+
checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2"
|
|
1711
|
+
|
|
1712
|
+
[[package]]
|
|
1713
|
+
name = "tracing"
|
|
1714
|
+
version = "0.1.41"
|
|
1715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
1717
|
+
dependencies = [
|
|
1718
|
+
"pin-project-lite",
|
|
1719
|
+
"tracing-core",
|
|
1720
|
+
]
|
|
1721
|
+
|
|
1722
|
+
[[package]]
|
|
1723
|
+
name = "tracing-core"
|
|
1724
|
+
version = "0.1.34"
|
|
1725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
|
1727
|
+
dependencies = [
|
|
1728
|
+
"once_cell",
|
|
1729
|
+
]
|
|
1730
|
+
|
|
1731
|
+
[[package]]
|
|
1732
|
+
name = "tryfn"
|
|
1733
|
+
version = "0.2.3"
|
|
1734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1735
|
+
checksum = "5fe242ee9e646acec9ab73a5c540e8543ed1b107f0ce42be831e0775d423c396"
|
|
1736
|
+
dependencies = [
|
|
1737
|
+
"ignore",
|
|
1738
|
+
"libtest-mimic 0.7.3",
|
|
1739
|
+
"snapbox",
|
|
1740
|
+
]
|
|
1741
|
+
|
|
1742
|
+
[[package]]
|
|
1743
|
+
name = "typenum"
|
|
1744
|
+
version = "1.19.0"
|
|
1745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1746
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
1747
|
+
|
|
1748
|
+
[[package]]
|
|
1749
|
+
name = "ucd-trie"
|
|
1750
|
+
version = "0.1.7"
|
|
1751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
+
checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
|
|
1753
|
+
|
|
1754
|
+
[[package]]
|
|
1755
|
+
name = "unic-char-property"
|
|
1756
|
+
version = "0.9.0"
|
|
1757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1758
|
+
checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
|
|
1759
|
+
dependencies = [
|
|
1760
|
+
"unic-char-range",
|
|
1761
|
+
]
|
|
1762
|
+
|
|
1763
|
+
[[package]]
|
|
1764
|
+
name = "unic-char-range"
|
|
1765
|
+
version = "0.9.0"
|
|
1766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1767
|
+
checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
|
|
1768
|
+
|
|
1769
|
+
[[package]]
|
|
1770
|
+
name = "unic-common"
|
|
1771
|
+
version = "0.9.0"
|
|
1772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1773
|
+
checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
|
|
1774
|
+
|
|
1775
|
+
[[package]]
|
|
1776
|
+
name = "unic-ucd-category"
|
|
1777
|
+
version = "0.9.0"
|
|
1778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1779
|
+
checksum = "1b8d4591f5fcfe1bd4453baaf803c40e1b1e69ff8455c47620440b46efef91c0"
|
|
1780
|
+
dependencies = [
|
|
1781
|
+
"matches",
|
|
1782
|
+
"unic-char-property",
|
|
1783
|
+
"unic-char-range",
|
|
1784
|
+
"unic-ucd-version",
|
|
1785
|
+
]
|
|
1786
|
+
|
|
1787
|
+
[[package]]
|
|
1788
|
+
name = "unic-ucd-version"
|
|
1789
|
+
version = "0.9.0"
|
|
1790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1791
|
+
checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
|
|
1792
|
+
dependencies = [
|
|
1793
|
+
"unic-common",
|
|
1794
|
+
]
|
|
1795
|
+
|
|
1796
|
+
[[package]]
|
|
1797
|
+
name = "unicode-ident"
|
|
1798
|
+
version = "1.0.14"
|
|
1799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1800
|
+
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
|
|
1801
|
+
|
|
1802
|
+
[[package]]
|
|
1803
|
+
name = "unicode-normalization"
|
|
1804
|
+
version = "0.1.25"
|
|
1805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1806
|
+
checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
|
|
1807
|
+
dependencies = [
|
|
1808
|
+
"tinyvec",
|
|
1809
|
+
]
|
|
1810
|
+
|
|
1811
|
+
[[package]]
|
|
1812
|
+
name = "unicode-width"
|
|
1813
|
+
version = "0.2.2"
|
|
1814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1815
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1816
|
+
|
|
1817
|
+
[[package]]
|
|
1818
|
+
name = "unicode_names2"
|
|
1819
|
+
version = "1.3.0"
|
|
1820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1821
|
+
checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
|
|
1822
|
+
dependencies = [
|
|
1823
|
+
"phf",
|
|
1824
|
+
"unicode_names2_generator",
|
|
1825
|
+
]
|
|
1826
|
+
|
|
1827
|
+
[[package]]
|
|
1828
|
+
name = "unicode_names2_generator"
|
|
1829
|
+
version = "1.3.0"
|
|
1830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1831
|
+
checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
|
|
1832
|
+
dependencies = [
|
|
1833
|
+
"getopts",
|
|
1834
|
+
"log",
|
|
1835
|
+
"phf_codegen",
|
|
1836
|
+
"rand",
|
|
1837
|
+
]
|
|
1838
|
+
|
|
1839
|
+
[[package]]
|
|
1840
|
+
name = "unindent"
|
|
1841
|
+
version = "0.2.4"
|
|
1842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1843
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1844
|
+
|
|
1845
|
+
[[package]]
|
|
1846
|
+
name = "utf8-width"
|
|
1847
|
+
version = "0.1.7"
|
|
1848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1849
|
+
checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3"
|
|
1850
|
+
|
|
1851
|
+
[[package]]
|
|
1852
|
+
name = "utf8parse"
|
|
1853
|
+
version = "0.2.2"
|
|
1854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1855
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1856
|
+
|
|
1857
|
+
[[package]]
|
|
1858
|
+
name = "version_check"
|
|
1859
|
+
version = "0.9.5"
|
|
1860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1861
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1862
|
+
|
|
1863
|
+
[[package]]
|
|
1864
|
+
name = "wait-timeout"
|
|
1865
|
+
version = "0.2.1"
|
|
1866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1867
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
1868
|
+
dependencies = [
|
|
1869
|
+
"libc",
|
|
1870
|
+
]
|
|
1871
|
+
|
|
1872
|
+
[[package]]
|
|
1873
|
+
name = "walkdir"
|
|
1874
|
+
version = "2.5.0"
|
|
1875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1876
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1877
|
+
dependencies = [
|
|
1878
|
+
"same-file",
|
|
1879
|
+
"winapi-util",
|
|
1880
|
+
]
|
|
1881
|
+
|
|
1882
|
+
[[package]]
|
|
1883
|
+
name = "wasi"
|
|
1884
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1886
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1887
|
+
|
|
1888
|
+
[[package]]
|
|
1889
|
+
name = "winapi-util"
|
|
1890
|
+
version = "0.1.11"
|
|
1891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1892
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1893
|
+
dependencies = [
|
|
1894
|
+
"windows-sys 0.61.2",
|
|
1895
|
+
]
|
|
1896
|
+
|
|
1897
|
+
[[package]]
|
|
1898
|
+
name = "windows-link"
|
|
1899
|
+
version = "0.2.1"
|
|
1900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1901
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1902
|
+
|
|
1903
|
+
[[package]]
|
|
1904
|
+
name = "windows-sys"
|
|
1905
|
+
version = "0.59.0"
|
|
1906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1907
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1908
|
+
dependencies = [
|
|
1909
|
+
"windows-targets 0.52.6",
|
|
1910
|
+
]
|
|
1911
|
+
|
|
1912
|
+
[[package]]
|
|
1913
|
+
name = "windows-sys"
|
|
1914
|
+
version = "0.60.2"
|
|
1915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1916
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
1917
|
+
dependencies = [
|
|
1918
|
+
"windows-targets 0.53.5",
|
|
1919
|
+
]
|
|
1920
|
+
|
|
1921
|
+
[[package]]
|
|
1922
|
+
name = "windows-sys"
|
|
1923
|
+
version = "0.61.2"
|
|
1924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1925
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1926
|
+
dependencies = [
|
|
1927
|
+
"windows-link",
|
|
1928
|
+
]
|
|
1929
|
+
|
|
1930
|
+
[[package]]
|
|
1931
|
+
name = "windows-targets"
|
|
1932
|
+
version = "0.52.6"
|
|
1933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1934
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1935
|
+
dependencies = [
|
|
1936
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
1937
|
+
"windows_aarch64_msvc 0.52.6",
|
|
1938
|
+
"windows_i686_gnu 0.52.6",
|
|
1939
|
+
"windows_i686_gnullvm 0.52.6",
|
|
1940
|
+
"windows_i686_msvc 0.52.6",
|
|
1941
|
+
"windows_x86_64_gnu 0.52.6",
|
|
1942
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
1943
|
+
"windows_x86_64_msvc 0.52.6",
|
|
1944
|
+
]
|
|
1945
|
+
|
|
1946
|
+
[[package]]
|
|
1947
|
+
name = "windows-targets"
|
|
1948
|
+
version = "0.53.5"
|
|
1949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1950
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
1951
|
+
dependencies = [
|
|
1952
|
+
"windows-link",
|
|
1953
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
1954
|
+
"windows_aarch64_msvc 0.53.1",
|
|
1955
|
+
"windows_i686_gnu 0.53.1",
|
|
1956
|
+
"windows_i686_gnullvm 0.53.1",
|
|
1957
|
+
"windows_i686_msvc 0.53.1",
|
|
1958
|
+
"windows_x86_64_gnu 0.53.1",
|
|
1959
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
1960
|
+
"windows_x86_64_msvc 0.53.1",
|
|
1961
|
+
]
|
|
1962
|
+
|
|
1963
|
+
[[package]]
|
|
1964
|
+
name = "windows_aarch64_gnullvm"
|
|
1965
|
+
version = "0.52.6"
|
|
1966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1967
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1968
|
+
|
|
1969
|
+
[[package]]
|
|
1970
|
+
name = "windows_aarch64_gnullvm"
|
|
1971
|
+
version = "0.53.1"
|
|
1972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1973
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
1974
|
+
|
|
1975
|
+
[[package]]
|
|
1976
|
+
name = "windows_aarch64_msvc"
|
|
1977
|
+
version = "0.52.6"
|
|
1978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1979
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1980
|
+
|
|
1981
|
+
[[package]]
|
|
1982
|
+
name = "windows_aarch64_msvc"
|
|
1983
|
+
version = "0.53.1"
|
|
1984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1985
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
1986
|
+
|
|
1987
|
+
[[package]]
|
|
1988
|
+
name = "windows_i686_gnu"
|
|
1989
|
+
version = "0.52.6"
|
|
1990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1991
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1992
|
+
|
|
1993
|
+
[[package]]
|
|
1994
|
+
name = "windows_i686_gnu"
|
|
1995
|
+
version = "0.53.1"
|
|
1996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1997
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
1998
|
+
|
|
1999
|
+
[[package]]
|
|
2000
|
+
name = "windows_i686_gnullvm"
|
|
2001
|
+
version = "0.52.6"
|
|
2002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2003
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2004
|
+
|
|
2005
|
+
[[package]]
|
|
2006
|
+
name = "windows_i686_gnullvm"
|
|
2007
|
+
version = "0.53.1"
|
|
2008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2009
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
2010
|
+
|
|
2011
|
+
[[package]]
|
|
2012
|
+
name = "windows_i686_msvc"
|
|
2013
|
+
version = "0.52.6"
|
|
2014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2015
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2016
|
+
|
|
2017
|
+
[[package]]
|
|
2018
|
+
name = "windows_i686_msvc"
|
|
2019
|
+
version = "0.53.1"
|
|
2020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2021
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
2022
|
+
|
|
2023
|
+
[[package]]
|
|
2024
|
+
name = "windows_x86_64_gnu"
|
|
2025
|
+
version = "0.52.6"
|
|
2026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2027
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2028
|
+
|
|
2029
|
+
[[package]]
|
|
2030
|
+
name = "windows_x86_64_gnu"
|
|
2031
|
+
version = "0.53.1"
|
|
2032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2033
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
2034
|
+
|
|
2035
|
+
[[package]]
|
|
2036
|
+
name = "windows_x86_64_gnullvm"
|
|
2037
|
+
version = "0.52.6"
|
|
2038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2039
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2040
|
+
|
|
2041
|
+
[[package]]
|
|
2042
|
+
name = "windows_x86_64_gnullvm"
|
|
2043
|
+
version = "0.53.1"
|
|
2044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2045
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
2046
|
+
|
|
2047
|
+
[[package]]
|
|
2048
|
+
name = "windows_x86_64_msvc"
|
|
2049
|
+
version = "0.52.6"
|
|
2050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2051
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2052
|
+
|
|
2053
|
+
[[package]]
|
|
2054
|
+
name = "windows_x86_64_msvc"
|
|
2055
|
+
version = "0.53.1"
|
|
2056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2057
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
2058
|
+
|
|
2059
|
+
[[package]]
|
|
2060
|
+
name = "winnow"
|
|
2061
|
+
version = "0.7.13"
|
|
2062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2063
|
+
checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
|
|
2064
|
+
|
|
2065
|
+
[[package]]
|
|
2066
|
+
name = "zerocopy"
|
|
2067
|
+
version = "0.8.27"
|
|
2068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2069
|
+
checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
|
|
2070
|
+
dependencies = [
|
|
2071
|
+
"zerocopy-derive",
|
|
2072
|
+
]
|
|
2073
|
+
|
|
2074
|
+
[[package]]
|
|
2075
|
+
name = "zerocopy-derive"
|
|
2076
|
+
version = "0.8.27"
|
|
2077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2078
|
+
checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
|
|
2079
|
+
dependencies = [
|
|
2080
|
+
"proc-macro2",
|
|
2081
|
+
"quote",
|
|
2082
|
+
"syn",
|
|
2083
|
+
]
|