panache-cli 2.57.0__tar.gz → 2.59.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.57.0 → panache_cli-2.59.0}/Cargo.lock +60 -18
- {panache_cli-2.57.0 → panache_cli-2.59.0}/Cargo.toml +12 -3
- {panache_cli-2.57.0 → panache_cli-2.59.0}/PKG-INFO +2 -3
- {panache_cli-2.57.0 → panache_cli-2.59.0}/README.md +1 -2
- panache_cli-2.59.0/assets/quarto-schema/schema.json +56040 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/build.rs +24 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/CHANGELOG.md +28 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/Cargo.toml +2 -2
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/config.rs +4 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/inline.rs +19 -7
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/math/STYLE.md +26 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/math/operators.rs +41 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/math/render.rs +55 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/tables.rs +184 -294
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/yaml/STYLE.md +56 -17
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/yaml/document.rs +110 -25
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/yaml.rs +14 -6
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/CHANGELOG.md +16 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/Cargo.toml +1 -1
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/options.rs +9 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/pandoc_ast.rs +7 -3
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/definition_lists.rs +2 -5
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/tables.rs +20 -8
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/citations.rs +50 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/core.rs +37 -5
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/inline_ir.rs +2 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/links.rs +15 -18
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/yaml_ast.rs +51 -1
- panache_cli-2.59.0/src/bib/preview.rs +192 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/bib.rs +2 -0
- panache_cli-2.59.0/src/bin/distill_quarto_schema.rs +64 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/cache.rs +8 -1
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/cli.rs +12 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/config/formatter_presets.rs +40 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/config/types.rs +82 -3
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/config.rs +234 -17
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/diagnostics.rs +35 -5
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/external_linters/eslint.rs +4 -4
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/external_linters/jarl.rs +4 -4
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/external_linters/ruff.rs +1 -4
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/external_linters/shellcheck.rs +4 -4
- panache_cli-2.59.0/src/linter/quarto_schema/distill.rs +123 -0
- panache_cli-2.59.0/src/linter/quarto_schema/interp.rs +884 -0
- panache_cli-2.59.0/src/linter/quarto_schema/model.rs +117 -0
- panache_cli-2.59.0/src/linter/quarto_schema/report.rs +303 -0
- panache_cli-2.59.0/src/linter/quarto_schema/value.rs +341 -0
- panache_cli-2.59.0/src/linter/quarto_schema.rs +85 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/rules/adjacent_footnote_refs.rs +4 -4
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/rules/citation_keys.rs +144 -3
- panache_cli-2.59.0/src/linter/rules/consumer_divergence.rs +292 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/rules/crossref_as_link_target.rs +4 -4
- panache_cli-2.59.0/src/linter/rules/empty_values.rs +238 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/rules/heading_hierarchy.rs +6 -12
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/rules/link_text_is_url.rs +18 -4
- panache_cli-2.59.0/src/linter/rules/quarto_schema.rs +358 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/rules/undefined_references.rs +32 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/rules.rs +6 -0
- panache_cli-2.59.0/src/linter/yaml_resolve.rs +223 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter.rs +8 -1
- panache_cli-2.59.0/src/lsp/config.rs +111 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/dispatch.rs +68 -16
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/documents.rs +27 -3
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/global_state.rs +53 -13
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers/code_actions.rs +13 -2
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers/completion.rs +66 -0
- panache_cli-2.59.0/src/lsp/handlers/configuration.rs +31 -0
- panache_cli-2.59.0/src/lsp/handlers/diagnostics.rs +798 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers/file_watcher.rs +14 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers/formatting.rs +22 -2
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers/hover.rs +1 -103
- panache_cli-2.59.0/src/lsp/handlers/linked_editing_range.rs +196 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers.rs +2 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/testing.rs +127 -3
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/main.rs +168 -11
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/metadata/project.rs +46 -13
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/salsa.rs +203 -0
- panache_cli-2.57.0/src/lsp/config.rs +0 -74
- panache_cli-2.57.0/src/lsp/handlers/diagnostics.rs +0 -400
- {panache_cli-2.57.0 → panache_cli-2.59.0}/LICENSE +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/README.md +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/directives.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/blockquotes.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/code_blocks.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/core.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/fenced_divs.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/hashpipe.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/headings.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/indent_utils.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/inline_layout.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/lists.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/math/linebreak.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/math.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/metadata.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/paragraphs.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/sentence_wrap.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/shortcodes.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/smart.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/utils.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/yaml/block_map.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/yaml/block_sequence.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/yaml/flow.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/yaml/options.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter/yaml/scalar.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/formatter.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/lib.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/parser.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/syntax.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/utils.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-formatter/src/yaml_engine.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/README.md +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/build.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/grid_layout.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/lib.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/block_dispatcher.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/blockquotes.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/code_blocks.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/container_prefix.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/fenced_divs.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/figures.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/headings.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/horizontal_rules.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/html_blocks.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/indented_code.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/latex_envs.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/line_blocks.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/lists.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/metadata.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/paragraphs.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/raw_blocks.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/reference_links.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/tests/blanklines.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/tests/blockquotes.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/tests/code_blocks.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/tests/definition_lists.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/tests/headings.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/tests/helpers.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/tests/lists.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/tests/losslessness.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks/tests/metadata_guards.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/blocks.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/core.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/diagnostics.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/bookdown.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/bracketed_spans.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/code_spans.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/emoji.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/escapes.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/inline_executable.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/inline_footnotes.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/inline_html.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/latex.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/mark.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/math.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/native_spans.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/raw_inline.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/refdef_map.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/shortcodes.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/sink.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/strikeout.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/subscript.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/superscript.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/tests.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/uri-schemes.csv +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines/wikilinks.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/inlines.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/math.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/utils/attributes.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/utils/chunk_options.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/utils/container_stack.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/utils/continuation.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/utils/helpers.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/utils/inline_emission.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/utils/list_item_buffer.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/utils/marker_utils.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/utils/text_buffer.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/utils/tree_copy.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/utils/yaml_regions.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/utils.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/yaml/cooking.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/yaml/events.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/yaml/model.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/yaml/parser.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/yaml/profile.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/yaml/scanner.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/yaml/validator.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser/yaml.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/parser.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/range_utils.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/alerts.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/ast.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/attributes.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/block_quotes.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/blocks.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/chunk_options.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/citations.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/code_blocks.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/crossrefs.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/definitions.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/fenced_divs.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/headings.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/inlines.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/kind.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/links.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/lists.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/math.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/raw_tex.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/references.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/shortcodes.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/tables.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax/yaml.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/crates/panache-parser/src/syntax.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/pyproject.toml +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/bib/bibtex.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/bib/csl_json.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/bib/csl_yaml.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/bib/index.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/bib/ris.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/config/types/schema_helpers.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/diagnostic_renderer.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/directives.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/external_formatters_common.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/external_formatters_sync.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/external_tools_common.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/formatter.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/includes.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lib.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/code_block_collector.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/external_linters/clippy.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/external_linters/staticcheck.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/external_linters.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/external_linters_sync.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/index.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/metadata_diagnostics.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/offsets.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/rules/chunk_label_spaces.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/rules/duplicate_references.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/rules/emoji_aliases.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/rules/empty_list_item.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/rules/figure_crossref_captions.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/rules/footnote_ref_in_footnote_def.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/rules/heading_eaten_attrs.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/rules/heading_strip_comments_residue.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/rules/html_entities.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/rules/math_content.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/rules/missing_chunk_labels.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/rules/stray_fenced_div_markers.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/rules/undefined_anchor.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/rules/unused_definitions.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/linter/runner.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/context.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/conversions.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers/document_links.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers/document_symbols.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers/file_operations.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers/file_rename.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers/folding_ranges.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers/footnote_conversion.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers/goto_definition.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers/heading_link_conversion.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers/link_conversion.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers/list_conversion.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers/prepare_rename.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers/references.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers/rename.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers/semantic_tokens.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers/shortcode_args.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/handlers/workspace_symbols.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/helpers.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/navigation.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/symbols.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/task_pool.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp/uri_ext.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/lsp.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/metadata/bibliography.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/metadata/citations.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/metadata/references.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/metadata/yaml.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/metadata.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/parser.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/range_utils.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/syntax.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/utils.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.0}/src/yaml_engine.rs +0 -0
- {panache_cli-2.57.0 → panache_cli-2.59.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"
|
|
@@ -272,6 +278,15 @@ version = "3.0.1"
|
|
|
272
278
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
279
|
checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
|
|
274
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
|
+
|
|
275
290
|
[[package]]
|
|
276
291
|
name = "crossbeam-channel"
|
|
277
292
|
version = "0.5.15"
|
|
@@ -523,6 +538,16 @@ version = "2.4.1"
|
|
|
523
538
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
524
539
|
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
525
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
|
+
|
|
526
551
|
[[package]]
|
|
527
552
|
name = "float-cmp"
|
|
528
553
|
version = "0.10.0"
|
|
@@ -671,11 +696,11 @@ dependencies = [
|
|
|
671
696
|
|
|
672
697
|
[[package]]
|
|
673
698
|
name = "hashlink"
|
|
674
|
-
version = "0.
|
|
699
|
+
version = "0.12.0"
|
|
675
700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
676
|
-
checksum = "
|
|
701
|
+
checksum = "a5081f264ed7adee96ea4b4778b6bb9da0a7228b084587aa3bd3ff05da7c5a3b"
|
|
677
702
|
dependencies = [
|
|
678
|
-
"hashbrown 0.
|
|
703
|
+
"hashbrown 0.17.1",
|
|
679
704
|
]
|
|
680
705
|
|
|
681
706
|
[[package]]
|
|
@@ -906,9 +931,9 @@ dependencies = [
|
|
|
906
931
|
|
|
907
932
|
[[package]]
|
|
908
933
|
name = "jsonschema"
|
|
909
|
-
version = "0.46.
|
|
934
|
+
version = "0.46.6"
|
|
910
935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
-
checksum = "
|
|
936
|
+
checksum = "8374249b1bdce1c1773a09fa294347e19e4bfeb86d845c2d8ebaf8a8dbf11233"
|
|
912
937
|
dependencies = [
|
|
913
938
|
"ahash",
|
|
914
939
|
"bytecount",
|
|
@@ -1026,6 +1051,16 @@ version = "0.3.0"
|
|
|
1026
1051
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
1052
|
checksum = "c2a86d3146ed3995b5913c414f6664344b9617457320782e64f0bb44afd49d74"
|
|
1028
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
|
+
|
|
1029
1064
|
[[package]]
|
|
1030
1065
|
name = "normalize-line-endings"
|
|
1031
1066
|
version = "0.3.0"
|
|
@@ -1147,7 +1182,7 @@ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
|
|
1147
1182
|
|
|
1148
1183
|
[[package]]
|
|
1149
1184
|
name = "panache"
|
|
1150
|
-
version = "2.
|
|
1185
|
+
version = "2.59.0"
|
|
1151
1186
|
dependencies = [
|
|
1152
1187
|
"annotate-snippets",
|
|
1153
1188
|
"assert_cmd",
|
|
@@ -1159,6 +1194,7 @@ dependencies = [
|
|
|
1159
1194
|
"dirs",
|
|
1160
1195
|
"emojis",
|
|
1161
1196
|
"env_logger",
|
|
1197
|
+
"flate2",
|
|
1162
1198
|
"globset",
|
|
1163
1199
|
"ignore",
|
|
1164
1200
|
"insta",
|
|
@@ -1190,7 +1226,7 @@ dependencies = [
|
|
|
1190
1226
|
|
|
1191
1227
|
[[package]]
|
|
1192
1228
|
name = "panache-formatter"
|
|
1193
|
-
version = "0.
|
|
1229
|
+
version = "0.17.0"
|
|
1194
1230
|
dependencies = [
|
|
1195
1231
|
"insta",
|
|
1196
1232
|
"log",
|
|
@@ -1208,7 +1244,7 @@ dependencies = [
|
|
|
1208
1244
|
|
|
1209
1245
|
[[package]]
|
|
1210
1246
|
name = "panache-parser"
|
|
1211
|
-
version = "0.
|
|
1247
|
+
version = "0.19.1"
|
|
1212
1248
|
dependencies = [
|
|
1213
1249
|
"entities",
|
|
1214
1250
|
"insta",
|
|
@@ -1398,9 +1434,9 @@ dependencies = [
|
|
|
1398
1434
|
|
|
1399
1435
|
[[package]]
|
|
1400
1436
|
name = "quote"
|
|
1401
|
-
version = "1.0.
|
|
1437
|
+
version = "1.0.46"
|
|
1402
1438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1403
|
-
checksum = "
|
|
1439
|
+
checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
|
|
1404
1440
|
dependencies = [
|
|
1405
1441
|
"proc-macro2",
|
|
1406
1442
|
]
|
|
@@ -1479,9 +1515,9 @@ dependencies = [
|
|
|
1479
1515
|
|
|
1480
1516
|
[[package]]
|
|
1481
1517
|
name = "referencing"
|
|
1482
|
-
version = "0.46.
|
|
1518
|
+
version = "0.46.6"
|
|
1483
1519
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1484
|
-
checksum = "
|
|
1520
|
+
checksum = "65a910f9d63351f9c9d7dc3053d02b214ea3a005917140c70087d7b59cbc5bb1"
|
|
1485
1521
|
dependencies = [
|
|
1486
1522
|
"ahash",
|
|
1487
1523
|
"fluent-uri 0.4.1",
|
|
@@ -1574,9 +1610,9 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
|
1574
1610
|
|
|
1575
1611
|
[[package]]
|
|
1576
1612
|
name = "salsa"
|
|
1577
|
-
version = "0.27.
|
|
1613
|
+
version = "0.27.1"
|
|
1578
1614
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1579
|
-
checksum = "
|
|
1615
|
+
checksum = "0b903173b7867d2b5837bad8fe38cb08928b6ec11a27641ff0d9c3f97d2d3860"
|
|
1580
1616
|
dependencies = [
|
|
1581
1617
|
"boxcar",
|
|
1582
1618
|
"crossbeam-queue",
|
|
@@ -1600,15 +1636,15 @@ dependencies = [
|
|
|
1600
1636
|
|
|
1601
1637
|
[[package]]
|
|
1602
1638
|
name = "salsa-macro-rules"
|
|
1603
|
-
version = "0.27.
|
|
1639
|
+
version = "0.27.1"
|
|
1604
1640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1605
|
-
checksum = "
|
|
1641
|
+
checksum = "536f8ea9f7cbcf2e58872bae5a78c95839021facafdab8462324337f89f6d1eb"
|
|
1606
1642
|
|
|
1607
1643
|
[[package]]
|
|
1608
1644
|
name = "salsa-macros"
|
|
1609
|
-
version = "0.27.
|
|
1645
|
+
version = "0.27.1"
|
|
1610
1646
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1611
|
-
checksum = "
|
|
1647
|
+
checksum = "5c49f4d53ec8fa201e74a27dd9eb8320146b0e45ad2b11ae503437109a502965"
|
|
1612
1648
|
dependencies = [
|
|
1613
1649
|
"proc-macro2",
|
|
1614
1650
|
"quote",
|
|
@@ -1730,6 +1766,12 @@ dependencies = [
|
|
|
1730
1766
|
"serde_core",
|
|
1731
1767
|
]
|
|
1732
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
|
+
|
|
1733
1775
|
[[package]]
|
|
1734
1776
|
name = "similar"
|
|
1735
1777
|
version = "2.7.0"
|
|
@@ -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.59.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
|
|
@@ -19,6 +22,10 @@ include = [
|
|
|
19
22
|
"/build.rs",
|
|
20
23
|
"/README.md",
|
|
21
24
|
"/LICENSE",
|
|
25
|
+
# Read by build.rs (`compress_quarto_schema`) and embedded via
|
|
26
|
+
# `include_bytes!`; must be packaged or `cargo install` fails in the
|
|
27
|
+
# build script with `NotFound`.
|
|
28
|
+
"/assets/quarto-schema/schema.json",
|
|
22
29
|
]
|
|
23
30
|
keywords = ["quarto", "pandoc", "markdown", "formatter", "language-server"]
|
|
24
31
|
categories = [
|
|
@@ -41,8 +48,8 @@ path = "src/main.rs"
|
|
|
41
48
|
required-features = ["cli"]
|
|
42
49
|
|
|
43
50
|
[dependencies]
|
|
44
|
-
panache-formatter = { path = "crates/panache-formatter", version = "0.
|
|
45
|
-
panache-parser = { path = "crates/panache-parser", version = "0.
|
|
51
|
+
panache-formatter = { path = "crates/panache-formatter", version = "0.17.0" }
|
|
52
|
+
panache-parser = { path = "crates/panache-parser", version = "0.19.1", features = [
|
|
46
53
|
"serde",
|
|
47
54
|
"schema",
|
|
48
55
|
] }
|
|
@@ -51,6 +58,7 @@ clap = { version = "4.6.1", features = ["derive", "env"], optional = true }
|
|
|
51
58
|
dirs = "6.0.0"
|
|
52
59
|
env_logger = "0.11.10"
|
|
53
60
|
emojis = "0.8.0"
|
|
61
|
+
flate2 = "1.0"
|
|
54
62
|
crossbeam-channel = { version = "0.5.15", optional = true }
|
|
55
63
|
globset = "0.4"
|
|
56
64
|
ignore = { version = "0.4", optional = true }
|
|
@@ -99,6 +107,7 @@ clap = { version = "4.6.1", features = ["derive", "env"] }
|
|
|
99
107
|
clap_complete = "4.6.0"
|
|
100
108
|
clap_mangen = "0.3.0"
|
|
101
109
|
clap-markdown = "0.1.5"
|
|
110
|
+
flate2 = "1.0"
|
|
102
111
|
|
|
103
112
|
[package.metadata.deb]
|
|
104
113
|
maintainer = "Johan Larsson <johan@jolars.co>"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: panache-cli
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.59.0
|
|
4
4
|
Classifier: Development Status :: 5 - Production/Stable
|
|
5
5
|
Classifier: Environment :: Console
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -35,8 +35,7 @@ VSX](https://img.shields.io/open-vsx/v/jolars/panache?logo=vsix)](https://open-v
|
|
|
35
35
|
Code](https://vsmarketplacebadges.dev/version-short/jolars.panache.svg?logo=vsix)](https://marketplace.visualstudio.com/items?itemName=jolars.panache)
|
|
36
36
|
[](https://badge.fury.io/py/panache-cli)
|
|
38
|
-
[](https://badge.fury.io/js/@panache-cli%2Fpanache)
|
|
38
|
+
[](https://badge.fury.io/js/@panache-cli%2Fpanache)
|
|
40
39
|
[](https://codecov.io/gh/jolars/panache)
|
|
41
40
|
|
|
42
41
|
A language server, formatter, and linter for Markdown, Quarto, and R Markdown,
|
|
@@ -9,8 +9,7 @@ VSX](https://img.shields.io/open-vsx/v/jolars/panache?logo=vsix)](https://open-v
|
|
|
9
9
|
Code](https://vsmarketplacebadges.dev/version-short/jolars.panache.svg?logo=vsix)](https://marketplace.visualstudio.com/items?itemName=jolars.panache)
|
|
10
10
|
[](https://badge.fury.io/py/panache-cli)
|
|
12
|
-
[](https://badge.fury.io/js/@panache-cli%2Fpanache)
|
|
12
|
+
[](https://badge.fury.io/js/@panache-cli%2Fpanache)
|
|
14
13
|
[](https://codecov.io/gh/jolars/panache)
|
|
15
14
|
|
|
16
15
|
A language server, formatter, and linter for Markdown, Quarto, and R Markdown,
|