panache-cli 2.61.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.61.0 → panache_cli-3.0.0}/Cargo.lock +156 -147
- {panache_cli-2.61.0 → panache_cli-3.0.0}/Cargo.toml +6 -6
- {panache_cli-2.61.0 → panache_cli-3.0.0}/PKG-INFO +1 -1
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/CHANGELOG.md +22 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/Cargo.toml +2 -2
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/config.rs +35 -4
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/core.rs +56 -21
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/inline.rs +6 -1
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/inline_layout.rs +1 -1
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/math/linebreak.rs +10 -4
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/math.rs +19 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/lib.rs +1 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/CHANGELOG.md +25 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/Cargo.toml +1 -1
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/options.rs +6 -70
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/block_dispatcher.rs +93 -38
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/html_blocks.rs +123 -29
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/metadata.rs +207 -35
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tables.rs +138 -7
- panache_cli-3.0.0/crates/panache-parser/src/parser/blocks/tests/headings.rs +475 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/lists.rs +72 -1
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/metadata_guards.rs +38 -1
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/core.rs +550 -12
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/list_item_buffer.rs +59 -28
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/bib/csl_json.rs +0 -105
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/bib/csl_yaml.rs +0 -10
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/bib/index.rs +0 -11
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/bib/ris.rs +0 -53
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/bib.rs +3 -3
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/cli.rs +12 -26
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/config/formatter_presets.rs +0 -1
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/config/types.rs +53 -249
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/config.rs +172 -149
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/external_formatters_common.rs +105 -6
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/external_formatters_sync.rs +3 -5
- {panache_cli-2.61.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-2.61.0 → panache_cli-3.0.0}/src/linter/rules.rs +1 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter.rs +1 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/dispatch.rs +101 -4
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/documents.rs +22 -20
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/global_state.rs +71 -5
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/diagnostics.rs +36 -34
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/testing.rs +40 -7
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp.rs +47 -5
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/main.rs +37 -97
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/salsa.rs +19 -19
- panache_cli-2.61.0/crates/panache-parser/src/parser/blocks/tests/headings.rs +0 -216
- {panache_cli-2.61.0 → panache_cli-3.0.0}/LICENSE +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/README.md +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/assets/quarto-schema/schema.json +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/build.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/README.md +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/directives.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/blockquotes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/code_blocks.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/fenced_divs.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/hashpipe.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/headings.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/indent_utils.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/lists.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/math/STYLE.md +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/math/operators.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/math/render.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/metadata.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/paragraphs.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/sentence_wrap.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/shortcodes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/smart.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/tables.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/utils.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml/STYLE.md +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml/block_map.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml/block_sequence.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml/document.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml/flow.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml/options.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml/scalar.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/parser.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/syntax.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/utils.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/yaml_engine.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/README.md +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/build.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/grid_layout.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/lib.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/pandoc_ast.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/admonitions.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/blockquotes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/code_blocks.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/container_prefix.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/definition_lists.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/fenced_divs.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/figures.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/headings.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/horizontal_rules.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/indented_code.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/latex_envs.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/line_blocks.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/lists.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/myst_directives.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/myst_targets.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/paragraphs.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/raw_blocks.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/reference_links.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/blanklines.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/blockquotes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/code_blocks.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/definition_lists.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/helpers.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/losslessness.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/diagnostics.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/bookdown.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/bracketed_spans.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/citations.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/code_spans.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/core.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/emoji.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/escapes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/inline_executable.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/inline_footnotes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/inline_html.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/inline_ir.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/latex.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/links.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/mark.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/math.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/myst_roles.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/myst_substitutions.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/native_spans.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/raw_inline.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/refdef_map.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/shortcodes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/sink.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/strikeout.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/subscript.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/superscript.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/svelte.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/tests.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/uri-schemes.csv +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/wikilinks.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/math.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/attributes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/chunk_options.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/container_stack.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/continuation.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/helpers.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/inline_emission.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/marker_utils.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/text_buffer.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/tree_copy.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/yaml_regions.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml/cooking.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml/events.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml/model.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml/parser.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml/profile.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml/scanner.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml/validator.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/range_utils.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/alerts.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/ast.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/attributes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/block_quotes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/blocks.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/chunk_options.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/citations.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/code_blocks.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/crossrefs.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/definitions.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/fenced_divs.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/headings.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/inlines.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/kind.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/links.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/lists.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/math.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/myst.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/raw_tex.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/references.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/shortcodes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/tables.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/yaml.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/yaml_ast.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/pyproject.toml +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/bib/bibtex.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/bib/preview.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/bin/distill_quarto_schema.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/cache.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/config/types/schema_helpers.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/diagnostic_renderer.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/directives.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/external_tools_common.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/includes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lib.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/code_block_collector.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/diagnostics.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/external_linters/clippy.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/external_linters/eslint.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/external_linters/jarl.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/external_linters/ruff.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/external_linters/shellcheck.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/external_linters/staticcheck.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/external_linters.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/external_linters_sync.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/fuzzy.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/index.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/metadata_diagnostics.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/offsets.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/quarto_schema/distill.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/quarto_schema/interp.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/quarto_schema/model.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/quarto_schema/report.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/quarto_schema/value.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/quarto_schema.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/adjacent_footnote_refs.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/chunk_label_spaces.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/citation_keys.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/consumer_divergence.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/crossref_as_link_target.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/duplicate_references.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/emoji_aliases.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/empty_list_item.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/empty_values.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/figure_crossref_captions.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/footnote_ref_in_footnote_def.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/heading_eaten_attrs.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/heading_hierarchy.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/heading_strip_comments_residue.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/html_entities.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/link_text_is_url.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/math_content.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/missing_chunk_labels.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/quarto_schema.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/stray_fenced_div_markers.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/undefined_anchor.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/undefined_references.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/unused_definitions.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/runner.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/yaml_resolve.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/config.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/context.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/conversions.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/code_actions.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/completion.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/configuration.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/document_highlight.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/document_links.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/document_symbols.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/file_operations.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/file_rename.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/file_watcher.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/folding_ranges.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/footnote_conversion.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/formatting.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/goto_definition.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/heading_link_conversion.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/hover.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/link_conversion.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/linked_editing_range.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/list_conversion.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/prepare_rename.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/references.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/rename.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/semantic_tokens.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/shortcode_args.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/workspace_folders.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/workspace_symbols.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/helpers.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/navigation.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/symbols.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/task_pool.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/uri_ext.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/metadata/bibliography.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/metadata/citations.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/metadata/project.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/metadata/references.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/metadata/yaml.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/metadata.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/parser.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/range_utils.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/syntax.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/utils.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.0}/src/yaml_engine.rs +0 -0
- {panache_cli-2.61.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]]
|
|
@@ -389,7 +389,7 @@ dependencies = [
|
|
|
389
389
|
"defmt-parser",
|
|
390
390
|
"proc-macro2",
|
|
391
391
|
"quote",
|
|
392
|
-
"syn",
|
|
392
|
+
"syn 2.0.119",
|
|
393
393
|
]
|
|
394
394
|
|
|
395
395
|
[[package]]
|
|
@@ -436,7 +436,7 @@ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
|
436
436
|
dependencies = [
|
|
437
437
|
"proc-macro2",
|
|
438
438
|
"quote",
|
|
439
|
-
"syn",
|
|
439
|
+
"syn 2.0.119",
|
|
440
440
|
]
|
|
441
441
|
|
|
442
442
|
[[package]]
|
|
@@ -533,9 +533,9 @@ dependencies = [
|
|
|
533
533
|
|
|
534
534
|
[[package]]
|
|
535
535
|
name = "fastrand"
|
|
536
|
-
version = "2.
|
|
536
|
+
version = "2.5.0"
|
|
537
537
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
-
checksum = "
|
|
538
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
539
539
|
|
|
540
540
|
[[package]]
|
|
541
541
|
name = "flate2"
|
|
@@ -594,21 +594,21 @@ dependencies = [
|
|
|
594
594
|
|
|
595
595
|
[[package]]
|
|
596
596
|
name = "futures-core"
|
|
597
|
-
version = "0.3.
|
|
597
|
+
version = "0.3.33"
|
|
598
598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
|
-
checksum = "
|
|
599
|
+
checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
|
|
600
600
|
|
|
601
601
|
[[package]]
|
|
602
602
|
name = "futures-task"
|
|
603
|
-
version = "0.3.
|
|
603
|
+
version = "0.3.33"
|
|
604
604
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
-
checksum = "
|
|
605
|
+
checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
|
|
606
606
|
|
|
607
607
|
[[package]]
|
|
608
608
|
name = "futures-util"
|
|
609
|
-
version = "0.3.
|
|
609
|
+
version = "0.3.33"
|
|
610
610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
-
checksum = "
|
|
611
|
+
checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
|
|
612
612
|
dependencies = [
|
|
613
613
|
"futures-core",
|
|
614
614
|
"futures-task",
|
|
@@ -654,9 +654,9 @@ dependencies = [
|
|
|
654
654
|
|
|
655
655
|
[[package]]
|
|
656
656
|
name = "globset"
|
|
657
|
-
version = "0.4.
|
|
657
|
+
version = "0.4.19"
|
|
658
658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
-
checksum = "
|
|
659
|
+
checksum = "e47d37d2ae4464254884b60ab7071be2b876a9c35b696bd018ddcc76847309cd"
|
|
660
660
|
dependencies = [
|
|
661
661
|
"aho-corasick",
|
|
662
662
|
"bstr",
|
|
@@ -671,17 +671,6 @@ version = "0.14.5"
|
|
|
671
671
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
672
|
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
673
673
|
|
|
674
|
-
[[package]]
|
|
675
|
-
name = "hashbrown"
|
|
676
|
-
version = "0.16.1"
|
|
677
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
-
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
679
|
-
dependencies = [
|
|
680
|
-
"allocator-api2",
|
|
681
|
-
"equivalent",
|
|
682
|
-
"foldhash",
|
|
683
|
-
]
|
|
684
|
-
|
|
685
674
|
[[package]]
|
|
686
675
|
name = "hashbrown"
|
|
687
676
|
version = "0.17.1"
|
|
@@ -695,9 +684,9 @@ dependencies = [
|
|
|
695
684
|
|
|
696
685
|
[[package]]
|
|
697
686
|
name = "hashlink"
|
|
698
|
-
version = "0.12.
|
|
687
|
+
version = "0.12.1"
|
|
699
688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
-
checksum = "
|
|
689
|
+
checksum = "32069d97bb81e38fa67eab65e3393bf804bb85969f2bc06bf13f64aef5aba248"
|
|
701
690
|
dependencies = [
|
|
702
691
|
"hashbrown 0.17.1",
|
|
703
692
|
]
|
|
@@ -825,9 +814,9 @@ dependencies = [
|
|
|
825
814
|
|
|
826
815
|
[[package]]
|
|
827
816
|
name = "ignore"
|
|
828
|
-
version = "0.4.
|
|
817
|
+
version = "0.4.30"
|
|
829
818
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
-
checksum = "
|
|
819
|
+
checksum = "7b009b6744c1445efd7244084e25e498636412effb6760b55067553baa925cc7"
|
|
831
820
|
dependencies = [
|
|
832
821
|
"crossbeam-deque",
|
|
833
822
|
"globset",
|
|
@@ -894,11 +883,12 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
|
894
883
|
|
|
895
884
|
[[package]]
|
|
896
885
|
name = "jiff"
|
|
897
|
-
version = "0.2.
|
|
886
|
+
version = "0.2.34"
|
|
898
887
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
-
checksum = "
|
|
888
|
+
checksum = "e184d09547b80eb7e20d141ba2fb1fbac843ca53f4cf1b31210adc4c1adc6e16"
|
|
900
889
|
dependencies = [
|
|
901
890
|
"defmt",
|
|
891
|
+
"jiff-core",
|
|
902
892
|
"jiff-static",
|
|
903
893
|
"log",
|
|
904
894
|
"portable-atomic",
|
|
@@ -906,15 +896,25 @@ dependencies = [
|
|
|
906
896
|
"serde_core",
|
|
907
897
|
]
|
|
908
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
|
+
|
|
909
908
|
[[package]]
|
|
910
909
|
name = "jiff-static"
|
|
911
|
-
version = "0.2.
|
|
910
|
+
version = "0.2.34"
|
|
912
911
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
-
checksum = "
|
|
912
|
+
checksum = "323da076b7a6faf914dc677cb05a4b907742ff7375c8322c9e7f5061e5e0e9de"
|
|
914
913
|
dependencies = [
|
|
914
|
+
"jiff-core",
|
|
915
915
|
"proc-macro2",
|
|
916
916
|
"quote",
|
|
917
|
-
"syn",
|
|
917
|
+
"syn 2.0.119",
|
|
918
918
|
]
|
|
919
919
|
|
|
920
920
|
[[package]]
|
|
@@ -930,9 +930,9 @@ dependencies = [
|
|
|
930
930
|
|
|
931
931
|
[[package]]
|
|
932
932
|
name = "jsonschema"
|
|
933
|
-
version = "0.
|
|
933
|
+
version = "0.47.0"
|
|
934
934
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
-
checksum = "
|
|
935
|
+
checksum = "281c43ff06dcb331e9356d30e38853d559ce3d0a3f693e0b0e102667dec14fb1"
|
|
936
936
|
dependencies = [
|
|
937
937
|
"ahash",
|
|
938
938
|
"bytecount",
|
|
@@ -957,9 +957,9 @@ dependencies = [
|
|
|
957
957
|
|
|
958
958
|
[[package]]
|
|
959
959
|
name = "jsonschema-regex"
|
|
960
|
-
version = "0.
|
|
960
|
+
version = "0.47.0"
|
|
961
961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
962
|
-
checksum = "
|
|
962
|
+
checksum = "ee0b351864e7ffbc5db9273daf7fa1b4d5177b0946713d667ca571b83c0b4045"
|
|
963
963
|
dependencies = [
|
|
964
964
|
"regex-syntax",
|
|
965
965
|
]
|
|
@@ -1014,9 +1014,9 @@ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
|
1014
1014
|
|
|
1015
1015
|
[[package]]
|
|
1016
1016
|
name = "lsp-server"
|
|
1017
|
-
version = "0.
|
|
1017
|
+
version = "0.10.0"
|
|
1018
1018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
-
checksum = "
|
|
1019
|
+
checksum = "3ee25a31f2e571e426eef2896179450cafc7e2f5be00d8a93b1c2d21c0ff7656"
|
|
1020
1020
|
dependencies = [
|
|
1021
1021
|
"crossbeam-channel",
|
|
1022
1022
|
"log",
|
|
@@ -1040,9 +1040,9 @@ dependencies = [
|
|
|
1040
1040
|
|
|
1041
1041
|
[[package]]
|
|
1042
1042
|
name = "memchr"
|
|
1043
|
-
version = "2.8.
|
|
1043
|
+
version = "2.8.3"
|
|
1044
1044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
-
checksum = "
|
|
1045
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
1046
1046
|
|
|
1047
1047
|
[[package]]
|
|
1048
1048
|
name = "memoffset"
|
|
@@ -1091,9 +1091,9 @@ dependencies = [
|
|
|
1091
1091
|
|
|
1092
1092
|
[[package]]
|
|
1093
1093
|
name = "num-bigint"
|
|
1094
|
-
version = "0.4.
|
|
1094
|
+
version = "0.4.8"
|
|
1095
1095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1096
|
-
checksum = "
|
|
1096
|
+
checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
|
|
1097
1097
|
dependencies = [
|
|
1098
1098
|
"num-integer",
|
|
1099
1099
|
"num-traits",
|
|
@@ -1125,11 +1125,10 @@ dependencies = [
|
|
|
1125
1125
|
|
|
1126
1126
|
[[package]]
|
|
1127
1127
|
name = "num-iter"
|
|
1128
|
-
version = "0.1.
|
|
1128
|
+
version = "0.1.46"
|
|
1129
1129
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1130
|
-
checksum = "
|
|
1130
|
+
checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b"
|
|
1131
1131
|
dependencies = [
|
|
1132
|
-
"autocfg",
|
|
1133
1132
|
"num-integer",
|
|
1134
1133
|
"num-traits",
|
|
1135
1134
|
]
|
|
@@ -1190,7 +1189,7 @@ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
|
|
1190
1189
|
|
|
1191
1190
|
[[package]]
|
|
1192
1191
|
name = "panache"
|
|
1193
|
-
version = "
|
|
1192
|
+
version = "3.0.0"
|
|
1194
1193
|
dependencies = [
|
|
1195
1194
|
"annotate-snippets",
|
|
1196
1195
|
"assert_cmd",
|
|
@@ -1234,7 +1233,7 @@ dependencies = [
|
|
|
1234
1233
|
|
|
1235
1234
|
[[package]]
|
|
1236
1235
|
name = "panache-formatter"
|
|
1237
|
-
version = "0.
|
|
1236
|
+
version = "0.20.0"
|
|
1238
1237
|
dependencies = [
|
|
1239
1238
|
"insta",
|
|
1240
1239
|
"log",
|
|
@@ -1252,7 +1251,7 @@ dependencies = [
|
|
|
1252
1251
|
|
|
1253
1252
|
[[package]]
|
|
1254
1253
|
name = "panache-parser"
|
|
1255
|
-
version = "0.
|
|
1254
|
+
version = "0.22.0"
|
|
1256
1255
|
dependencies = [
|
|
1257
1256
|
"entities",
|
|
1258
1257
|
"insta",
|
|
@@ -1337,9 +1336,9 @@ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
|
1337
1336
|
|
|
1338
1337
|
[[package]]
|
|
1339
1338
|
name = "portable-atomic"
|
|
1340
|
-
version = "1.
|
|
1339
|
+
version = "1.14.0"
|
|
1341
1340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1342
|
-
checksum = "
|
|
1341
|
+
checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
|
|
1343
1342
|
|
|
1344
1343
|
[[package]]
|
|
1345
1344
|
name = "portable-atomic-util"
|
|
@@ -1402,9 +1401,9 @@ dependencies = [
|
|
|
1402
1401
|
|
|
1403
1402
|
[[package]]
|
|
1404
1403
|
name = "proc-macro2"
|
|
1405
|
-
version = "1.0.
|
|
1404
|
+
version = "1.0.107"
|
|
1406
1405
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1407
|
-
checksum = "
|
|
1406
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
1408
1407
|
dependencies = [
|
|
1409
1408
|
"unicode-ident",
|
|
1410
1409
|
]
|
|
@@ -1420,9 +1419,9 @@ dependencies = [
|
|
|
1420
1419
|
|
|
1421
1420
|
[[package]]
|
|
1422
1421
|
name = "quote"
|
|
1423
|
-
version = "1.0.
|
|
1422
|
+
version = "1.0.47"
|
|
1424
1423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1425
|
-
checksum = "
|
|
1424
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
1426
1425
|
dependencies = [
|
|
1427
1426
|
"proc-macro2",
|
|
1428
1427
|
]
|
|
@@ -1465,7 +1464,7 @@ version = "0.5.18"
|
|
|
1465
1464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
1465
|
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1467
1466
|
dependencies = [
|
|
1468
|
-
"bitflags 2.13.
|
|
1467
|
+
"bitflags 2.13.1",
|
|
1469
1468
|
]
|
|
1470
1469
|
|
|
1471
1470
|
[[package]]
|
|
@@ -1481,34 +1480,34 @@ dependencies = [
|
|
|
1481
1480
|
|
|
1482
1481
|
[[package]]
|
|
1483
1482
|
name = "ref-cast"
|
|
1484
|
-
version = "1.0.
|
|
1483
|
+
version = "1.0.26"
|
|
1485
1484
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
-
checksum = "
|
|
1485
|
+
checksum = "216e8f773d7923bcba9ceb86a86c93cabb3903a11872fc3f138c49630e50b96d"
|
|
1487
1486
|
dependencies = [
|
|
1488
1487
|
"ref-cast-impl",
|
|
1489
1488
|
]
|
|
1490
1489
|
|
|
1491
1490
|
[[package]]
|
|
1492
1491
|
name = "ref-cast-impl"
|
|
1493
|
-
version = "1.0.
|
|
1492
|
+
version = "1.0.26"
|
|
1494
1493
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
|
-
checksum = "
|
|
1494
|
+
checksum = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c"
|
|
1496
1495
|
dependencies = [
|
|
1497
1496
|
"proc-macro2",
|
|
1498
1497
|
"quote",
|
|
1499
|
-
"syn",
|
|
1498
|
+
"syn 3.0.2",
|
|
1500
1499
|
]
|
|
1501
1500
|
|
|
1502
1501
|
[[package]]
|
|
1503
1502
|
name = "referencing"
|
|
1504
|
-
version = "0.
|
|
1503
|
+
version = "0.47.0"
|
|
1505
1504
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1506
|
-
checksum = "
|
|
1505
|
+
checksum = "348e860aeb0b7bd035778fd11dd9cd5290d32e4aed3b8f2274a00287a9fd362b"
|
|
1507
1506
|
dependencies = [
|
|
1508
1507
|
"ahash",
|
|
1509
1508
|
"fluent-uri 0.4.1",
|
|
1510
1509
|
"getrandom 0.3.4",
|
|
1511
|
-
"hashbrown 0.
|
|
1510
|
+
"hashbrown 0.17.1",
|
|
1512
1511
|
"itoa",
|
|
1513
1512
|
"micromap",
|
|
1514
1513
|
"parking_lot",
|
|
@@ -1518,9 +1517,9 @@ dependencies = [
|
|
|
1518
1517
|
|
|
1519
1518
|
[[package]]
|
|
1520
1519
|
name = "regex"
|
|
1521
|
-
version = "1.
|
|
1520
|
+
version = "1.13.1"
|
|
1522
1521
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1523
|
-
checksum = "
|
|
1522
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
1524
1523
|
dependencies = [
|
|
1525
1524
|
"aho-corasick",
|
|
1526
1525
|
"memchr",
|
|
@@ -1530,9 +1529,9 @@ dependencies = [
|
|
|
1530
1529
|
|
|
1531
1530
|
[[package]]
|
|
1532
1531
|
name = "regex-automata"
|
|
1533
|
-
version = "0.4.
|
|
1532
|
+
version = "0.4.16"
|
|
1534
1533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1535
|
-
checksum = "
|
|
1534
|
+
checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
|
|
1536
1535
|
dependencies = [
|
|
1537
1536
|
"aho-corasick",
|
|
1538
1537
|
"memchr",
|
|
@@ -1581,7 +1580,7 @@ version = "1.1.4"
|
|
|
1581
1580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1582
1581
|
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1583
1582
|
dependencies = [
|
|
1584
|
-
"bitflags 2.13.
|
|
1583
|
+
"bitflags 2.13.1",
|
|
1585
1584
|
"errno",
|
|
1586
1585
|
"libc",
|
|
1587
1586
|
"linux-raw-sys",
|
|
@@ -1590,15 +1589,15 @@ dependencies = [
|
|
|
1590
1589
|
|
|
1591
1590
|
[[package]]
|
|
1592
1591
|
name = "rustversion"
|
|
1593
|
-
version = "1.0.
|
|
1592
|
+
version = "1.0.23"
|
|
1594
1593
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1595
|
-
checksum = "
|
|
1594
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
1596
1595
|
|
|
1597
1596
|
[[package]]
|
|
1598
1597
|
name = "salsa"
|
|
1599
|
-
version = "0.
|
|
1598
|
+
version = "0.28.0"
|
|
1600
1599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1601
|
-
checksum = "
|
|
1600
|
+
checksum = "63ad5919b18c2deaf18921fffd5c84d6e41416d1ef80b6b541d629aa30ce8556"
|
|
1602
1601
|
dependencies = [
|
|
1603
1602
|
"boxcar",
|
|
1604
1603
|
"crossbeam-queue",
|
|
@@ -1622,20 +1621,19 @@ dependencies = [
|
|
|
1622
1621
|
|
|
1623
1622
|
[[package]]
|
|
1624
1623
|
name = "salsa-macro-rules"
|
|
1625
|
-
version = "0.
|
|
1624
|
+
version = "0.28.0"
|
|
1626
1625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1627
|
-
checksum = "
|
|
1626
|
+
checksum = "d50068b1f8b1ac7567a4a70eb6cc15daa9dc997b73a6b5aa3248dd960755cddb"
|
|
1628
1627
|
|
|
1629
1628
|
[[package]]
|
|
1630
1629
|
name = "salsa-macros"
|
|
1631
|
-
version = "0.
|
|
1630
|
+
version = "0.28.0"
|
|
1632
1631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1633
|
-
checksum = "
|
|
1632
|
+
checksum = "8b26cb1c61fc424f7ff36e0606491429f58d1738bb0917cd999d680baae0c52c"
|
|
1634
1633
|
dependencies = [
|
|
1635
1634
|
"proc-macro2",
|
|
1636
1635
|
"quote",
|
|
1637
|
-
"syn",
|
|
1638
|
-
"synstructure",
|
|
1636
|
+
"syn 2.0.119",
|
|
1639
1637
|
]
|
|
1640
1638
|
|
|
1641
1639
|
[[package]]
|
|
@@ -1669,7 +1667,7 @@ dependencies = [
|
|
|
1669
1667
|
"proc-macro2",
|
|
1670
1668
|
"quote",
|
|
1671
1669
|
"serde_derive_internals",
|
|
1672
|
-
"syn",
|
|
1670
|
+
"syn 2.0.119",
|
|
1673
1671
|
]
|
|
1674
1672
|
|
|
1675
1673
|
[[package]]
|
|
@@ -1680,9 +1678,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
1680
1678
|
|
|
1681
1679
|
[[package]]
|
|
1682
1680
|
name = "serde"
|
|
1683
|
-
version = "1.0.
|
|
1681
|
+
version = "1.0.229"
|
|
1684
1682
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1685
|
-
checksum = "
|
|
1683
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
1686
1684
|
dependencies = [
|
|
1687
1685
|
"serde_core",
|
|
1688
1686
|
"serde_derive",
|
|
@@ -1690,22 +1688,22 @@ dependencies = [
|
|
|
1690
1688
|
|
|
1691
1689
|
[[package]]
|
|
1692
1690
|
name = "serde_core"
|
|
1693
|
-
version = "1.0.
|
|
1691
|
+
version = "1.0.229"
|
|
1694
1692
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1695
|
-
checksum = "
|
|
1693
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
1696
1694
|
dependencies = [
|
|
1697
1695
|
"serde_derive",
|
|
1698
1696
|
]
|
|
1699
1697
|
|
|
1700
1698
|
[[package]]
|
|
1701
1699
|
name = "serde_derive"
|
|
1702
|
-
version = "1.0.
|
|
1700
|
+
version = "1.0.229"
|
|
1703
1701
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
-
checksum = "
|
|
1702
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
1705
1703
|
dependencies = [
|
|
1706
1704
|
"proc-macro2",
|
|
1707
1705
|
"quote",
|
|
1708
|
-
"syn",
|
|
1706
|
+
"syn 3.0.2",
|
|
1709
1707
|
]
|
|
1710
1708
|
|
|
1711
1709
|
[[package]]
|
|
@@ -1716,14 +1714,14 @@ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
|
|
|
1716
1714
|
dependencies = [
|
|
1717
1715
|
"proc-macro2",
|
|
1718
1716
|
"quote",
|
|
1719
|
-
"syn",
|
|
1717
|
+
"syn 2.0.119",
|
|
1720
1718
|
]
|
|
1721
1719
|
|
|
1722
1720
|
[[package]]
|
|
1723
1721
|
name = "serde_json"
|
|
1724
|
-
version = "1.0.
|
|
1722
|
+
version = "1.0.151"
|
|
1725
1723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
-
checksum = "
|
|
1724
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
1727
1725
|
dependencies = [
|
|
1728
1726
|
"itoa",
|
|
1729
1727
|
"memchr",
|
|
@@ -1734,13 +1732,13 @@ dependencies = [
|
|
|
1734
1732
|
|
|
1735
1733
|
[[package]]
|
|
1736
1734
|
name = "serde_repr"
|
|
1737
|
-
version = "0.1.
|
|
1735
|
+
version = "0.1.21"
|
|
1738
1736
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1739
|
-
checksum = "
|
|
1737
|
+
checksum = "8d3b1629de253c70a0508c3899572da79ca359fdab27c7920ff00406df418906"
|
|
1740
1738
|
dependencies = [
|
|
1741
1739
|
"proc-macro2",
|
|
1742
1740
|
"quote",
|
|
1743
|
-
"syn",
|
|
1741
|
+
"syn 3.0.2",
|
|
1744
1742
|
]
|
|
1745
1743
|
|
|
1746
1744
|
[[package]]
|
|
@@ -1754,9 +1752,9 @@ dependencies = [
|
|
|
1754
1752
|
|
|
1755
1753
|
[[package]]
|
|
1756
1754
|
name = "simd-adler32"
|
|
1757
|
-
version = "0.3.
|
|
1755
|
+
version = "0.3.10"
|
|
1758
1756
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1759
|
-
checksum = "
|
|
1757
|
+
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
|
|
1760
1758
|
|
|
1761
1759
|
[[package]]
|
|
1762
1760
|
name = "similar"
|
|
@@ -1816,9 +1814,20 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
|
1816
1814
|
|
|
1817
1815
|
[[package]]
|
|
1818
1816
|
name = "syn"
|
|
1819
|
-
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"
|
|
1820
1829
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1821
|
-
checksum = "
|
|
1830
|
+
checksum = "a207d6d6a2b7fc470b80443726053f18a2481b7e1eee970597051596567987a3"
|
|
1822
1831
|
dependencies = [
|
|
1823
1832
|
"proc-macro2",
|
|
1824
1833
|
"quote",
|
|
@@ -1833,7 +1842,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
|
1833
1842
|
dependencies = [
|
|
1834
1843
|
"proc-macro2",
|
|
1835
1844
|
"quote",
|
|
1836
|
-
"syn",
|
|
1845
|
+
"syn 2.0.119",
|
|
1837
1846
|
]
|
|
1838
1847
|
|
|
1839
1848
|
[[package]]
|
|
@@ -1869,22 +1878,22 @@ checksum = "b0f7e269b48f0a7dd0146680fa24b50cc67fc0373f086a5b2f99bd084639b482"
|
|
|
1869
1878
|
|
|
1870
1879
|
[[package]]
|
|
1871
1880
|
name = "thiserror"
|
|
1872
|
-
version = "2.0.
|
|
1881
|
+
version = "2.0.19"
|
|
1873
1882
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1874
|
-
checksum = "
|
|
1883
|
+
checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
|
|
1875
1884
|
dependencies = [
|
|
1876
1885
|
"thiserror-impl",
|
|
1877
1886
|
]
|
|
1878
1887
|
|
|
1879
1888
|
[[package]]
|
|
1880
1889
|
name = "thiserror-impl"
|
|
1881
|
-
version = "2.0.
|
|
1890
|
+
version = "2.0.19"
|
|
1882
1891
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1883
|
-
checksum = "
|
|
1892
|
+
checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
|
|
1884
1893
|
dependencies = [
|
|
1885
1894
|
"proc-macro2",
|
|
1886
1895
|
"quote",
|
|
1887
|
-
"syn",
|
|
1896
|
+
"syn 3.0.2",
|
|
1888
1897
|
]
|
|
1889
1898
|
|
|
1890
1899
|
[[package]]
|
|
@@ -1905,9 +1914,9 @@ dependencies = [
|
|
|
1905
1914
|
|
|
1906
1915
|
[[package]]
|
|
1907
1916
|
name = "toml"
|
|
1908
|
-
version = "1.1.
|
|
1917
|
+
version = "1.1.3+spec-1.1.0"
|
|
1909
1918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1910
|
-
checksum = "
|
|
1919
|
+
checksum = "53c96ecdfa941c8fc4fcaed14f99ada8ebed502eef533015095a07e3301d4c3c"
|
|
1911
1920
|
dependencies = [
|
|
1912
1921
|
"indexmap",
|
|
1913
1922
|
"serde_core",
|
|
@@ -1915,7 +1924,7 @@ dependencies = [
|
|
|
1915
1924
|
"toml_datetime",
|
|
1916
1925
|
"toml_parser",
|
|
1917
1926
|
"toml_writer",
|
|
1918
|
-
"winnow 1.0.
|
|
1927
|
+
"winnow 1.0.4",
|
|
1919
1928
|
]
|
|
1920
1929
|
|
|
1921
1930
|
[[package]]
|
|
@@ -1933,14 +1942,14 @@ version = "1.1.2+spec-1.1.0"
|
|
|
1933
1942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1934
1943
|
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
1935
1944
|
dependencies = [
|
|
1936
|
-
"winnow 1.0.
|
|
1945
|
+
"winnow 1.0.4",
|
|
1937
1946
|
]
|
|
1938
1947
|
|
|
1939
1948
|
[[package]]
|
|
1940
1949
|
name = "toml_writer"
|
|
1941
|
-
version = "1.1.
|
|
1950
|
+
version = "1.1.2+spec-1.1.0"
|
|
1942
1951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1943
|
-
checksum = "
|
|
1952
|
+
checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
|
|
1944
1953
|
|
|
1945
1954
|
[[package]]
|
|
1946
1955
|
name = "tracing"
|
|
@@ -2005,9 +2014,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
2005
2014
|
|
|
2006
2015
|
[[package]]
|
|
2007
2016
|
name = "uuid"
|
|
2008
|
-
version = "1.
|
|
2017
|
+
version = "1.24.0"
|
|
2009
2018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2010
|
-
checksum = "
|
|
2019
|
+
checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
|
|
2011
2020
|
dependencies = [
|
|
2012
2021
|
"getrandom 0.4.3",
|
|
2013
2022
|
"js-sys",
|
|
@@ -2102,7 +2111,7 @@ dependencies = [
|
|
|
2102
2111
|
"bumpalo",
|
|
2103
2112
|
"proc-macro2",
|
|
2104
2113
|
"quote",
|
|
2105
|
-
"syn",
|
|
2114
|
+
"syn 2.0.119",
|
|
2106
2115
|
"wasm-bindgen-shared",
|
|
2107
2116
|
]
|
|
2108
2117
|
|
|
@@ -2117,9 +2126,9 @@ dependencies = [
|
|
|
2117
2126
|
|
|
2118
2127
|
[[package]]
|
|
2119
2128
|
name = "which"
|
|
2120
|
-
version = "8.0.
|
|
2129
|
+
version = "8.0.5"
|
|
2121
2130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2122
|
-
checksum = "
|
|
2131
|
+
checksum = "8f3ef584124b911bcc3875c2f1472e80f24361ceb789bd1c62b3e9a3df9ff43c"
|
|
2123
2132
|
dependencies = [
|
|
2124
2133
|
"libc",
|
|
2125
2134
|
]
|
|
@@ -2155,7 +2164,7 @@ dependencies = [
|
|
|
2155
2164
|
"darling",
|
|
2156
2165
|
"proc-macro2",
|
|
2157
2166
|
"quote",
|
|
2158
|
-
"syn",
|
|
2167
|
+
"syn 2.0.119",
|
|
2159
2168
|
]
|
|
2160
2169
|
|
|
2161
2170
|
[[package]]
|
|
@@ -2184,9 +2193,9 @@ dependencies = [
|
|
|
2184
2193
|
|
|
2185
2194
|
[[package]]
|
|
2186
2195
|
name = "winnow"
|
|
2187
|
-
version = "1.0.
|
|
2196
|
+
version = "1.0.4"
|
|
2188
2197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2189
|
-
checksum = "
|
|
2198
|
+
checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
|
|
2190
2199
|
|
|
2191
2200
|
[[package]]
|
|
2192
2201
|
name = "wit-bindgen"
|
|
@@ -2229,28 +2238,28 @@ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
|
2229
2238
|
dependencies = [
|
|
2230
2239
|
"proc-macro2",
|
|
2231
2240
|
"quote",
|
|
2232
|
-
"syn",
|
|
2241
|
+
"syn 2.0.119",
|
|
2233
2242
|
"synstructure",
|
|
2234
2243
|
]
|
|
2235
2244
|
|
|
2236
2245
|
[[package]]
|
|
2237
2246
|
name = "zerocopy"
|
|
2238
|
-
version = "0.8.
|
|
2247
|
+
version = "0.8.54"
|
|
2239
2248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2240
|
-
checksum = "
|
|
2249
|
+
checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
|
|
2241
2250
|
dependencies = [
|
|
2242
2251
|
"zerocopy-derive",
|
|
2243
2252
|
]
|
|
2244
2253
|
|
|
2245
2254
|
[[package]]
|
|
2246
2255
|
name = "zerocopy-derive"
|
|
2247
|
-
version = "0.8.
|
|
2256
|
+
version = "0.8.54"
|
|
2248
2257
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2249
|
-
checksum = "
|
|
2258
|
+
checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
|
|
2250
2259
|
dependencies = [
|
|
2251
2260
|
"proc-macro2",
|
|
2252
2261
|
"quote",
|
|
2253
|
-
"syn",
|
|
2262
|
+
"syn 2.0.119",
|
|
2254
2263
|
]
|
|
2255
2264
|
|
|
2256
2265
|
[[package]]
|
|
@@ -2270,7 +2279,7 @@ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
|
2270
2279
|
dependencies = [
|
|
2271
2280
|
"proc-macro2",
|
|
2272
2281
|
"quote",
|
|
2273
|
-
"syn",
|
|
2282
|
+
"syn 2.0.119",
|
|
2274
2283
|
"synstructure",
|
|
2275
2284
|
]
|
|
2276
2285
|
|
|
@@ -2304,11 +2313,11 @@ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
|
2304
2313
|
dependencies = [
|
|
2305
2314
|
"proc-macro2",
|
|
2306
2315
|
"quote",
|
|
2307
|
-
"syn",
|
|
2316
|
+
"syn 2.0.119",
|
|
2308
2317
|
]
|
|
2309
2318
|
|
|
2310
2319
|
[[package]]
|
|
2311
2320
|
name = "zmij"
|
|
2312
|
-
version = "1.0.
|
|
2321
|
+
version = "1.0.23"
|
|
2313
2322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2314
|
-
checksum = "
|
|
2323
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|