panache-cli 2.56.0__tar.gz → 2.58.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.56.0 → panache_cli-2.58.0}/Cargo.lock +109 -201
- {panache_cli-2.56.0 → panache_cli-2.58.0}/Cargo.toml +8 -3
- {panache_cli-2.56.0 → panache_cli-2.58.0}/PKG-INFO +1 -1
- {panache_cli-2.56.0 → panache_cli-2.58.0}/build.rs +24 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/CHANGELOG.md +25 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/Cargo.toml +2 -2
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/config.rs +4 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/directives.rs +1 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/core.rs +5 -2
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/indent_utils.rs +97 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/inline.rs +19 -7
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/lists.rs +12 -4
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/math/STYLE.md +26 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/math/operators.rs +41 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/math/render.rs +55 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/tables.rs +364 -601
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/yaml/document.rs +57 -39
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter.rs +1 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/lib.rs +1 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/utils.rs +1 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/CHANGELOG.md +23 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/Cargo.toml +2 -1
- panache_cli-2.58.0/crates/panache-parser/src/grid_layout.rs +235 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/lib.rs +2 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/options.rs +9 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/pandoc_ast.rs +191 -265
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/block_dispatcher.rs +65 -35
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/definition_lists.rs +2 -5
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/html_blocks.rs +40 -3
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/tables.rs +25 -13
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/citations.rs +142 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/core.rs +5 -5
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/inline_ir.rs +2 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/refdef_map.rs +1 -1
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/utils/helpers.rs +125 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/utils/list_item_buffer.rs +2 -2
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/headings.rs +23 -7
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/kind.rs +16 -0
- panache_cli-2.58.0/src/bin/distill_quarto_schema.rs +64 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/cache.rs +8 -1
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/cli.rs +12 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/config/formatter_presets.rs +40 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/config/types.rs +82 -3
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/config.rs +110 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/directives.rs +1 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/diagnostics.rs +36 -6
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/external_linters/eslint.rs +4 -4
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/external_linters/jarl.rs +4 -4
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/external_linters/ruff.rs +1 -4
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/external_linters/shellcheck.rs +4 -4
- panache_cli-2.58.0/src/linter/quarto_schema/distill.rs +123 -0
- panache_cli-2.58.0/src/linter/quarto_schema/interp.rs +864 -0
- panache_cli-2.58.0/src/linter/quarto_schema/model.rs +117 -0
- panache_cli-2.58.0/src/linter/quarto_schema/report.rs +216 -0
- panache_cli-2.58.0/src/linter/quarto_schema/value.rs +341 -0
- panache_cli-2.58.0/src/linter/quarto_schema.rs +85 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/rules/adjacent_footnote_refs.rs +15 -5
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/rules/chunk_label_spaces.rs +11 -1
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/rules/citation_keys.rs +136 -1
- panache_cli-2.58.0/src/linter/rules/consumer_divergence.rs +292 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/rules/crossref_as_link_target.rs +15 -5
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/rules/duplicate_references.rs +11 -1
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/rules/emoji_aliases.rs +11 -1
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/rules/empty_list_item.rs +11 -1
- panache_cli-2.58.0/src/linter/rules/empty_values.rs +238 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/rules/figure_crossref_captions.rs +11 -1
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/rules/footnote_ref_in_footnote_def.rs +11 -1
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/rules/heading_eaten_attrs.rs +11 -1
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/rules/heading_hierarchy.rs +25 -13
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/rules/heading_strip_comments_residue.rs +11 -1
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/rules/html_entities.rs +12 -1
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/rules/link_text_is_url.rs +15 -5
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/rules/math_content.rs +19 -1
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/rules/missing_chunk_labels.rs +11 -1
- panache_cli-2.58.0/src/linter/rules/quarto_schema.rs +233 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/rules/stray_fenced_div_markers.rs +11 -1
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/rules/undefined_anchor.rs +11 -1
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/rules/undefined_references.rs +48 -1
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/rules/unused_definitions.rs +16 -1
- panache_cli-2.58.0/src/linter/rules.rs +239 -0
- panache_cli-2.58.0/src/linter/yaml_resolve.rs +223 -0
- panache_cli-2.58.0/src/linter.rs +126 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/dispatch.rs +360 -101
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/documents.rs +78 -23
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/global_state.rs +249 -48
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/handlers/code_actions.rs +13 -2
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/handlers/completion.rs +3 -19
- panache_cli-2.58.0/src/lsp/handlers/configuration.rs +31 -0
- panache_cli-2.58.0/src/lsp/handlers/diagnostics.rs +725 -0
- panache_cli-2.58.0/src/lsp/handlers/file_operations.rs +94 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/handlers/file_rename.rs +146 -7
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/handlers/file_watcher.rs +27 -11
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/handlers/folding_ranges.rs +1 -1
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/handlers/formatting.rs +49 -1
- panache_cli-2.58.0/src/lsp/handlers/linked_editing_range.rs +196 -0
- panache_cli-2.58.0/src/lsp/handlers/semantic_tokens.rs +254 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/handlers/shortcode_args.rs +25 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/handlers.rs +4 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/testing.rs +316 -4
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/main.rs +157 -11
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/salsa.rs +144 -10
- panache_cli-2.56.0/src/linter/rules.rs +0 -119
- panache_cli-2.56.0/src/linter.rs +0 -159
- panache_cli-2.56.0/src/lsp/handlers/diagnostics.rs +0 -207
- {panache_cli-2.56.0 → panache_cli-2.58.0}/LICENSE +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/README.md +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/README.md +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/blockquotes.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/code_blocks.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/fenced_divs.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/hashpipe.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/headings.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/inline_layout.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/math/linebreak.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/math.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/metadata.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/paragraphs.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/sentence_wrap.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/shortcodes.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/smart.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/utils.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/yaml/STYLE.md +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/yaml/block_map.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/yaml/block_sequence.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/yaml/flow.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/yaml/options.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/yaml/scalar.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/formatter/yaml.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/parser.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/syntax.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-formatter/src/yaml_engine.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/README.md +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/build.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/blockquotes.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/code_blocks.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/container_prefix.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/fenced_divs.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/figures.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/headings.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/horizontal_rules.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/indented_code.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/latex_envs.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/line_blocks.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/lists.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/metadata.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/paragraphs.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/raw_blocks.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/reference_links.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/tests/blanklines.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/tests/blockquotes.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/tests/code_blocks.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/tests/definition_lists.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/tests/headings.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/tests/helpers.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/tests/lists.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/tests/losslessness.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks/tests/metadata_guards.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/blocks.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/core.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/diagnostics.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/bookdown.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/bracketed_spans.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/code_spans.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/emoji.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/escapes.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/inline_executable.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/inline_footnotes.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/inline_html.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/latex.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/links.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/mark.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/math.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/native_spans.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/raw_inline.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/shortcodes.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/sink.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/strikeout.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/subscript.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/superscript.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/tests.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/uri-schemes.csv +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines/wikilinks.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/inlines.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/math.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/utils/attributes.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/utils/chunk_options.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/utils/container_stack.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/utils/continuation.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/utils/inline_emission.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/utils/marker_utils.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/utils/text_buffer.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/utils/tree_copy.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/utils/yaml_regions.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/utils.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/yaml/cooking.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/yaml/events.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/yaml/model.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/yaml/parser.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/yaml/profile.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/yaml/scanner.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/yaml/validator.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser/yaml.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/parser.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/range_utils.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/alerts.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/ast.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/attributes.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/block_quotes.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/blocks.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/chunk_options.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/citations.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/code_blocks.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/crossrefs.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/definitions.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/fenced_divs.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/inlines.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/links.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/lists.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/math.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/raw_tex.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/references.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/shortcodes.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/tables.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/yaml.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax/yaml_ast.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/crates/panache-parser/src/syntax.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/pyproject.toml +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/bib/bibtex.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/bib/csl_json.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/bib/csl_yaml.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/bib/index.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/bib/ris.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/bib.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/config/types/schema_helpers.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/diagnostic_renderer.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/external_formatters_common.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/external_formatters_sync.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/external_tools_common.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/formatter.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/includes.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lib.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/code_block_collector.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/external_linters/clippy.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/external_linters/staticcheck.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/external_linters.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/external_linters_sync.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/index.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/metadata_diagnostics.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/offsets.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/linter/runner.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/config.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/context.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/conversions.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/handlers/document_links.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/handlers/document_symbols.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/handlers/footnote_conversion.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/handlers/goto_definition.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/handlers/heading_link_conversion.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/handlers/hover.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/handlers/link_conversion.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/handlers/list_conversion.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/handlers/prepare_rename.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/handlers/references.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/handlers/rename.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/handlers/workspace_symbols.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/helpers.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/navigation.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/symbols.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/task_pool.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp/uri_ext.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/lsp.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/metadata/bibliography.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/metadata/citations.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/metadata/project.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/metadata/references.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/metadata/yaml.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/metadata.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/parser.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/range_utils.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/syntax.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/utils.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/yaml_engine.rs +0 -0
- {panache_cli-2.56.0 → panache_cli-2.58.0}/src/yaml_regions.rs +0 -0
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 4
|
|
4
4
|
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
5
11
|
[[package]]
|
|
6
12
|
name = "ahash"
|
|
7
13
|
version = "0.8.12"
|
|
@@ -92,12 +98,6 @@ dependencies = [
|
|
|
92
98
|
"windows-sys",
|
|
93
99
|
]
|
|
94
100
|
|
|
95
|
-
[[package]]
|
|
96
|
-
name = "anyhow"
|
|
97
|
-
version = "1.0.102"
|
|
98
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
-
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
100
|
-
|
|
101
101
|
[[package]]
|
|
102
102
|
name = "assert_cmd"
|
|
103
103
|
version = "2.2.2"
|
|
@@ -278,6 +278,15 @@ version = "3.0.1"
|
|
|
278
278
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
279
|
checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
|
|
280
280
|
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "crc32fast"
|
|
283
|
+
version = "1.5.0"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
286
|
+
dependencies = [
|
|
287
|
+
"cfg-if",
|
|
288
|
+
]
|
|
289
|
+
|
|
281
290
|
[[package]]
|
|
282
291
|
name = "crossbeam-channel"
|
|
283
292
|
version = "0.5.15"
|
|
@@ -361,6 +370,38 @@ version = "2.11.0"
|
|
|
361
370
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
371
|
checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
|
|
363
372
|
|
|
373
|
+
[[package]]
|
|
374
|
+
name = "defmt"
|
|
375
|
+
version = "1.1.0"
|
|
376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
+
checksum = "a6e524506490a1953d237cb87b1cfc1e46f88c18f10a22dfe0f507dc6bfc7f7f"
|
|
378
|
+
dependencies = [
|
|
379
|
+
"bitflags 1.3.2",
|
|
380
|
+
"defmt-macros",
|
|
381
|
+
]
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "defmt-macros"
|
|
385
|
+
version = "1.1.0"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "f0a27770e9c8f719a79d8b638281f4d828f77d8fd61e0bd94451b9b85e576a0b"
|
|
388
|
+
dependencies = [
|
|
389
|
+
"defmt-parser",
|
|
390
|
+
"proc-macro-error2",
|
|
391
|
+
"proc-macro2",
|
|
392
|
+
"quote",
|
|
393
|
+
"syn",
|
|
394
|
+
]
|
|
395
|
+
|
|
396
|
+
[[package]]
|
|
397
|
+
name = "defmt-parser"
|
|
398
|
+
version = "1.0.0"
|
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
+
checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
|
|
401
|
+
dependencies = [
|
|
402
|
+
"thiserror",
|
|
403
|
+
]
|
|
404
|
+
|
|
364
405
|
[[package]]
|
|
365
406
|
name = "difflib"
|
|
366
407
|
version = "0.4.0"
|
|
@@ -497,6 +538,16 @@ version = "2.4.1"
|
|
|
497
538
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
539
|
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
499
540
|
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "flate2"
|
|
543
|
+
version = "1.1.9"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"crc32fast",
|
|
548
|
+
"miniz_oxide",
|
|
549
|
+
]
|
|
550
|
+
|
|
500
551
|
[[package]]
|
|
501
552
|
name = "float-cmp"
|
|
502
553
|
version = "0.10.0"
|
|
@@ -526,12 +577,6 @@ dependencies = [
|
|
|
526
577
|
"serde",
|
|
527
578
|
]
|
|
528
579
|
|
|
529
|
-
[[package]]
|
|
530
|
-
name = "foldhash"
|
|
531
|
-
version = "0.1.5"
|
|
532
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
533
|
-
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
534
|
-
|
|
535
580
|
[[package]]
|
|
536
581
|
name = "foldhash"
|
|
537
582
|
version = "0.2.0"
|
|
@@ -599,15 +644,13 @@ dependencies = [
|
|
|
599
644
|
|
|
600
645
|
[[package]]
|
|
601
646
|
name = "getrandom"
|
|
602
|
-
version = "0.4.
|
|
647
|
+
version = "0.4.3"
|
|
603
648
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
-
checksum = "
|
|
649
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
605
650
|
dependencies = [
|
|
606
651
|
"cfg-if",
|
|
607
652
|
"libc",
|
|
608
653
|
"r-efi 6.0.0",
|
|
609
|
-
"wasip2",
|
|
610
|
-
"wasip3",
|
|
611
654
|
]
|
|
612
655
|
|
|
613
656
|
[[package]]
|
|
@@ -629,15 +672,6 @@ version = "0.14.5"
|
|
|
629
672
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
673
|
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
631
674
|
|
|
632
|
-
[[package]]
|
|
633
|
-
name = "hashbrown"
|
|
634
|
-
version = "0.15.5"
|
|
635
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
-
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
637
|
-
dependencies = [
|
|
638
|
-
"foldhash 0.1.5",
|
|
639
|
-
]
|
|
640
|
-
|
|
641
675
|
[[package]]
|
|
642
676
|
name = "hashbrown"
|
|
643
677
|
version = "0.16.1"
|
|
@@ -646,7 +680,7 @@ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
|
646
680
|
dependencies = [
|
|
647
681
|
"allocator-api2",
|
|
648
682
|
"equivalent",
|
|
649
|
-
"foldhash
|
|
683
|
+
"foldhash",
|
|
650
684
|
]
|
|
651
685
|
|
|
652
686
|
[[package]]
|
|
@@ -657,7 +691,7 @@ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
|
657
691
|
dependencies = [
|
|
658
692
|
"allocator-api2",
|
|
659
693
|
"equivalent",
|
|
660
|
-
"foldhash
|
|
694
|
+
"foldhash",
|
|
661
695
|
]
|
|
662
696
|
|
|
663
697
|
[[package]]
|
|
@@ -763,12 +797,6 @@ dependencies = [
|
|
|
763
797
|
"zerovec",
|
|
764
798
|
]
|
|
765
799
|
|
|
766
|
-
[[package]]
|
|
767
|
-
name = "id-arena"
|
|
768
|
-
version = "2.3.0"
|
|
769
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
-
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
771
|
-
|
|
772
800
|
[[package]]
|
|
773
801
|
name = "ident_case"
|
|
774
802
|
version = "1.0.1"
|
|
@@ -820,8 +848,6 @@ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
|
820
848
|
dependencies = [
|
|
821
849
|
"equivalent",
|
|
822
850
|
"hashbrown 0.17.1",
|
|
823
|
-
"serde",
|
|
824
|
-
"serde_core",
|
|
825
851
|
]
|
|
826
852
|
|
|
827
853
|
[[package]]
|
|
@@ -869,10 +895,11 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
|
869
895
|
|
|
870
896
|
[[package]]
|
|
871
897
|
name = "jiff"
|
|
872
|
-
version = "0.2.
|
|
898
|
+
version = "0.2.29"
|
|
873
899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
874
|
-
checksum = "
|
|
900
|
+
checksum = "34f877a98676d2fb664698d74cc6a51ce6c484ce8c770f05d0108ec9090aeb46"
|
|
875
901
|
dependencies = [
|
|
902
|
+
"defmt",
|
|
876
903
|
"jiff-static",
|
|
877
904
|
"log",
|
|
878
905
|
"portable-atomic",
|
|
@@ -882,9 +909,9 @@ dependencies = [
|
|
|
882
909
|
|
|
883
910
|
[[package]]
|
|
884
911
|
name = "jiff-static"
|
|
885
|
-
version = "0.2.
|
|
912
|
+
version = "0.2.29"
|
|
886
913
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
-
checksum = "
|
|
914
|
+
checksum = "0666b5ab5ecaca213fc2a85b8c0083d9004e84ee2d5f9a7e0017aaf50986f25f"
|
|
888
915
|
dependencies = [
|
|
889
916
|
"proc-macro2",
|
|
890
917
|
"quote",
|
|
@@ -935,12 +962,6 @@ version = "1.5.0"
|
|
|
935
962
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
963
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
937
964
|
|
|
938
|
-
[[package]]
|
|
939
|
-
name = "leb128fmt"
|
|
940
|
-
version = "0.1.0"
|
|
941
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
-
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
943
|
-
|
|
944
965
|
[[package]]
|
|
945
966
|
name = "libc"
|
|
946
967
|
version = "0.2.186"
|
|
@@ -979,9 +1000,9 @@ dependencies = [
|
|
|
979
1000
|
|
|
980
1001
|
[[package]]
|
|
981
1002
|
name = "log"
|
|
982
|
-
version = "0.4.
|
|
1003
|
+
version = "0.4.33"
|
|
983
1004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
-
checksum = "
|
|
1005
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
985
1006
|
|
|
986
1007
|
[[package]]
|
|
987
1008
|
name = "lsp-server"
|
|
@@ -1030,6 +1051,16 @@ version = "0.3.0"
|
|
|
1030
1051
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1031
1052
|
checksum = "c2a86d3146ed3995b5913c414f6664344b9617457320782e64f0bb44afd49d74"
|
|
1032
1053
|
|
|
1054
|
+
[[package]]
|
|
1055
|
+
name = "miniz_oxide"
|
|
1056
|
+
version = "0.8.9"
|
|
1057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1058
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1059
|
+
dependencies = [
|
|
1060
|
+
"adler2",
|
|
1061
|
+
"simd-adler32",
|
|
1062
|
+
]
|
|
1063
|
+
|
|
1033
1064
|
[[package]]
|
|
1034
1065
|
name = "normalize-line-endings"
|
|
1035
1066
|
version = "0.3.0"
|
|
@@ -1151,7 +1182,7 @@ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
|
|
1151
1182
|
|
|
1152
1183
|
[[package]]
|
|
1153
1184
|
name = "panache"
|
|
1154
|
-
version = "2.
|
|
1185
|
+
version = "2.58.0"
|
|
1155
1186
|
dependencies = [
|
|
1156
1187
|
"annotate-snippets",
|
|
1157
1188
|
"assert_cmd",
|
|
@@ -1163,6 +1194,7 @@ dependencies = [
|
|
|
1163
1194
|
"dirs",
|
|
1164
1195
|
"emojis",
|
|
1165
1196
|
"env_logger",
|
|
1197
|
+
"flate2",
|
|
1166
1198
|
"globset",
|
|
1167
1199
|
"ignore",
|
|
1168
1200
|
"insta",
|
|
@@ -1194,7 +1226,7 @@ dependencies = [
|
|
|
1194
1226
|
|
|
1195
1227
|
[[package]]
|
|
1196
1228
|
name = "panache-formatter"
|
|
1197
|
-
version = "0.
|
|
1229
|
+
version = "0.16.0"
|
|
1198
1230
|
dependencies = [
|
|
1199
1231
|
"insta",
|
|
1200
1232
|
"log",
|
|
@@ -1212,11 +1244,12 @@ dependencies = [
|
|
|
1212
1244
|
|
|
1213
1245
|
[[package]]
|
|
1214
1246
|
name = "panache-parser"
|
|
1215
|
-
version = "0.
|
|
1247
|
+
version = "0.19.0"
|
|
1216
1248
|
dependencies = [
|
|
1217
1249
|
"entities",
|
|
1218
1250
|
"insta",
|
|
1219
1251
|
"log",
|
|
1252
|
+
"memchr",
|
|
1220
1253
|
"rowan",
|
|
1221
1254
|
"schemars",
|
|
1222
1255
|
"serde",
|
|
@@ -1360,12 +1393,24 @@ dependencies = [
|
|
|
1360
1393
|
]
|
|
1361
1394
|
|
|
1362
1395
|
[[package]]
|
|
1363
|
-
name = "
|
|
1364
|
-
version = "0.
|
|
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"
|
|
1365
1408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1366
|
-
checksum = "
|
|
1409
|
+
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
|
|
1367
1410
|
dependencies = [
|
|
1411
|
+
"proc-macro-error-attr2",
|
|
1368
1412
|
"proc-macro2",
|
|
1413
|
+
"quote",
|
|
1369
1414
|
"syn",
|
|
1370
1415
|
]
|
|
1371
1416
|
|
|
@@ -1389,9 +1434,9 @@ dependencies = [
|
|
|
1389
1434
|
|
|
1390
1435
|
[[package]]
|
|
1391
1436
|
name = "quote"
|
|
1392
|
-
version = "1.0.
|
|
1437
|
+
version = "1.0.46"
|
|
1393
1438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1394
|
-
checksum = "
|
|
1439
|
+
checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
|
|
1395
1440
|
dependencies = [
|
|
1396
1441
|
"proc-macro2",
|
|
1397
1442
|
]
|
|
@@ -1647,12 +1692,6 @@ version = "1.2.0"
|
|
|
1647
1692
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1648
1693
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1649
1694
|
|
|
1650
|
-
[[package]]
|
|
1651
|
-
name = "semver"
|
|
1652
|
-
version = "1.0.28"
|
|
1653
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1654
|
-
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1655
|
-
|
|
1656
1695
|
[[package]]
|
|
1657
1696
|
name = "serde"
|
|
1658
1697
|
version = "1.0.228"
|
|
@@ -1727,6 +1766,12 @@ dependencies = [
|
|
|
1727
1766
|
"serde_core",
|
|
1728
1767
|
]
|
|
1729
1768
|
|
|
1769
|
+
[[package]]
|
|
1770
|
+
name = "simd-adler32"
|
|
1771
|
+
version = "0.3.9"
|
|
1772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1773
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
1774
|
+
|
|
1730
1775
|
[[package]]
|
|
1731
1776
|
name = "similar"
|
|
1732
1777
|
version = "2.7.0"
|
|
@@ -1812,7 +1857,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1812
1857
|
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
1813
1858
|
dependencies = [
|
|
1814
1859
|
"fastrand",
|
|
1815
|
-
"getrandom 0.4.
|
|
1860
|
+
"getrandom 0.4.3",
|
|
1816
1861
|
"once_cell",
|
|
1817
1862
|
"rustix",
|
|
1818
1863
|
"windows-sys",
|
|
@@ -1960,12 +2005,6 @@ version = "0.2.2"
|
|
|
1960
2005
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1961
2006
|
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1962
2007
|
|
|
1963
|
-
[[package]]
|
|
1964
|
-
name = "unicode-xid"
|
|
1965
|
-
version = "0.2.6"
|
|
1966
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1967
|
-
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1968
|
-
|
|
1969
2008
|
[[package]]
|
|
1970
2009
|
name = "utf8_iter"
|
|
1971
2010
|
version = "1.0.4"
|
|
@@ -1984,7 +2023,7 @@ version = "1.23.3"
|
|
|
1984
2023
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1985
2024
|
checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
|
|
1986
2025
|
dependencies = [
|
|
1987
|
-
"getrandom 0.4.
|
|
2026
|
+
"getrandom 0.4.3",
|
|
1988
2027
|
"js-sys",
|
|
1989
2028
|
"wasm-bindgen",
|
|
1990
2029
|
]
|
|
@@ -2042,16 +2081,7 @@ version = "1.0.4+wasi-0.2.12"
|
|
|
2042
2081
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2043
2082
|
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
2044
2083
|
dependencies = [
|
|
2045
|
-
"wit-bindgen
|
|
2046
|
-
]
|
|
2047
|
-
|
|
2048
|
-
[[package]]
|
|
2049
|
-
name = "wasip3"
|
|
2050
|
-
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
2051
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2052
|
-
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
2053
|
-
dependencies = [
|
|
2054
|
-
"wit-bindgen 0.51.0",
|
|
2084
|
+
"wit-bindgen",
|
|
2055
2085
|
]
|
|
2056
2086
|
|
|
2057
2087
|
[[package]]
|
|
@@ -2099,40 +2129,6 @@ dependencies = [
|
|
|
2099
2129
|
"unicode-ident",
|
|
2100
2130
|
]
|
|
2101
2131
|
|
|
2102
|
-
[[package]]
|
|
2103
|
-
name = "wasm-encoder"
|
|
2104
|
-
version = "0.244.0"
|
|
2105
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2106
|
-
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
2107
|
-
dependencies = [
|
|
2108
|
-
"leb128fmt",
|
|
2109
|
-
"wasmparser",
|
|
2110
|
-
]
|
|
2111
|
-
|
|
2112
|
-
[[package]]
|
|
2113
|
-
name = "wasm-metadata"
|
|
2114
|
-
version = "0.244.0"
|
|
2115
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2116
|
-
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
2117
|
-
dependencies = [
|
|
2118
|
-
"anyhow",
|
|
2119
|
-
"indexmap",
|
|
2120
|
-
"wasm-encoder",
|
|
2121
|
-
"wasmparser",
|
|
2122
|
-
]
|
|
2123
|
-
|
|
2124
|
-
[[package]]
|
|
2125
|
-
name = "wasmparser"
|
|
2126
|
-
version = "0.244.0"
|
|
2127
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2128
|
-
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
2129
|
-
dependencies = [
|
|
2130
|
-
"bitflags 2.13.0",
|
|
2131
|
-
"hashbrown 0.15.5",
|
|
2132
|
-
"indexmap",
|
|
2133
|
-
"semver",
|
|
2134
|
-
]
|
|
2135
|
-
|
|
2136
2132
|
[[package]]
|
|
2137
2133
|
name = "which"
|
|
2138
2134
|
version = "8.0.4"
|
|
@@ -2206,100 +2202,12 @@ version = "1.0.3"
|
|
|
2206
2202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2207
2203
|
checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
|
|
2208
2204
|
|
|
2209
|
-
[[package]]
|
|
2210
|
-
name = "wit-bindgen"
|
|
2211
|
-
version = "0.51.0"
|
|
2212
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2213
|
-
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
2214
|
-
dependencies = [
|
|
2215
|
-
"wit-bindgen-rust-macro",
|
|
2216
|
-
]
|
|
2217
|
-
|
|
2218
2205
|
[[package]]
|
|
2219
2206
|
name = "wit-bindgen"
|
|
2220
2207
|
version = "0.57.1"
|
|
2221
2208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2222
2209
|
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
2223
2210
|
|
|
2224
|
-
[[package]]
|
|
2225
|
-
name = "wit-bindgen-core"
|
|
2226
|
-
version = "0.51.0"
|
|
2227
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2228
|
-
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
2229
|
-
dependencies = [
|
|
2230
|
-
"anyhow",
|
|
2231
|
-
"heck",
|
|
2232
|
-
"wit-parser",
|
|
2233
|
-
]
|
|
2234
|
-
|
|
2235
|
-
[[package]]
|
|
2236
|
-
name = "wit-bindgen-rust"
|
|
2237
|
-
version = "0.51.0"
|
|
2238
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2239
|
-
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
2240
|
-
dependencies = [
|
|
2241
|
-
"anyhow",
|
|
2242
|
-
"heck",
|
|
2243
|
-
"indexmap",
|
|
2244
|
-
"prettyplease",
|
|
2245
|
-
"syn",
|
|
2246
|
-
"wasm-metadata",
|
|
2247
|
-
"wit-bindgen-core",
|
|
2248
|
-
"wit-component",
|
|
2249
|
-
]
|
|
2250
|
-
|
|
2251
|
-
[[package]]
|
|
2252
|
-
name = "wit-bindgen-rust-macro"
|
|
2253
|
-
version = "0.51.0"
|
|
2254
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2255
|
-
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
2256
|
-
dependencies = [
|
|
2257
|
-
"anyhow",
|
|
2258
|
-
"prettyplease",
|
|
2259
|
-
"proc-macro2",
|
|
2260
|
-
"quote",
|
|
2261
|
-
"syn",
|
|
2262
|
-
"wit-bindgen-core",
|
|
2263
|
-
"wit-bindgen-rust",
|
|
2264
|
-
]
|
|
2265
|
-
|
|
2266
|
-
[[package]]
|
|
2267
|
-
name = "wit-component"
|
|
2268
|
-
version = "0.244.0"
|
|
2269
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2270
|
-
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
2271
|
-
dependencies = [
|
|
2272
|
-
"anyhow",
|
|
2273
|
-
"bitflags 2.13.0",
|
|
2274
|
-
"indexmap",
|
|
2275
|
-
"log",
|
|
2276
|
-
"serde",
|
|
2277
|
-
"serde_derive",
|
|
2278
|
-
"serde_json",
|
|
2279
|
-
"wasm-encoder",
|
|
2280
|
-
"wasm-metadata",
|
|
2281
|
-
"wasmparser",
|
|
2282
|
-
"wit-parser",
|
|
2283
|
-
]
|
|
2284
|
-
|
|
2285
|
-
[[package]]
|
|
2286
|
-
name = "wit-parser"
|
|
2287
|
-
version = "0.244.0"
|
|
2288
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2289
|
-
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
2290
|
-
dependencies = [
|
|
2291
|
-
"anyhow",
|
|
2292
|
-
"id-arena",
|
|
2293
|
-
"indexmap",
|
|
2294
|
-
"log",
|
|
2295
|
-
"semver",
|
|
2296
|
-
"serde",
|
|
2297
|
-
"serde_derive",
|
|
2298
|
-
"serde_json",
|
|
2299
|
-
"unicode-xid",
|
|
2300
|
-
"wasmparser",
|
|
2301
|
-
]
|
|
2302
|
-
|
|
2303
2211
|
[[package]]
|
|
2304
2212
|
name = "writeable"
|
|
2305
2213
|
version = "0.6.3"
|
|
@@ -7,8 +7,11 @@ authors = ["Johan Larsson <johan@jolars.co>"]
|
|
|
7
7
|
|
|
8
8
|
[package]
|
|
9
9
|
name = "panache"
|
|
10
|
-
version = "2.
|
|
10
|
+
version = "2.58.0"
|
|
11
11
|
edition.workspace = true
|
|
12
|
+
# `distill_quarto_schema` is a dev-only vendoring bin (src/bin/); keep bare
|
|
13
|
+
# `cargo run` resolving to the CLI for tooling like the pre-commit format hook.
|
|
14
|
+
default-run = "panache"
|
|
12
15
|
readme = "README.md"
|
|
13
16
|
description = "An LSP, formatter, and linter for Markdown, Quarto, and R Markdown"
|
|
14
17
|
license.workspace = true
|
|
@@ -41,8 +44,8 @@ path = "src/main.rs"
|
|
|
41
44
|
required-features = ["cli"]
|
|
42
45
|
|
|
43
46
|
[dependencies]
|
|
44
|
-
panache-formatter = { path = "crates/panache-formatter", version = "0.
|
|
45
|
-
panache-parser = { path = "crates/panache-parser", version = "0.
|
|
47
|
+
panache-formatter = { path = "crates/panache-formatter", version = "0.16.0" }
|
|
48
|
+
panache-parser = { path = "crates/panache-parser", version = "0.19.0", features = [
|
|
46
49
|
"serde",
|
|
47
50
|
"schema",
|
|
48
51
|
] }
|
|
@@ -51,6 +54,7 @@ clap = { version = "4.6.1", features = ["derive", "env"], optional = true }
|
|
|
51
54
|
dirs = "6.0.0"
|
|
52
55
|
env_logger = "0.11.10"
|
|
53
56
|
emojis = "0.8.0"
|
|
57
|
+
flate2 = "1.0"
|
|
54
58
|
crossbeam-channel = { version = "0.5.15", optional = true }
|
|
55
59
|
globset = "0.4"
|
|
56
60
|
ignore = { version = "0.4", optional = true }
|
|
@@ -99,6 +103,7 @@ clap = { version = "4.6.1", features = ["derive", "env"] }
|
|
|
99
103
|
clap_complete = "4.6.0"
|
|
100
104
|
clap_mangen = "0.3.0"
|
|
101
105
|
clap-markdown = "0.1.5"
|
|
106
|
+
flate2 = "1.0"
|
|
102
107
|
|
|
103
108
|
[package.metadata.deb]
|
|
104
109
|
maintainer = "Johan Larsson <johan@jolars.co>"
|
|
@@ -456,10 +456,33 @@ fn generate_man_pages() -> Result<()> {
|
|
|
456
456
|
Ok(())
|
|
457
457
|
}
|
|
458
458
|
|
|
459
|
+
/// Gzip-compress the vendored Quarto schema into `OUT_DIR` so the binary (and
|
|
460
|
+
/// the wasm bundle) embeds the ~40 KB compressed blob instead of the ~2 MB
|
|
461
|
+
/// pretty-printed JSON. The reviewable pretty source stays committed; the
|
|
462
|
+
/// linter decompresses it once on first use (see `src/linter/quarto_schema.rs`).
|
|
463
|
+
fn compress_quarto_schema(outdir: &std::ffi::OsString) -> Result<()> {
|
|
464
|
+
use std::io::Write;
|
|
465
|
+
|
|
466
|
+
use flate2::Compression;
|
|
467
|
+
use flate2::write::GzEncoder;
|
|
468
|
+
|
|
469
|
+
let src = PathBuf::from("assets/quarto-schema/schema.json");
|
|
470
|
+
let json = fs::read(&src)?;
|
|
471
|
+
let mut encoder = GzEncoder::new(Vec::new(), Compression::best());
|
|
472
|
+
encoder.write_all(&json)?;
|
|
473
|
+
let compressed = encoder.finish()?;
|
|
474
|
+
fs::write(
|
|
475
|
+
PathBuf::from(outdir).join("quarto-schema.json.gz"),
|
|
476
|
+
compressed,
|
|
477
|
+
)?;
|
|
478
|
+
Ok(())
|
|
479
|
+
}
|
|
480
|
+
|
|
459
481
|
fn main() -> Result<()> {
|
|
460
482
|
// Generate shell completions
|
|
461
483
|
if let Some(outdir) = env::var_os("OUT_DIR") {
|
|
462
484
|
generate_completions(&outdir)?;
|
|
485
|
+
compress_quarto_schema(&outdir)?;
|
|
463
486
|
}
|
|
464
487
|
|
|
465
488
|
// Generate man pages
|
|
@@ -473,6 +496,7 @@ fn main() -> Result<()> {
|
|
|
473
496
|
println!("cargo:rerun-if-changed=src/cli.rs");
|
|
474
497
|
println!("cargo:rerun-if-changed=src/config/formatter_presets.rs");
|
|
475
498
|
println!("cargo:rerun-if-changed=src/linter/external_linters.rs");
|
|
499
|
+
println!("cargo:rerun-if-changed=assets/quarto-schema/schema.json");
|
|
476
500
|
println!("cargo:rerun-if-changed=build.rs");
|
|
477
501
|
|
|
478
502
|
Ok(())
|
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.16.0](https://github.com/jolars/panache/compare/panache-formatter-v0.15.0...panache-formatter-v0.16.0) (2026-06-23)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
- add `crossref-prefixes` for extension crossrefs ([`0b190cc`](https://github.com/jolars/panache/commit/0b190cc1ad00e1ca146c758226a325b0c7a16017))
|
|
7
|
+
- **formatter:** tighten spacing around scripts and groups ([`d0075c3`](https://github.com/jolars/panache/commit/d0075c39ebaa794c0b60e409e78277361b884773))
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
- **formatter:** drop leading blank line in display math ([`6700a54`](https://github.com/jolars/panache/commit/6700a54b489619040c4cea78e79e917105c9a403)), closes [#381](https://github.com/jolars/panache/issues/381), [#382](https://github.com/jolars/panache/issues/382), and [#383](https://github.com/jolars/panache/issues/383)
|
|
11
|
+
|
|
12
|
+
### Dependencies
|
|
13
|
+
- updated crates/panache-parser to v0.19.0
|
|
14
|
+
|
|
15
|
+
## [0.15.0](https://github.com/jolars/panache/compare/panache-formatter-v0.14.0...panache-formatter-v0.15.0) (2026-06-21)
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
- **lsp:** on-type continuation indent for lists ([`3c9bc3a`](https://github.com/jolars/panache/commit/3c9bc3a827ee9dd0aad8b3dc63fc3f3e0263d41b))
|
|
19
|
+
- **parser:** retag comment/PI/verbatim as `HTML_BLOCK_RAW` ([`447d537`](https://github.com/jolars/panache/commit/447d537dcbd6bdff6f55d95cb04b17cd9fd17574))
|
|
20
|
+
- **parser:** tokenize table separator rows in the CST ([`3de91a6`](https://github.com/jolars/panache/commit/3de91a623762282b07ede9d249cf3872a5634a5f))
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
- **formatter:** keep indent on YAML value below its key ([`52d578a`](https://github.com/jolars/panache/commit/52d578a34e5b53b37e94e34a5effd979e2424c03))
|
|
24
|
+
|
|
25
|
+
### Dependencies
|
|
26
|
+
- updated crates/panache-parser to v0.18.0
|
|
27
|
+
|
|
3
28
|
## [0.14.0](https://github.com/jolars/panache/compare/panache-formatter-v0.13.0...panache-formatter-v0.14.0) (2026-06-17)
|
|
4
29
|
|
|
5
30
|
### Features
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "panache-formatter"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.16.0"
|
|
4
4
|
edition.workspace = true
|
|
5
5
|
include = [
|
|
6
6
|
"/src/**/*",
|
|
@@ -18,7 +18,7 @@ keywords = ["quarto", "pandoc", "markdown", "formatter"]
|
|
|
18
18
|
categories = ["text-processing"]
|
|
19
19
|
|
|
20
20
|
[dependencies]
|
|
21
|
-
panache-parser = { path = "../panache-parser", version = "0.
|
|
21
|
+
panache-parser = { path = "../panache-parser", version = "0.19.0" }
|
|
22
22
|
log = { version = "0.4.31", features = ["release_max_level_debug"] }
|
|
23
23
|
rowan = "0.16.1"
|
|
24
24
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
|
@@ -252,6 +252,10 @@ impl Config {
|
|
|
252
252
|
dialect: self.dialect(),
|
|
253
253
|
extensions: self.parser_extensions.clone(),
|
|
254
254
|
pandoc_compat: self.parser,
|
|
255
|
+
// The formatter re-parses only for internal checks (idempotency,
|
|
256
|
+
// code-block handling) where citation-vs-crossref classification
|
|
257
|
+
// doesn't affect output, so the built-in prefix set suffices here.
|
|
258
|
+
crossref_prefixes: Vec::new(),
|
|
255
259
|
refdef_labels: None,
|
|
256
260
|
}
|
|
257
261
|
}
|