panache-cli 2.60.0__tar.gz → 3.0.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.
- {panache_cli-2.60.0 → panache_cli-3.0.0}/Cargo.lock +171 -176
- {panache_cli-2.60.0 → panache_cli-3.0.0}/Cargo.toml +6 -6
- {panache_cli-2.60.0 → panache_cli-3.0.0}/PKG-INFO +1 -1
- {panache_cli-2.60.0 → panache_cli-3.0.0}/build.rs +1 -1
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/CHANGELOG.md +33 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/Cargo.toml +2 -2
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/config.rs +35 -4
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/core.rs +77 -36
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/inline.rs +73 -64
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/inline_layout.rs +1 -1
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/math/linebreak.rs +10 -4
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/math.rs +68 -37
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/lib.rs +1 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/CHANGELOG.md +42 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/Cargo.toml +1 -1
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/options.rs +6 -70
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/pandoc_ast.rs +47 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/block_dispatcher.rs +94 -26
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/html_blocks.rs +538 -48
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/metadata.rs +207 -35
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tables.rs +186 -14
- panache_cli-3.0.0/crates/panache-parser/src/parser/blocks/tests/headings.rs +475 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/lists.rs +72 -1
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/metadata_guards.rs +38 -1
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/core.rs +550 -12
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/math.rs +157 -156
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/list_item_buffer.rs +59 -28
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/kind.rs +1 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/links.rs +14 -0
- panache_cli-3.0.0/crates/panache-parser/src/syntax/math.rs +601 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/bib/csl_json.rs +0 -105
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/bib/csl_yaml.rs +0 -10
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/bib/index.rs +0 -11
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/bib/ris.rs +0 -53
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/bib.rs +3 -3
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/cli.rs +12 -26
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/config/formatter_presets.rs +21 -1
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/config/types.rs +53 -249
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/config.rs +172 -149
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/external_formatters_common.rs +105 -6
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/external_formatters_sync.rs +3 -5
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/formatter.rs +9 -1
- panache_cli-3.0.0/src/linter/rules/citation_nonbreaking_space.rs +257 -0
- panache_cli-3.0.0/src/linter/rules/math_content.rs +199 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/unused_definitions.rs +74 -3
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules.rs +1 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter.rs +1 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/dispatch.rs +101 -4
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/documents.rs +22 -20
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/global_state.rs +71 -5
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/diagnostics.rs +36 -34
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/testing.rs +40 -7
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp.rs +47 -5
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/main.rs +37 -97
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/salsa.rs +19 -19
- panache_cli-2.60.0/crates/panache-parser/src/parser/blocks/tests/headings.rs +0 -216
- panache_cli-2.60.0/crates/panache-parser/src/syntax/math.rs +0 -175
- panache_cli-2.60.0/src/linter/rules/math_content.rs +0 -283
- {panache_cli-2.60.0 → panache_cli-3.0.0}/LICENSE +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/README.md +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/assets/quarto-schema/schema.json +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/README.md +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/directives.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/blockquotes.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/code_blocks.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/fenced_divs.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/hashpipe.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/headings.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/indent_utils.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/lists.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/math/STYLE.md +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/math/operators.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/math/render.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/metadata.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/paragraphs.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/sentence_wrap.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/shortcodes.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/smart.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/tables.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/utils.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml/STYLE.md +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml/block_map.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml/block_sequence.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml/document.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml/flow.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml/options.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml/scalar.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/parser.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/syntax.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/utils.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-formatter/src/yaml_engine.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/README.md +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/build.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/grid_layout.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/lib.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/admonitions.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/blockquotes.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/code_blocks.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/container_prefix.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/definition_lists.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/fenced_divs.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/figures.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/headings.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/horizontal_rules.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/indented_code.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/latex_envs.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/line_blocks.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/lists.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/myst_directives.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/myst_targets.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/paragraphs.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/raw_blocks.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/reference_links.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/blanklines.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/blockquotes.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/code_blocks.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/definition_lists.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/helpers.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/losslessness.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/diagnostics.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/bookdown.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/bracketed_spans.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/citations.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/code_spans.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/core.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/emoji.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/escapes.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/inline_executable.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/inline_footnotes.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/inline_html.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/inline_ir.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/latex.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/links.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/mark.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/math.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/myst_roles.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/myst_substitutions.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/native_spans.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/raw_inline.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/refdef_map.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/shortcodes.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/sink.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/strikeout.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/subscript.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/superscript.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/svelte.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/tests.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/uri-schemes.csv +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/wikilinks.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/attributes.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/chunk_options.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/container_stack.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/continuation.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/helpers.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/inline_emission.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/marker_utils.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/text_buffer.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/tree_copy.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/yaml_regions.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml/cooking.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml/events.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml/model.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml/parser.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml/profile.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml/scanner.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml/validator.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/range_utils.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/alerts.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/ast.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/attributes.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/block_quotes.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/blocks.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/chunk_options.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/citations.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/code_blocks.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/crossrefs.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/definitions.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/fenced_divs.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/headings.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/inlines.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/lists.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/myst.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/raw_tex.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/references.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/shortcodes.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/tables.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/yaml.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/yaml_ast.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/pyproject.toml +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/bib/bibtex.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/bib/preview.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/bin/distill_quarto_schema.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/cache.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/config/types/schema_helpers.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/diagnostic_renderer.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/directives.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/external_tools_common.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/includes.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lib.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/code_block_collector.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/diagnostics.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/external_linters/clippy.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/external_linters/eslint.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/external_linters/jarl.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/external_linters/ruff.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/external_linters/shellcheck.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/external_linters/staticcheck.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/external_linters.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/external_linters_sync.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/fuzzy.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/index.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/metadata_diagnostics.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/offsets.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/quarto_schema/distill.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/quarto_schema/interp.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/quarto_schema/model.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/quarto_schema/report.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/quarto_schema/value.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/quarto_schema.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/adjacent_footnote_refs.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/chunk_label_spaces.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/citation_keys.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/consumer_divergence.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/crossref_as_link_target.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/duplicate_references.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/emoji_aliases.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/empty_list_item.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/empty_values.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/figure_crossref_captions.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/footnote_ref_in_footnote_def.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/heading_eaten_attrs.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/heading_hierarchy.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/heading_strip_comments_residue.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/html_entities.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/link_text_is_url.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/missing_chunk_labels.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/quarto_schema.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/stray_fenced_div_markers.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/undefined_anchor.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/rules/undefined_references.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/runner.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/linter/yaml_resolve.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/config.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/context.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/conversions.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/code_actions.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/completion.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/configuration.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/document_highlight.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/document_links.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/document_symbols.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/file_operations.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/file_rename.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/file_watcher.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/folding_ranges.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/footnote_conversion.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/formatting.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/goto_definition.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/heading_link_conversion.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/hover.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/link_conversion.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/linked_editing_range.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/list_conversion.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/prepare_rename.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/references.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/rename.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/semantic_tokens.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/shortcode_args.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/workspace_folders.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers/workspace_symbols.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/handlers.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/helpers.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/navigation.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/symbols.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/task_pool.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/lsp/uri_ext.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/metadata/bibliography.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/metadata/citations.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/metadata/project.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/metadata/references.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/metadata/yaml.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/metadata.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/parser.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/range_utils.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/syntax.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/utils.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/yaml_engine.rs +0 -0
- {panache_cli-2.60.0 → panache_cli-3.0.0}/src/yaml_regions.rs +0 -0
|
@@ -142,9 +142,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
142
142
|
|
|
143
143
|
[[package]]
|
|
144
144
|
name = "bitflags"
|
|
145
|
-
version = "2.13.
|
|
145
|
+
version = "2.13.1"
|
|
146
146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
-
checksum = "
|
|
147
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
148
148
|
|
|
149
149
|
[[package]]
|
|
150
150
|
name = "borrow-or-share"
|
|
@@ -160,9 +160,9 @@ checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
|
|
|
160
160
|
|
|
161
161
|
[[package]]
|
|
162
162
|
name = "bstr"
|
|
163
|
-
version = "1.
|
|
163
|
+
version = "1.13.0"
|
|
164
164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
-
checksum = "
|
|
165
|
+
checksum = "1f7dc094d718f2e1c1559ad110e27eeaae14a5465d3d56dd6dbd793079fbd530"
|
|
166
166
|
dependencies = [
|
|
167
167
|
"memchr",
|
|
168
168
|
"regex-automata",
|
|
@@ -189,9 +189,9 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
|
189
189
|
|
|
190
190
|
[[package]]
|
|
191
191
|
name = "clap"
|
|
192
|
-
version = "4.6.
|
|
192
|
+
version = "4.6.2"
|
|
193
193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
194
|
-
checksum = "
|
|
194
|
+
checksum = "dd059f9da4f5c36b3787f65d38ccaab1cc315f07b01f89abc8359ee6a8205011"
|
|
195
195
|
dependencies = [
|
|
196
196
|
"clap_builder",
|
|
197
197
|
"clap_derive",
|
|
@@ -208,9 +208,9 @@ dependencies = [
|
|
|
208
208
|
|
|
209
209
|
[[package]]
|
|
210
210
|
name = "clap_builder"
|
|
211
|
-
version = "4.6.
|
|
211
|
+
version = "4.6.2"
|
|
212
212
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
-
checksum = "
|
|
213
|
+
checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
|
|
214
214
|
dependencies = [
|
|
215
215
|
"anstream",
|
|
216
216
|
"anstyle",
|
|
@@ -236,7 +236,7 @@ dependencies = [
|
|
|
236
236
|
"heck",
|
|
237
237
|
"proc-macro2",
|
|
238
238
|
"quote",
|
|
239
|
-
"syn",
|
|
239
|
+
"syn 2.0.119",
|
|
240
240
|
]
|
|
241
241
|
|
|
242
242
|
[[package]]
|
|
@@ -289,18 +289,18 @@ dependencies = [
|
|
|
289
289
|
|
|
290
290
|
[[package]]
|
|
291
291
|
name = "crossbeam-channel"
|
|
292
|
-
version = "0.5.
|
|
292
|
+
version = "0.5.16"
|
|
293
293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
-
checksum = "
|
|
294
|
+
checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
|
|
295
295
|
dependencies = [
|
|
296
296
|
"crossbeam-utils",
|
|
297
297
|
]
|
|
298
298
|
|
|
299
299
|
[[package]]
|
|
300
300
|
name = "crossbeam-deque"
|
|
301
|
-
version = "0.8.
|
|
301
|
+
version = "0.8.7"
|
|
302
302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
-
checksum = "
|
|
303
|
+
checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
|
|
304
304
|
dependencies = [
|
|
305
305
|
"crossbeam-epoch",
|
|
306
306
|
"crossbeam-utils",
|
|
@@ -308,27 +308,27 @@ dependencies = [
|
|
|
308
308
|
|
|
309
309
|
[[package]]
|
|
310
310
|
name = "crossbeam-epoch"
|
|
311
|
-
version = "0.9.
|
|
311
|
+
version = "0.9.20"
|
|
312
312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
-
checksum = "
|
|
313
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
314
314
|
dependencies = [
|
|
315
315
|
"crossbeam-utils",
|
|
316
316
|
]
|
|
317
317
|
|
|
318
318
|
[[package]]
|
|
319
319
|
name = "crossbeam-queue"
|
|
320
|
-
version = "0.3.
|
|
320
|
+
version = "0.3.13"
|
|
321
321
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
-
checksum = "
|
|
322
|
+
checksum = "803d13fb3b09d88be9f4dbc29062c66b19bf7170867ceb746d2a8689bf6c7a26"
|
|
323
323
|
dependencies = [
|
|
324
324
|
"crossbeam-utils",
|
|
325
325
|
]
|
|
326
326
|
|
|
327
327
|
[[package]]
|
|
328
328
|
name = "crossbeam-utils"
|
|
329
|
-
version = "0.8.
|
|
329
|
+
version = "0.8.22"
|
|
330
330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
-
checksum = "
|
|
331
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
332
332
|
|
|
333
333
|
[[package]]
|
|
334
334
|
name = "darling"
|
|
@@ -350,7 +350,7 @@ dependencies = [
|
|
|
350
350
|
"proc-macro2",
|
|
351
351
|
"quote",
|
|
352
352
|
"strsim",
|
|
353
|
-
"syn",
|
|
353
|
+
"syn 2.0.119",
|
|
354
354
|
]
|
|
355
355
|
|
|
356
356
|
[[package]]
|
|
@@ -361,7 +361,7 @@ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
|
|
|
361
361
|
dependencies = [
|
|
362
362
|
"darling_core",
|
|
363
363
|
"quote",
|
|
364
|
-
"syn",
|
|
364
|
+
"syn 2.0.119",
|
|
365
365
|
]
|
|
366
366
|
|
|
367
367
|
[[package]]
|
|
@@ -372,9 +372,9 @@ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
|
|
|
372
372
|
|
|
373
373
|
[[package]]
|
|
374
374
|
name = "defmt"
|
|
375
|
-
version = "1.1.
|
|
375
|
+
version = "1.1.1"
|
|
376
376
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
-
checksum = "
|
|
377
|
+
checksum = "e2953bfe4f93bbd20cc71198842756f77d161884c99ebbabc41d80231ded88d1"
|
|
378
378
|
dependencies = [
|
|
379
379
|
"bitflags 1.3.2",
|
|
380
380
|
"defmt-macros",
|
|
@@ -382,15 +382,14 @@ dependencies = [
|
|
|
382
382
|
|
|
383
383
|
[[package]]
|
|
384
384
|
name = "defmt-macros"
|
|
385
|
-
version = "1.1.
|
|
385
|
+
version = "1.1.1"
|
|
386
386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
-
checksum = "
|
|
387
|
+
checksum = "bad9c72e7ca2137e0dc3813245a0d282fd6daad32fd800af018306a9169b5fe8"
|
|
388
388
|
dependencies = [
|
|
389
389
|
"defmt-parser",
|
|
390
|
-
"proc-macro-error2",
|
|
391
390
|
"proc-macro2",
|
|
392
391
|
"quote",
|
|
393
|
-
"syn",
|
|
392
|
+
"syn 2.0.119",
|
|
394
393
|
]
|
|
395
394
|
|
|
396
395
|
[[package]]
|
|
@@ -437,7 +436,7 @@ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
|
437
436
|
dependencies = [
|
|
438
437
|
"proc-macro2",
|
|
439
438
|
"quote",
|
|
440
|
-
"syn",
|
|
439
|
+
"syn 2.0.119",
|
|
441
440
|
]
|
|
442
441
|
|
|
443
442
|
[[package]]
|
|
@@ -534,9 +533,9 @@ dependencies = [
|
|
|
534
533
|
|
|
535
534
|
[[package]]
|
|
536
535
|
name = "fastrand"
|
|
537
|
-
version = "2.
|
|
536
|
+
version = "2.5.0"
|
|
538
537
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
-
checksum = "
|
|
538
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
540
539
|
|
|
541
540
|
[[package]]
|
|
542
541
|
name = "flate2"
|
|
@@ -595,21 +594,21 @@ dependencies = [
|
|
|
595
594
|
|
|
596
595
|
[[package]]
|
|
597
596
|
name = "futures-core"
|
|
598
|
-
version = "0.3.
|
|
597
|
+
version = "0.3.33"
|
|
599
598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
-
checksum = "
|
|
599
|
+
checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
|
|
601
600
|
|
|
602
601
|
[[package]]
|
|
603
602
|
name = "futures-task"
|
|
604
|
-
version = "0.3.
|
|
603
|
+
version = "0.3.33"
|
|
605
604
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
-
checksum = "
|
|
605
|
+
checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
|
|
607
606
|
|
|
608
607
|
[[package]]
|
|
609
608
|
name = "futures-util"
|
|
610
|
-
version = "0.3.
|
|
609
|
+
version = "0.3.33"
|
|
611
610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
-
checksum = "
|
|
611
|
+
checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
|
|
613
612
|
dependencies = [
|
|
614
613
|
"futures-core",
|
|
615
614
|
"futures-task",
|
|
@@ -655,9 +654,9 @@ dependencies = [
|
|
|
655
654
|
|
|
656
655
|
[[package]]
|
|
657
656
|
name = "globset"
|
|
658
|
-
version = "0.4.
|
|
657
|
+
version = "0.4.19"
|
|
659
658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
-
checksum = "
|
|
659
|
+
checksum = "e47d37d2ae4464254884b60ab7071be2b876a9c35b696bd018ddcc76847309cd"
|
|
661
660
|
dependencies = [
|
|
662
661
|
"aho-corasick",
|
|
663
662
|
"bstr",
|
|
@@ -672,17 +671,6 @@ version = "0.14.5"
|
|
|
672
671
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
672
|
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
674
673
|
|
|
675
|
-
[[package]]
|
|
676
|
-
name = "hashbrown"
|
|
677
|
-
version = "0.16.1"
|
|
678
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
-
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
680
|
-
dependencies = [
|
|
681
|
-
"allocator-api2",
|
|
682
|
-
"equivalent",
|
|
683
|
-
"foldhash",
|
|
684
|
-
]
|
|
685
|
-
|
|
686
674
|
[[package]]
|
|
687
675
|
name = "hashbrown"
|
|
688
676
|
version = "0.17.1"
|
|
@@ -696,9 +684,9 @@ dependencies = [
|
|
|
696
684
|
|
|
697
685
|
[[package]]
|
|
698
686
|
name = "hashlink"
|
|
699
|
-
version = "0.12.
|
|
687
|
+
version = "0.12.1"
|
|
700
688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
701
|
-
checksum = "
|
|
689
|
+
checksum = "32069d97bb81e38fa67eab65e3393bf804bb85969f2bc06bf13f64aef5aba248"
|
|
702
690
|
dependencies = [
|
|
703
691
|
"hashbrown 0.17.1",
|
|
704
692
|
]
|
|
@@ -826,9 +814,9 @@ dependencies = [
|
|
|
826
814
|
|
|
827
815
|
[[package]]
|
|
828
816
|
name = "ignore"
|
|
829
|
-
version = "0.4.
|
|
817
|
+
version = "0.4.30"
|
|
830
818
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
-
checksum = "
|
|
819
|
+
checksum = "7b009b6744c1445efd7244084e25e498636412effb6760b55067553baa925cc7"
|
|
832
820
|
dependencies = [
|
|
833
821
|
"crossbeam-deque",
|
|
834
822
|
"globset",
|
|
@@ -895,11 +883,12 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
|
895
883
|
|
|
896
884
|
[[package]]
|
|
897
885
|
name = "jiff"
|
|
898
|
-
version = "0.2.
|
|
886
|
+
version = "0.2.34"
|
|
899
887
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
900
|
-
checksum = "
|
|
888
|
+
checksum = "e184d09547b80eb7e20d141ba2fb1fbac843ca53f4cf1b31210adc4c1adc6e16"
|
|
901
889
|
dependencies = [
|
|
902
890
|
"defmt",
|
|
891
|
+
"jiff-core",
|
|
903
892
|
"jiff-static",
|
|
904
893
|
"log",
|
|
905
894
|
"portable-atomic",
|
|
@@ -907,15 +896,25 @@ dependencies = [
|
|
|
907
896
|
"serde_core",
|
|
908
897
|
]
|
|
909
898
|
|
|
899
|
+
[[package]]
|
|
900
|
+
name = "jiff-core"
|
|
901
|
+
version = "0.1.0"
|
|
902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
903
|
+
checksum = "7feca88439efe53da3754500c1851dedf3cb36c524dd5cf8225cc0794de95d09"
|
|
904
|
+
dependencies = [
|
|
905
|
+
"defmt",
|
|
906
|
+
]
|
|
907
|
+
|
|
910
908
|
[[package]]
|
|
911
909
|
name = "jiff-static"
|
|
912
|
-
version = "0.2.
|
|
910
|
+
version = "0.2.34"
|
|
913
911
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
-
checksum = "
|
|
912
|
+
checksum = "323da076b7a6faf914dc677cb05a4b907742ff7375c8322c9e7f5061e5e0e9de"
|
|
915
913
|
dependencies = [
|
|
914
|
+
"jiff-core",
|
|
916
915
|
"proc-macro2",
|
|
917
916
|
"quote",
|
|
918
|
-
"syn",
|
|
917
|
+
"syn 2.0.119",
|
|
919
918
|
]
|
|
920
919
|
|
|
921
920
|
[[package]]
|
|
@@ -931,9 +930,9 @@ dependencies = [
|
|
|
931
930
|
|
|
932
931
|
[[package]]
|
|
933
932
|
name = "jsonschema"
|
|
934
|
-
version = "0.
|
|
933
|
+
version = "0.47.0"
|
|
935
934
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
-
checksum = "
|
|
935
|
+
checksum = "281c43ff06dcb331e9356d30e38853d559ce3d0a3f693e0b0e102667dec14fb1"
|
|
937
936
|
dependencies = [
|
|
938
937
|
"ahash",
|
|
939
938
|
"bytecount",
|
|
@@ -944,18 +943,27 @@ dependencies = [
|
|
|
944
943
|
"getrandom 0.3.4",
|
|
945
944
|
"idna",
|
|
946
945
|
"itoa",
|
|
946
|
+
"jsonschema-regex",
|
|
947
947
|
"num-cmp",
|
|
948
948
|
"num-traits",
|
|
949
949
|
"percent-encoding",
|
|
950
950
|
"referencing",
|
|
951
951
|
"regex",
|
|
952
|
-
"regex-syntax",
|
|
953
952
|
"serde",
|
|
954
953
|
"serde_json",
|
|
955
954
|
"unicode-general-category",
|
|
956
955
|
"uuid-simd",
|
|
957
956
|
]
|
|
958
957
|
|
|
958
|
+
[[package]]
|
|
959
|
+
name = "jsonschema-regex"
|
|
960
|
+
version = "0.47.0"
|
|
961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
962
|
+
checksum = "ee0b351864e7ffbc5db9273daf7fa1b4d5177b0946713d667ca571b83c0b4045"
|
|
963
|
+
dependencies = [
|
|
964
|
+
"regex-syntax",
|
|
965
|
+
]
|
|
966
|
+
|
|
959
967
|
[[package]]
|
|
960
968
|
name = "lazy_static"
|
|
961
969
|
version = "1.5.0"
|
|
@@ -1006,9 +1014,9 @@ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
|
1006
1014
|
|
|
1007
1015
|
[[package]]
|
|
1008
1016
|
name = "lsp-server"
|
|
1009
|
-
version = "0.
|
|
1017
|
+
version = "0.10.0"
|
|
1010
1018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
-
checksum = "
|
|
1019
|
+
checksum = "3ee25a31f2e571e426eef2896179450cafc7e2f5be00d8a93b1c2d21c0ff7656"
|
|
1012
1020
|
dependencies = [
|
|
1013
1021
|
"crossbeam-channel",
|
|
1014
1022
|
"log",
|
|
@@ -1032,9 +1040,9 @@ dependencies = [
|
|
|
1032
1040
|
|
|
1033
1041
|
[[package]]
|
|
1034
1042
|
name = "memchr"
|
|
1035
|
-
version = "2.8.
|
|
1043
|
+
version = "2.8.3"
|
|
1036
1044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
-
checksum = "
|
|
1045
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
1038
1046
|
|
|
1039
1047
|
[[package]]
|
|
1040
1048
|
name = "memoffset"
|
|
@@ -1083,9 +1091,9 @@ dependencies = [
|
|
|
1083
1091
|
|
|
1084
1092
|
[[package]]
|
|
1085
1093
|
name = "num-bigint"
|
|
1086
|
-
version = "0.4.
|
|
1094
|
+
version = "0.4.8"
|
|
1087
1095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
-
checksum = "
|
|
1096
|
+
checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
|
|
1089
1097
|
dependencies = [
|
|
1090
1098
|
"num-integer",
|
|
1091
1099
|
"num-traits",
|
|
@@ -1117,11 +1125,10 @@ dependencies = [
|
|
|
1117
1125
|
|
|
1118
1126
|
[[package]]
|
|
1119
1127
|
name = "num-iter"
|
|
1120
|
-
version = "0.1.
|
|
1128
|
+
version = "0.1.46"
|
|
1121
1129
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
-
checksum = "
|
|
1130
|
+
checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b"
|
|
1123
1131
|
dependencies = [
|
|
1124
|
-
"autocfg",
|
|
1125
1132
|
"num-integer",
|
|
1126
1133
|
"num-traits",
|
|
1127
1134
|
]
|
|
@@ -1182,7 +1189,7 @@ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
|
|
1182
1189
|
|
|
1183
1190
|
[[package]]
|
|
1184
1191
|
name = "panache"
|
|
1185
|
-
version = "
|
|
1192
|
+
version = "3.0.0"
|
|
1186
1193
|
dependencies = [
|
|
1187
1194
|
"annotate-snippets",
|
|
1188
1195
|
"assert_cmd",
|
|
@@ -1226,7 +1233,7 @@ dependencies = [
|
|
|
1226
1233
|
|
|
1227
1234
|
[[package]]
|
|
1228
1235
|
name = "panache-formatter"
|
|
1229
|
-
version = "0.
|
|
1236
|
+
version = "0.20.0"
|
|
1230
1237
|
dependencies = [
|
|
1231
1238
|
"insta",
|
|
1232
1239
|
"log",
|
|
@@ -1244,7 +1251,7 @@ dependencies = [
|
|
|
1244
1251
|
|
|
1245
1252
|
[[package]]
|
|
1246
1253
|
name = "panache-parser"
|
|
1247
|
-
version = "0.
|
|
1254
|
+
version = "0.22.0"
|
|
1248
1255
|
dependencies = [
|
|
1249
1256
|
"entities",
|
|
1250
1257
|
"insta",
|
|
@@ -1329,9 +1336,9 @@ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
|
1329
1336
|
|
|
1330
1337
|
[[package]]
|
|
1331
1338
|
name = "portable-atomic"
|
|
1332
|
-
version = "1.
|
|
1339
|
+
version = "1.14.0"
|
|
1333
1340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
-
checksum = "
|
|
1341
|
+
checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
|
|
1335
1342
|
|
|
1336
1343
|
[[package]]
|
|
1337
1344
|
name = "portable-atomic-util"
|
|
@@ -1392,33 +1399,11 @@ dependencies = [
|
|
|
1392
1399
|
"yaml_parser",
|
|
1393
1400
|
]
|
|
1394
1401
|
|
|
1395
|
-
[[package]]
|
|
1396
|
-
name = "proc-macro-error-attr2"
|
|
1397
|
-
version = "2.0.0"
|
|
1398
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1399
|
-
checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
|
|
1400
|
-
dependencies = [
|
|
1401
|
-
"proc-macro2",
|
|
1402
|
-
"quote",
|
|
1403
|
-
]
|
|
1404
|
-
|
|
1405
|
-
[[package]]
|
|
1406
|
-
name = "proc-macro-error2"
|
|
1407
|
-
version = "2.0.1"
|
|
1408
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
-
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
|
|
1410
|
-
dependencies = [
|
|
1411
|
-
"proc-macro-error-attr2",
|
|
1412
|
-
"proc-macro2",
|
|
1413
|
-
"quote",
|
|
1414
|
-
"syn",
|
|
1415
|
-
]
|
|
1416
|
-
|
|
1417
1402
|
[[package]]
|
|
1418
1403
|
name = "proc-macro2"
|
|
1419
|
-
version = "1.0.
|
|
1404
|
+
version = "1.0.107"
|
|
1420
1405
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1421
|
-
checksum = "
|
|
1406
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
1422
1407
|
dependencies = [
|
|
1423
1408
|
"unicode-ident",
|
|
1424
1409
|
]
|
|
@@ -1434,9 +1419,9 @@ dependencies = [
|
|
|
1434
1419
|
|
|
1435
1420
|
[[package]]
|
|
1436
1421
|
name = "quote"
|
|
1437
|
-
version = "1.0.
|
|
1422
|
+
version = "1.0.47"
|
|
1438
1423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1439
|
-
checksum = "
|
|
1424
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
1440
1425
|
dependencies = [
|
|
1441
1426
|
"proc-macro2",
|
|
1442
1427
|
]
|
|
@@ -1479,7 +1464,7 @@ version = "0.5.18"
|
|
|
1479
1464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
1465
|
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1481
1466
|
dependencies = [
|
|
1482
|
-
"bitflags 2.13.
|
|
1467
|
+
"bitflags 2.13.1",
|
|
1483
1468
|
]
|
|
1484
1469
|
|
|
1485
1470
|
[[package]]
|
|
@@ -1495,34 +1480,34 @@ dependencies = [
|
|
|
1495
1480
|
|
|
1496
1481
|
[[package]]
|
|
1497
1482
|
name = "ref-cast"
|
|
1498
|
-
version = "1.0.
|
|
1483
|
+
version = "1.0.26"
|
|
1499
1484
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1500
|
-
checksum = "
|
|
1485
|
+
checksum = "216e8f773d7923bcba9ceb86a86c93cabb3903a11872fc3f138c49630e50b96d"
|
|
1501
1486
|
dependencies = [
|
|
1502
1487
|
"ref-cast-impl",
|
|
1503
1488
|
]
|
|
1504
1489
|
|
|
1505
1490
|
[[package]]
|
|
1506
1491
|
name = "ref-cast-impl"
|
|
1507
|
-
version = "1.0.
|
|
1492
|
+
version = "1.0.26"
|
|
1508
1493
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1509
|
-
checksum = "
|
|
1494
|
+
checksum = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c"
|
|
1510
1495
|
dependencies = [
|
|
1511
1496
|
"proc-macro2",
|
|
1512
1497
|
"quote",
|
|
1513
|
-
"syn",
|
|
1498
|
+
"syn 3.0.2",
|
|
1514
1499
|
]
|
|
1515
1500
|
|
|
1516
1501
|
[[package]]
|
|
1517
1502
|
name = "referencing"
|
|
1518
|
-
version = "0.
|
|
1503
|
+
version = "0.47.0"
|
|
1519
1504
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1520
|
-
checksum = "
|
|
1505
|
+
checksum = "348e860aeb0b7bd035778fd11dd9cd5290d32e4aed3b8f2274a00287a9fd362b"
|
|
1521
1506
|
dependencies = [
|
|
1522
1507
|
"ahash",
|
|
1523
1508
|
"fluent-uri 0.4.1",
|
|
1524
1509
|
"getrandom 0.3.4",
|
|
1525
|
-
"hashbrown 0.
|
|
1510
|
+
"hashbrown 0.17.1",
|
|
1526
1511
|
"itoa",
|
|
1527
1512
|
"micromap",
|
|
1528
1513
|
"parking_lot",
|
|
@@ -1532,9 +1517,9 @@ dependencies = [
|
|
|
1532
1517
|
|
|
1533
1518
|
[[package]]
|
|
1534
1519
|
name = "regex"
|
|
1535
|
-
version = "1.
|
|
1520
|
+
version = "1.13.1"
|
|
1536
1521
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1537
|
-
checksum = "
|
|
1522
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
1538
1523
|
dependencies = [
|
|
1539
1524
|
"aho-corasick",
|
|
1540
1525
|
"memchr",
|
|
@@ -1544,9 +1529,9 @@ dependencies = [
|
|
|
1544
1529
|
|
|
1545
1530
|
[[package]]
|
|
1546
1531
|
name = "regex-automata"
|
|
1547
|
-
version = "0.4.
|
|
1532
|
+
version = "0.4.16"
|
|
1548
1533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1549
|
-
checksum = "
|
|
1534
|
+
checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
|
|
1550
1535
|
dependencies = [
|
|
1551
1536
|
"aho-corasick",
|
|
1552
1537
|
"memchr",
|
|
@@ -1585,9 +1570,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
|
1585
1570
|
|
|
1586
1571
|
[[package]]
|
|
1587
1572
|
name = "rustc-hash"
|
|
1588
|
-
version = "2.1.
|
|
1573
|
+
version = "2.1.3"
|
|
1589
1574
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1590
|
-
checksum = "
|
|
1575
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
1591
1576
|
|
|
1592
1577
|
[[package]]
|
|
1593
1578
|
name = "rustix"
|
|
@@ -1595,7 +1580,7 @@ version = "1.1.4"
|
|
|
1595
1580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1596
1581
|
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1597
1582
|
dependencies = [
|
|
1598
|
-
"bitflags 2.13.
|
|
1583
|
+
"bitflags 2.13.1",
|
|
1599
1584
|
"errno",
|
|
1600
1585
|
"libc",
|
|
1601
1586
|
"linux-raw-sys",
|
|
@@ -1604,15 +1589,15 @@ dependencies = [
|
|
|
1604
1589
|
|
|
1605
1590
|
[[package]]
|
|
1606
1591
|
name = "rustversion"
|
|
1607
|
-
version = "1.0.
|
|
1592
|
+
version = "1.0.23"
|
|
1608
1593
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1609
|
-
checksum = "
|
|
1594
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
1610
1595
|
|
|
1611
1596
|
[[package]]
|
|
1612
1597
|
name = "salsa"
|
|
1613
|
-
version = "0.
|
|
1598
|
+
version = "0.28.0"
|
|
1614
1599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1615
|
-
checksum = "
|
|
1600
|
+
checksum = "63ad5919b18c2deaf18921fffd5c84d6e41416d1ef80b6b541d629aa30ce8556"
|
|
1616
1601
|
dependencies = [
|
|
1617
1602
|
"boxcar",
|
|
1618
1603
|
"crossbeam-queue",
|
|
@@ -1625,7 +1610,7 @@ dependencies = [
|
|
|
1625
1610
|
"parking_lot",
|
|
1626
1611
|
"portable-atomic",
|
|
1627
1612
|
"rayon",
|
|
1628
|
-
"rustc-hash 2.1.
|
|
1613
|
+
"rustc-hash 2.1.3",
|
|
1629
1614
|
"salsa-macro-rules",
|
|
1630
1615
|
"salsa-macros",
|
|
1631
1616
|
"smallvec",
|
|
@@ -1636,20 +1621,19 @@ dependencies = [
|
|
|
1636
1621
|
|
|
1637
1622
|
[[package]]
|
|
1638
1623
|
name = "salsa-macro-rules"
|
|
1639
|
-
version = "0.
|
|
1624
|
+
version = "0.28.0"
|
|
1640
1625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1641
|
-
checksum = "
|
|
1626
|
+
checksum = "d50068b1f8b1ac7567a4a70eb6cc15daa9dc997b73a6b5aa3248dd960755cddb"
|
|
1642
1627
|
|
|
1643
1628
|
[[package]]
|
|
1644
1629
|
name = "salsa-macros"
|
|
1645
|
-
version = "0.
|
|
1630
|
+
version = "0.28.0"
|
|
1646
1631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1647
|
-
checksum = "
|
|
1632
|
+
checksum = "8b26cb1c61fc424f7ff36e0606491429f58d1738bb0917cd999d680baae0c52c"
|
|
1648
1633
|
dependencies = [
|
|
1649
1634
|
"proc-macro2",
|
|
1650
1635
|
"quote",
|
|
1651
|
-
"syn",
|
|
1652
|
-
"synstructure",
|
|
1636
|
+
"syn 2.0.119",
|
|
1653
1637
|
]
|
|
1654
1638
|
|
|
1655
1639
|
[[package]]
|
|
@@ -1683,7 +1667,7 @@ dependencies = [
|
|
|
1683
1667
|
"proc-macro2",
|
|
1684
1668
|
"quote",
|
|
1685
1669
|
"serde_derive_internals",
|
|
1686
|
-
"syn",
|
|
1670
|
+
"syn 2.0.119",
|
|
1687
1671
|
]
|
|
1688
1672
|
|
|
1689
1673
|
[[package]]
|
|
@@ -1694,9 +1678,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
1694
1678
|
|
|
1695
1679
|
[[package]]
|
|
1696
1680
|
name = "serde"
|
|
1697
|
-
version = "1.0.
|
|
1681
|
+
version = "1.0.229"
|
|
1698
1682
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1699
|
-
checksum = "
|
|
1683
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
1700
1684
|
dependencies = [
|
|
1701
1685
|
"serde_core",
|
|
1702
1686
|
"serde_derive",
|
|
@@ -1704,22 +1688,22 @@ dependencies = [
|
|
|
1704
1688
|
|
|
1705
1689
|
[[package]]
|
|
1706
1690
|
name = "serde_core"
|
|
1707
|
-
version = "1.0.
|
|
1691
|
+
version = "1.0.229"
|
|
1708
1692
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1709
|
-
checksum = "
|
|
1693
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
1710
1694
|
dependencies = [
|
|
1711
1695
|
"serde_derive",
|
|
1712
1696
|
]
|
|
1713
1697
|
|
|
1714
1698
|
[[package]]
|
|
1715
1699
|
name = "serde_derive"
|
|
1716
|
-
version = "1.0.
|
|
1700
|
+
version = "1.0.229"
|
|
1717
1701
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1718
|
-
checksum = "
|
|
1702
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
1719
1703
|
dependencies = [
|
|
1720
1704
|
"proc-macro2",
|
|
1721
1705
|
"quote",
|
|
1722
|
-
"syn",
|
|
1706
|
+
"syn 3.0.2",
|
|
1723
1707
|
]
|
|
1724
1708
|
|
|
1725
1709
|
[[package]]
|
|
@@ -1730,14 +1714,14 @@ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
|
|
|
1730
1714
|
dependencies = [
|
|
1731
1715
|
"proc-macro2",
|
|
1732
1716
|
"quote",
|
|
1733
|
-
"syn",
|
|
1717
|
+
"syn 2.0.119",
|
|
1734
1718
|
]
|
|
1735
1719
|
|
|
1736
1720
|
[[package]]
|
|
1737
1721
|
name = "serde_json"
|
|
1738
|
-
version = "1.0.
|
|
1722
|
+
version = "1.0.151"
|
|
1739
1723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1740
|
-
checksum = "
|
|
1724
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
1741
1725
|
dependencies = [
|
|
1742
1726
|
"itoa",
|
|
1743
1727
|
"memchr",
|
|
@@ -1748,13 +1732,13 @@ dependencies = [
|
|
|
1748
1732
|
|
|
1749
1733
|
[[package]]
|
|
1750
1734
|
name = "serde_repr"
|
|
1751
|
-
version = "0.1.
|
|
1735
|
+
version = "0.1.21"
|
|
1752
1736
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1753
|
-
checksum = "
|
|
1737
|
+
checksum = "8d3b1629de253c70a0508c3899572da79ca359fdab27c7920ff00406df418906"
|
|
1754
1738
|
dependencies = [
|
|
1755
1739
|
"proc-macro2",
|
|
1756
1740
|
"quote",
|
|
1757
|
-
"syn",
|
|
1741
|
+
"syn 3.0.2",
|
|
1758
1742
|
]
|
|
1759
1743
|
|
|
1760
1744
|
[[package]]
|
|
@@ -1768,9 +1752,9 @@ dependencies = [
|
|
|
1768
1752
|
|
|
1769
1753
|
[[package]]
|
|
1770
1754
|
name = "simd-adler32"
|
|
1771
|
-
version = "0.3.
|
|
1755
|
+
version = "0.3.10"
|
|
1772
1756
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1773
|
-
checksum = "
|
|
1757
|
+
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
|
|
1774
1758
|
|
|
1775
1759
|
[[package]]
|
|
1776
1760
|
name = "similar"
|
|
@@ -1830,9 +1814,20 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
|
1830
1814
|
|
|
1831
1815
|
[[package]]
|
|
1832
1816
|
name = "syn"
|
|
1833
|
-
version = "2.0.
|
|
1817
|
+
version = "2.0.119"
|
|
1818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1819
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
1820
|
+
dependencies = [
|
|
1821
|
+
"proc-macro2",
|
|
1822
|
+
"quote",
|
|
1823
|
+
"unicode-ident",
|
|
1824
|
+
]
|
|
1825
|
+
|
|
1826
|
+
[[package]]
|
|
1827
|
+
name = "syn"
|
|
1828
|
+
version = "3.0.2"
|
|
1834
1829
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1835
|
-
checksum = "
|
|
1830
|
+
checksum = "a207d6d6a2b7fc470b80443726053f18a2481b7e1eee970597051596567987a3"
|
|
1836
1831
|
dependencies = [
|
|
1837
1832
|
"proc-macro2",
|
|
1838
1833
|
"quote",
|
|
@@ -1847,7 +1842,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
|
1847
1842
|
dependencies = [
|
|
1848
1843
|
"proc-macro2",
|
|
1849
1844
|
"quote",
|
|
1850
|
-
"syn",
|
|
1845
|
+
"syn 2.0.119",
|
|
1851
1846
|
]
|
|
1852
1847
|
|
|
1853
1848
|
[[package]]
|
|
@@ -1883,22 +1878,22 @@ checksum = "b0f7e269b48f0a7dd0146680fa24b50cc67fc0373f086a5b2f99bd084639b482"
|
|
|
1883
1878
|
|
|
1884
1879
|
[[package]]
|
|
1885
1880
|
name = "thiserror"
|
|
1886
|
-
version = "2.0.
|
|
1881
|
+
version = "2.0.19"
|
|
1887
1882
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1888
|
-
checksum = "
|
|
1883
|
+
checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
|
|
1889
1884
|
dependencies = [
|
|
1890
1885
|
"thiserror-impl",
|
|
1891
1886
|
]
|
|
1892
1887
|
|
|
1893
1888
|
[[package]]
|
|
1894
1889
|
name = "thiserror-impl"
|
|
1895
|
-
version = "2.0.
|
|
1890
|
+
version = "2.0.19"
|
|
1896
1891
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1897
|
-
checksum = "
|
|
1892
|
+
checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
|
|
1898
1893
|
dependencies = [
|
|
1899
1894
|
"proc-macro2",
|
|
1900
1895
|
"quote",
|
|
1901
|
-
"syn",
|
|
1896
|
+
"syn 3.0.2",
|
|
1902
1897
|
]
|
|
1903
1898
|
|
|
1904
1899
|
[[package]]
|
|
@@ -1919,9 +1914,9 @@ dependencies = [
|
|
|
1919
1914
|
|
|
1920
1915
|
[[package]]
|
|
1921
1916
|
name = "toml"
|
|
1922
|
-
version = "1.1.
|
|
1917
|
+
version = "1.1.3+spec-1.1.0"
|
|
1923
1918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1924
|
-
checksum = "
|
|
1919
|
+
checksum = "53c96ecdfa941c8fc4fcaed14f99ada8ebed502eef533015095a07e3301d4c3c"
|
|
1925
1920
|
dependencies = [
|
|
1926
1921
|
"indexmap",
|
|
1927
1922
|
"serde_core",
|
|
@@ -1929,7 +1924,7 @@ dependencies = [
|
|
|
1929
1924
|
"toml_datetime",
|
|
1930
1925
|
"toml_parser",
|
|
1931
1926
|
"toml_writer",
|
|
1932
|
-
"winnow 1.0.
|
|
1927
|
+
"winnow 1.0.4",
|
|
1933
1928
|
]
|
|
1934
1929
|
|
|
1935
1930
|
[[package]]
|
|
@@ -1947,14 +1942,14 @@ version = "1.1.2+spec-1.1.0"
|
|
|
1947
1942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1948
1943
|
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
1949
1944
|
dependencies = [
|
|
1950
|
-
"winnow 1.0.
|
|
1945
|
+
"winnow 1.0.4",
|
|
1951
1946
|
]
|
|
1952
1947
|
|
|
1953
1948
|
[[package]]
|
|
1954
1949
|
name = "toml_writer"
|
|
1955
|
-
version = "1.1.
|
|
1950
|
+
version = "1.1.2+spec-1.1.0"
|
|
1956
1951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1957
|
-
checksum = "
|
|
1952
|
+
checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
|
|
1958
1953
|
|
|
1959
1954
|
[[package]]
|
|
1960
1955
|
name = "tracing"
|
|
@@ -2019,9 +2014,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
2019
2014
|
|
|
2020
2015
|
[[package]]
|
|
2021
2016
|
name = "uuid"
|
|
2022
|
-
version = "1.
|
|
2017
|
+
version = "1.24.0"
|
|
2023
2018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2024
|
-
checksum = "
|
|
2019
|
+
checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
|
|
2025
2020
|
dependencies = [
|
|
2026
2021
|
"getrandom 0.4.3",
|
|
2027
2022
|
"js-sys",
|
|
@@ -2116,7 +2111,7 @@ dependencies = [
|
|
|
2116
2111
|
"bumpalo",
|
|
2117
2112
|
"proc-macro2",
|
|
2118
2113
|
"quote",
|
|
2119
|
-
"syn",
|
|
2114
|
+
"syn 2.0.119",
|
|
2120
2115
|
"wasm-bindgen-shared",
|
|
2121
2116
|
]
|
|
2122
2117
|
|
|
@@ -2131,9 +2126,9 @@ dependencies = [
|
|
|
2131
2126
|
|
|
2132
2127
|
[[package]]
|
|
2133
2128
|
name = "which"
|
|
2134
|
-
version = "8.0.
|
|
2129
|
+
version = "8.0.5"
|
|
2135
2130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2136
|
-
checksum = "
|
|
2131
|
+
checksum = "8f3ef584124b911bcc3875c2f1472e80f24361ceb789bd1c62b3e9a3df9ff43c"
|
|
2137
2132
|
dependencies = [
|
|
2138
2133
|
"libc",
|
|
2139
2134
|
]
|
|
@@ -2169,7 +2164,7 @@ dependencies = [
|
|
|
2169
2164
|
"darling",
|
|
2170
2165
|
"proc-macro2",
|
|
2171
2166
|
"quote",
|
|
2172
|
-
"syn",
|
|
2167
|
+
"syn 2.0.119",
|
|
2173
2168
|
]
|
|
2174
2169
|
|
|
2175
2170
|
[[package]]
|
|
@@ -2198,9 +2193,9 @@ dependencies = [
|
|
|
2198
2193
|
|
|
2199
2194
|
[[package]]
|
|
2200
2195
|
name = "winnow"
|
|
2201
|
-
version = "1.0.
|
|
2196
|
+
version = "1.0.4"
|
|
2202
2197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2203
|
-
checksum = "
|
|
2198
|
+
checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
|
|
2204
2199
|
|
|
2205
2200
|
[[package]]
|
|
2206
2201
|
name = "wit-bindgen"
|
|
@@ -2243,28 +2238,28 @@ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
|
2243
2238
|
dependencies = [
|
|
2244
2239
|
"proc-macro2",
|
|
2245
2240
|
"quote",
|
|
2246
|
-
"syn",
|
|
2241
|
+
"syn 2.0.119",
|
|
2247
2242
|
"synstructure",
|
|
2248
2243
|
]
|
|
2249
2244
|
|
|
2250
2245
|
[[package]]
|
|
2251
2246
|
name = "zerocopy"
|
|
2252
|
-
version = "0.8.
|
|
2247
|
+
version = "0.8.54"
|
|
2253
2248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2254
|
-
checksum = "
|
|
2249
|
+
checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
|
|
2255
2250
|
dependencies = [
|
|
2256
2251
|
"zerocopy-derive",
|
|
2257
2252
|
]
|
|
2258
2253
|
|
|
2259
2254
|
[[package]]
|
|
2260
2255
|
name = "zerocopy-derive"
|
|
2261
|
-
version = "0.8.
|
|
2256
|
+
version = "0.8.54"
|
|
2262
2257
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2263
|
-
checksum = "
|
|
2258
|
+
checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
|
|
2264
2259
|
dependencies = [
|
|
2265
2260
|
"proc-macro2",
|
|
2266
2261
|
"quote",
|
|
2267
|
-
"syn",
|
|
2262
|
+
"syn 2.0.119",
|
|
2268
2263
|
]
|
|
2269
2264
|
|
|
2270
2265
|
[[package]]
|
|
@@ -2284,7 +2279,7 @@ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
|
2284
2279
|
dependencies = [
|
|
2285
2280
|
"proc-macro2",
|
|
2286
2281
|
"quote",
|
|
2287
|
-
"syn",
|
|
2282
|
+
"syn 2.0.119",
|
|
2288
2283
|
"synstructure",
|
|
2289
2284
|
]
|
|
2290
2285
|
|
|
@@ -2318,11 +2313,11 @@ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
|
2318
2313
|
dependencies = [
|
|
2319
2314
|
"proc-macro2",
|
|
2320
2315
|
"quote",
|
|
2321
|
-
"syn",
|
|
2316
|
+
"syn 2.0.119",
|
|
2322
2317
|
]
|
|
2323
2318
|
|
|
2324
2319
|
[[package]]
|
|
2325
2320
|
name = "zmij"
|
|
2326
|
-
version = "1.0.
|
|
2321
|
+
version = "1.0.23"
|
|
2327
2322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2328
|
-
checksum = "
|
|
2323
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|