panache-cli 3.0.2__tar.gz → 3.2.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-3.0.2 → panache_cli-3.2.0}/Cargo.lock +44 -56
- {panache_cli-3.0.2 → panache_cli-3.2.0}/Cargo.toml +4 -4
- {panache_cli-3.0.2 → panache_cli-3.2.0}/PKG-INFO +34 -109
- {panache_cli-3.0.2 → panache_cli-3.2.0}/README.md +33 -108
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/CHANGELOG.md +19 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/Cargo.toml +3 -3
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/core.rs +62 -2
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/inline.rs +47 -5
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/lists.rs +20 -6
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/CHANGELOG.md +29 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/Cargo.toml +1 -1
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/pandoc_ast.rs +34 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/block_dispatcher.rs +82 -79
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/definition_lists.rs +20 -2
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/fenced_divs.rs +7 -0
- panache_cli-3.2.0/crates/panache-parser/src/parser/blocks/figures.rs +39 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/tests/blockquotes.rs +14 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/tests/definition_lists.rs +61 -0
- panache_cli-3.2.0/crates/panache-parser/src/parser/blocks/tests/figures.rs +169 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks.rs +2 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/core.rs +224 -8
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/citations.rs +169 -21
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/core.rs +3 -4
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/inline_footnotes.rs +52 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/inline_ir.rs +163 -1
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/container_stack.rs +5 -1
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/continuation.rs +23 -1
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/list_item_buffer.rs +78 -10
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/yaml/model.rs +1 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/yaml/validator.rs +225 -3
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser.rs +54 -50
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/definitions.rs +4 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/inlines.rs +1 -2
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/references.rs +5 -8
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/includes.rs +73 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lib.rs +1 -0
- panache_cli-3.2.0/src/linter/external_linters/jolars.rs +470 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/external_linters.rs +44 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/external_linters_sync.rs +48 -0
- panache_cli-3.2.0/src/linter/project_index.rs +334 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/citation_keys.rs +1 -3
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/duplicate_references.rs +17 -17
- panache_cli-3.2.0/src/linter/rules/duplicate_yaml_anchor.rs +116 -0
- panache_cli-3.2.0/src/linter/rules/footnote_after_image.rs +336 -0
- panache_cli-3.2.0/src/linter/rules/footnote_swallowed_by_bracket.rs +137 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/heading_hierarchy.rs +2 -12
- panache_cli-3.2.0/src/linter/rules/swallowed_list_marker.rs +623 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/undefined_anchor.rs +21 -86
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/undefined_references.rs +65 -112
- panache_cli-3.2.0/src/linter/rules/unspaced_citation.rs +219 -0
- panache_cli-3.2.0/src/linter/rules/unsupported_metadata_key.rs +283 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/unused_definitions.rs +22 -171
- panache_cli-3.2.0/src/linter/rules/unused_yaml_anchor.rs +103 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules.rs +89 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/runner.rs +18 -0
- panache_cli-3.2.0/src/linter/yaml_anchors.rs +72 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter.rs +26 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/context.rs +7 -1
- panache_cli-3.2.0/src/lsp/conversions.rs +283 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/dispatch.rs +18 -2
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/documents.rs +25 -9
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/global_state.rs +83 -8
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/code_actions.rs +14 -11
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/completion.rs +13 -5
- panache_cli-3.2.0/src/lsp/handlers/configuration.rs +69 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/diagnostics.rs +12 -7
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/document_highlight.rs +4 -4
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/document_links.rs +10 -9
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/document_symbols.rs +37 -33
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/file_rename.rs +4 -3
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/file_watcher.rs +1 -1
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/folding_ranges.rs +37 -35
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/footnote_conversion.rs +11 -8
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/formatting.rs +11 -8
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/goto_definition.rs +4 -4
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/heading_link_conversion.rs +3 -2
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/hover.rs +1 -1
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/link_conversion.rs +11 -8
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/linked_editing_range.rs +3 -3
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/list_conversion.rs +27 -18
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/prepare_rename.rs +3 -3
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/references.rs +4 -3
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/rename.rs +10 -7
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/semantic_tokens.rs +11 -9
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/workspace_symbols.rs +8 -6
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/helpers.rs +3 -2
- panache_cli-3.2.0/src/lsp/line_index.rs +341 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/navigation.rs +3 -2
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/testing.rs +37 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp.rs +5 -3
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/main.rs +517 -143
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/metadata/project.rs +19 -9
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/metadata.rs +22 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/salsa.rs +674 -127
- panache_cli-3.2.0/src/vfs.rs +242 -0
- panache_cli-3.0.2/crates/panache-parser/src/parser/blocks/figures.rs +0 -36
- panache_cli-3.0.2/src/lsp/conversions.rs +0 -667
- panache_cli-3.0.2/src/lsp/handlers/configuration.rs +0 -31
- {panache_cli-3.0.2 → panache_cli-3.2.0}/LICENSE +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/assets/quarto-schema/schema.json +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/build.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/README.md +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/config.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/directives.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/blockquotes.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/code_blocks.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/fenced_divs.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/hashpipe.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/headings.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/indent_utils.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/inline_layout.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/math/STYLE.md +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/math/linebreak.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/math/operators.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/math/render.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/math.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/metadata.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/paragraphs.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/sentence_wrap.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/shortcodes.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/smart.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/tables.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/utils.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/yaml/STYLE.md +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/yaml/block_map.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/yaml/block_sequence.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/yaml/document.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/yaml/flow.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/yaml/options.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/yaml/scalar.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/yaml.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/lib.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/parser.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/syntax.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/utils.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/yaml_engine.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/README.md +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/build.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/grid_layout.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/lib.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/options.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/admonitions.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/blockquotes.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/code_blocks.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/container_prefix.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/headings.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/horizontal_rules.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/html_blocks.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/indented_code.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/latex_envs.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/line_blocks.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/lists.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/metadata.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/myst_directives.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/myst_targets.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/paragraphs.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/raw_blocks.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/reference_links.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/tables.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/tests/blanklines.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/tests/code_blocks.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/tests/headings.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/tests/helpers.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/tests/lists.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/tests/losslessness.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/tests/metadata_guards.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/diagnostics.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/bookdown.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/bracketed_spans.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/code_spans.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/emoji.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/escapes.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/inline_executable.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/inline_html.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/latex.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/links.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/mark.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/math.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/myst_roles.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/myst_substitutions.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/native_spans.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/raw_inline.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/refdef_map.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/shortcodes.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/sink.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/strikeout.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/subscript.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/superscript.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/svelte.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/tests.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/uri-schemes.csv +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/wikilinks.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/math.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/attributes.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/chunk_options.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/helpers.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/inline_emission.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/marker_utils.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/text_buffer.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/tree_copy.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/yaml_regions.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/yaml/cooking.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/yaml/events.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/yaml/parser.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/yaml/profile.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/yaml/scanner.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/yaml.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/range_utils.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/alerts.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/ast.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/attributes.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/block_quotes.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/blocks.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/chunk_options.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/citations.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/code_blocks.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/crossrefs.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/fenced_divs.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/headings.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/kind.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/links.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/lists.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/math.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/myst.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/raw_tex.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/shortcodes.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/tables.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/yaml.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/yaml_ast.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/pyproject.toml +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/bib/bibtex.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/bib/csl_json.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/bib/csl_yaml.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/bib/index.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/bib/preview.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/bib/ris.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/bib.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/bin/distill_quarto_schema.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/cache.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/cli.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/config/formatter_presets.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/config/types/schema_helpers.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/config/types.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/config.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/diagnostic_renderer.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/directives.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/external_formatters_common.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/external_formatters_sync.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/external_tools_common.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/formatter.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/code_block_collector.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/diagnostics.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/external_linters/clippy.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/external_linters/eslint.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/external_linters/jarl.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/external_linters/ruff.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/external_linters/shellcheck.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/external_linters/staticcheck.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/fuzzy.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/index.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/metadata_diagnostics.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/offsets.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/quarto_schema/distill.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/quarto_schema/interp.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/quarto_schema/model.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/quarto_schema/report.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/quarto_schema/value.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/quarto_schema.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/adjacent_footnote_refs.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/chunk_label_spaces.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/citation_nonbreaking_space.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/consumer_divergence.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/crossref_as_link_target.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/emoji_aliases.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/empty_list_item.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/empty_values.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/figure_crossref_captions.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/footnote_ref_in_footnote_def.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/heading_eaten_attrs.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/heading_strip_comments_residue.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/html_entities.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/link_text_is_url.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/math_content.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/missing_chunk_labels.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/quarto_schema.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/stray_fenced_div_markers.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/yaml_resolve.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/config.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/file_operations.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/shortcode_args.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/workspace_folders.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/symbols.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/task_pool.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/uri_ext.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/metadata/bibliography.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/metadata/citations.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/metadata/references.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/metadata/yaml.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/parser.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/range_utils.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/syntax.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/utils.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/yaml_engine.rs +0 -0
- {panache_cli-3.0.2 → panache_cli-3.2.0}/src/yaml_regions.rs +0 -0
|
@@ -24,9 +24,9 @@ dependencies = [
|
|
|
24
24
|
|
|
25
25
|
[[package]]
|
|
26
26
|
name = "aho-corasick"
|
|
27
|
-
version = "1.1.
|
|
27
|
+
version = "1.1.5"
|
|
28
28
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
29
|
-
checksum = "
|
|
29
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
30
30
|
dependencies = [
|
|
31
31
|
"memchr",
|
|
32
32
|
]
|
|
@@ -189,9 +189,9 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
|
189
189
|
|
|
190
190
|
[[package]]
|
|
191
191
|
name = "clap"
|
|
192
|
-
version = "4.6.
|
|
192
|
+
version = "4.6.5"
|
|
193
193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
194
|
-
checksum = "
|
|
194
|
+
checksum = "301b56658598e48f3648647ac6fc887be7e7108eddfa4e9b63fcf3ec58c0cadf"
|
|
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.5"
|
|
212
212
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
-
checksum = "
|
|
213
|
+
checksum = "94a65403d1a1bd28f7dc68eb8506e8874808ee5eecb59298de588e2e1407a078"
|
|
214
214
|
dependencies = [
|
|
215
215
|
"anstream",
|
|
216
216
|
"anstyle",
|
|
@@ -366,9 +366,9 @@ dependencies = [
|
|
|
366
366
|
|
|
367
367
|
[[package]]
|
|
368
368
|
name = "data-encoding"
|
|
369
|
-
version = "2.11.
|
|
369
|
+
version = "2.11.1"
|
|
370
370
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
-
checksum = "
|
|
371
|
+
checksum = "4583a4551df46e2792f82ceeac45e850d2e2d5debba0b91f102385cda5b11f06"
|
|
372
372
|
|
|
373
373
|
[[package]]
|
|
374
374
|
name = "defmt"
|
|
@@ -522,9 +522,9 @@ dependencies = [
|
|
|
522
522
|
|
|
523
523
|
[[package]]
|
|
524
524
|
name = "fancy-regex"
|
|
525
|
-
version = "0.
|
|
525
|
+
version = "0.19.0"
|
|
526
526
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
-
checksum = "
|
|
527
|
+
checksum = "476de73bddf2ef8490aa4ee8f1cf40b430bf1d56c48c22080e5186952cd580e6"
|
|
528
528
|
dependencies = [
|
|
529
529
|
"bit-set",
|
|
530
530
|
"regex-automata",
|
|
@@ -654,9 +654,9 @@ dependencies = [
|
|
|
654
654
|
|
|
655
655
|
[[package]]
|
|
656
656
|
name = "globset"
|
|
657
|
-
version = "0.4.
|
|
657
|
+
version = "0.4.20"
|
|
658
658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
-
checksum = "
|
|
659
|
+
checksum = "07c34a9410465b45bd9787443bc7370f37735bad04b0f0cd57ff1a3186c98988"
|
|
660
660
|
dependencies = [
|
|
661
661
|
"aho-corasick",
|
|
662
662
|
"bstr",
|
|
@@ -814,9 +814,9 @@ dependencies = [
|
|
|
814
814
|
|
|
815
815
|
[[package]]
|
|
816
816
|
name = "ignore"
|
|
817
|
-
version = "0.4.
|
|
817
|
+
version = "0.4.33"
|
|
818
818
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
819
|
-
checksum = "
|
|
819
|
+
checksum = "00b69833ed729dc5aa7d19541d96d6cf8e9137194207a04916d658e43168402f"
|
|
820
820
|
dependencies = [
|
|
821
821
|
"crossbeam-deque",
|
|
822
822
|
"globset",
|
|
@@ -853,12 +853,9 @@ dependencies = [
|
|
|
853
853
|
|
|
854
854
|
[[package]]
|
|
855
855
|
name = "intrusive-collections"
|
|
856
|
-
version = "0.10.
|
|
856
|
+
version = "0.10.3"
|
|
857
857
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
-
checksum = "
|
|
859
|
-
dependencies = [
|
|
860
|
-
"memoffset",
|
|
861
|
-
]
|
|
858
|
+
checksum = "4275b20e6057cd7733fd8df8a5a31701e4fe44497dad0f3fa0e1c4fb971506be"
|
|
862
859
|
|
|
863
860
|
[[package]]
|
|
864
861
|
name = "inventory"
|
|
@@ -930,9 +927,9 @@ dependencies = [
|
|
|
930
927
|
|
|
931
928
|
[[package]]
|
|
932
929
|
name = "jsonschema"
|
|
933
|
-
version = "0.
|
|
930
|
+
version = "0.49.5"
|
|
934
931
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
-
checksum = "
|
|
932
|
+
checksum = "8da60094fc1968bbd091e2cfa004415cb7b19e25e592376e66a64aa832bb6039"
|
|
936
933
|
dependencies = [
|
|
937
934
|
"ahash",
|
|
938
935
|
"bytecount",
|
|
@@ -959,18 +956,18 @@ dependencies = [
|
|
|
959
956
|
|
|
960
957
|
[[package]]
|
|
961
958
|
name = "jsonschema-regex"
|
|
962
|
-
version = "0.
|
|
959
|
+
version = "0.49.5"
|
|
963
960
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
964
|
-
checksum = "
|
|
961
|
+
checksum = "36539f34ef9e5da418433fbbf7294522d8f930ecf6a540ccd1ec6481c9ff9056"
|
|
965
962
|
dependencies = [
|
|
966
963
|
"regex-syntax",
|
|
967
964
|
]
|
|
968
965
|
|
|
969
966
|
[[package]]
|
|
970
967
|
name = "jsonschema-value"
|
|
971
|
-
version = "0.
|
|
968
|
+
version = "0.49.5"
|
|
972
969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
-
checksum = "
|
|
970
|
+
checksum = "8bc513dfee68c6fe29498451df95a32951ea227801b476f4a1f236433986c891"
|
|
974
971
|
dependencies = [
|
|
975
972
|
"ahash",
|
|
976
973
|
"bytecount",
|
|
@@ -994,9 +991,9 @@ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
|
994
991
|
|
|
995
992
|
[[package]]
|
|
996
993
|
name = "libredox"
|
|
997
|
-
version = "0.1.
|
|
994
|
+
version = "0.1.19"
|
|
998
995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
-
checksum = "
|
|
996
|
+
checksum = "2026a5056764a10b2bf5d56488cba40da507f5493a6a429340e2004d9ed085fa"
|
|
1000
997
|
dependencies = [
|
|
1001
998
|
"libc",
|
|
1002
999
|
]
|
|
@@ -1060,15 +1057,6 @@ version = "2.8.3"
|
|
|
1060
1057
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
1058
|
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
1062
1059
|
|
|
1063
|
-
[[package]]
|
|
1064
|
-
name = "memoffset"
|
|
1065
|
-
version = "0.9.1"
|
|
1066
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1067
|
-
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1068
|
-
dependencies = [
|
|
1069
|
-
"autocfg",
|
|
1070
|
-
]
|
|
1071
|
-
|
|
1072
1060
|
[[package]]
|
|
1073
1061
|
name = "micromap"
|
|
1074
1062
|
version = "0.3.0"
|
|
@@ -1205,7 +1193,7 @@ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
|
|
1205
1193
|
|
|
1206
1194
|
[[package]]
|
|
1207
1195
|
name = "panache"
|
|
1208
|
-
version = "3.0
|
|
1196
|
+
version = "3.2.0"
|
|
1209
1197
|
dependencies = [
|
|
1210
1198
|
"annotate-snippets",
|
|
1211
1199
|
"assert_cmd",
|
|
@@ -1237,7 +1225,7 @@ dependencies = [
|
|
|
1237
1225
|
"schemars",
|
|
1238
1226
|
"serde",
|
|
1239
1227
|
"serde_json",
|
|
1240
|
-
"similar 3.1.
|
|
1228
|
+
"similar 3.1.2",
|
|
1241
1229
|
"similar-asserts",
|
|
1242
1230
|
"tempfile",
|
|
1243
1231
|
"toml",
|
|
@@ -1249,7 +1237,7 @@ dependencies = [
|
|
|
1249
1237
|
|
|
1250
1238
|
[[package]]
|
|
1251
1239
|
name = "panache-formatter"
|
|
1252
|
-
version = "0.20.
|
|
1240
|
+
version = "0.20.4"
|
|
1253
1241
|
dependencies = [
|
|
1254
1242
|
"insta",
|
|
1255
1243
|
"log",
|
|
@@ -1267,7 +1255,7 @@ dependencies = [
|
|
|
1267
1255
|
|
|
1268
1256
|
[[package]]
|
|
1269
1257
|
name = "panache-parser"
|
|
1270
|
-
version = "0.
|
|
1258
|
+
version = "0.24.0"
|
|
1271
1259
|
dependencies = [
|
|
1272
1260
|
"entities",
|
|
1273
1261
|
"insta",
|
|
@@ -1426,9 +1414,9 @@ dependencies = [
|
|
|
1426
1414
|
|
|
1427
1415
|
[[package]]
|
|
1428
1416
|
name = "pulldown-latex"
|
|
1429
|
-
version = "0.
|
|
1417
|
+
version = "0.8.0"
|
|
1430
1418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1431
|
-
checksum = "
|
|
1419
|
+
checksum = "1cf850381ae0dbb131f36e31d6090f55363d079ab3e518ad0323b9cb6a96d115"
|
|
1432
1420
|
dependencies = [
|
|
1433
1421
|
"bumpalo",
|
|
1434
1422
|
]
|
|
@@ -1516,9 +1504,9 @@ dependencies = [
|
|
|
1516
1504
|
|
|
1517
1505
|
[[package]]
|
|
1518
1506
|
name = "referencing"
|
|
1519
|
-
version = "0.
|
|
1507
|
+
version = "0.49.5"
|
|
1520
1508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
-
checksum = "
|
|
1509
|
+
checksum = "05915176d843da9ec5c925e5e2631be9aa61b27430acfdd562e79cae8f559725"
|
|
1522
1510
|
dependencies = [
|
|
1523
1511
|
"ahash",
|
|
1524
1512
|
"fluent-uri 0.4.1",
|
|
@@ -1545,9 +1533,9 @@ dependencies = [
|
|
|
1545
1533
|
|
|
1546
1534
|
[[package]]
|
|
1547
1535
|
name = "regex-automata"
|
|
1548
|
-
version = "0.4.
|
|
1536
|
+
version = "0.4.18"
|
|
1549
1537
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1550
|
-
checksum = "
|
|
1538
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
1551
1539
|
dependencies = [
|
|
1552
1540
|
"aho-corasick",
|
|
1553
1541
|
"memchr",
|
|
@@ -1611,9 +1599,9 @@ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
|
1611
1599
|
|
|
1612
1600
|
[[package]]
|
|
1613
1601
|
name = "salsa"
|
|
1614
|
-
version = "0.28.
|
|
1602
|
+
version = "0.28.2"
|
|
1615
1603
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1616
|
-
checksum = "
|
|
1604
|
+
checksum = "cf0e374215cd2db2b5c75d7b3a99cb0cc052c0595335dfdefc03d4eb08f4aa81"
|
|
1617
1605
|
dependencies = [
|
|
1618
1606
|
"boxcar",
|
|
1619
1607
|
"crossbeam-queue",
|
|
@@ -1637,19 +1625,19 @@ dependencies = [
|
|
|
1637
1625
|
|
|
1638
1626
|
[[package]]
|
|
1639
1627
|
name = "salsa-macro-rules"
|
|
1640
|
-
version = "0.28.
|
|
1628
|
+
version = "0.28.2"
|
|
1641
1629
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1642
|
-
checksum = "
|
|
1630
|
+
checksum = "85f4b7d4405540bbd6d4ffa52d4322d983f3781954d3073067ac1bdb028459b3"
|
|
1643
1631
|
|
|
1644
1632
|
[[package]]
|
|
1645
1633
|
name = "salsa-macros"
|
|
1646
|
-
version = "0.28.
|
|
1634
|
+
version = "0.28.2"
|
|
1647
1635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1648
|
-
checksum = "
|
|
1636
|
+
checksum = "445be2bfbb2f67cb663225ecd7bc5a25370c0250fca30f9d8cbad9a913650370"
|
|
1649
1637
|
dependencies = [
|
|
1650
1638
|
"proc-macro2",
|
|
1651
1639
|
"quote",
|
|
1652
|
-
"syn
|
|
1640
|
+
"syn 3.0.3",
|
|
1653
1641
|
]
|
|
1654
1642
|
|
|
1655
1643
|
[[package]]
|
|
@@ -1780,9 +1768,9 @@ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
|
1780
1768
|
|
|
1781
1769
|
[[package]]
|
|
1782
1770
|
name = "similar"
|
|
1783
|
-
version = "3.1.
|
|
1771
|
+
version = "3.1.2"
|
|
1784
1772
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1785
|
-
checksum = "
|
|
1773
|
+
checksum = "85ee016af5d736b69fc89e19254540fa4b5f5492853fb5503920f084011c78b6"
|
|
1786
1774
|
dependencies = [
|
|
1787
1775
|
"bstr",
|
|
1788
1776
|
"unicode-segmentation",
|
|
@@ -1795,7 +1783,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1795
1783
|
checksum = "997e6ca38e97437973fc9f7f50a50d1274cacd874341a4960fea90067291038c"
|
|
1796
1784
|
dependencies = [
|
|
1797
1785
|
"console",
|
|
1798
|
-
"similar 3.1.
|
|
1786
|
+
"similar 3.1.2",
|
|
1799
1787
|
]
|
|
1800
1788
|
|
|
1801
1789
|
[[package]]
|
|
@@ -7,7 +7,7 @@ authors = ["Johan Larsson <johan@jolars.co>"]
|
|
|
7
7
|
|
|
8
8
|
[package]
|
|
9
9
|
name = "panache"
|
|
10
|
-
version = "3.0
|
|
10
|
+
version = "3.2.0"
|
|
11
11
|
edition.workspace = true
|
|
12
12
|
# `distill_quarto_schema` is a dev-only vendoring bin (src/bin/); keep bare
|
|
13
13
|
# `cargo run` resolving to the CLI for tooling like the pre-commit format hook.
|
|
@@ -48,8 +48,8 @@ path = "src/main.rs"
|
|
|
48
48
|
required-features = ["cli"]
|
|
49
49
|
|
|
50
50
|
[dependencies]
|
|
51
|
-
panache-formatter = { path = "crates/panache-formatter", version = "0.20.
|
|
52
|
-
panache-parser = { path = "crates/panache-parser", version = "0.
|
|
51
|
+
panache-formatter = { path = "crates/panache-formatter", version = "0.20.4" }
|
|
52
|
+
panache-parser = { path = "crates/panache-parser", version = "0.24.0", features = [
|
|
53
53
|
"serde",
|
|
54
54
|
"schema",
|
|
55
55
|
] }
|
|
@@ -84,7 +84,7 @@ similar-asserts = "2.0.0"
|
|
|
84
84
|
insta = { version = "1.47.2", features = ["json"] }
|
|
85
85
|
assert_cmd = "2.2.2"
|
|
86
86
|
predicates = "3.1.4"
|
|
87
|
-
jsonschema = { version = "0.
|
|
87
|
+
jsonschema = { version = "0.49.2", default-features = false }
|
|
88
88
|
|
|
89
89
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
90
90
|
rayon = "1.10.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: panache-cli
|
|
3
|
-
Version: 3.0
|
|
3
|
+
Version: 3.2.0
|
|
4
4
|
Classifier: Development Status :: 5 - Production/Stable
|
|
5
5
|
Classifier: Environment :: Console
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -35,7 +35,8 @@ 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)
|
|
39
40
|
[](https://codecov.io/gh/jolars/panache)
|
|
40
41
|
|
|
41
42
|
A language server, formatter, and linter for Markdown, Quarto, and R Markdown,
|
|
@@ -44,126 +45,50 @@ linters on code blocks.
|
|
|
44
45
|
|
|
45
46
|
## Installation
|
|
46
47
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
[
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
your platform, you can use the installer scripts below. These scripts are
|
|
73
|
-
fetched directly from this repository and then download the latest matching
|
|
74
|
-
Panache CLI release asset for your platform, installing to a user-local
|
|
75
|
-
directory by default. If you prefer, download and inspect the script before
|
|
76
|
-
running it.
|
|
48
|
+
Panache is available from several sources:
|
|
49
|
+
|
|
50
|
+
- **crates.io**: `cargo install panache`
|
|
51
|
+
- **Homebrew**: `brew install panache`
|
|
52
|
+
- **npm**: `npm install -g @panache-cli/panache` (or `npx @panache-cli/panache`)
|
|
53
|
+
- **PyPI**: `uv tool install panache-cli`/`pipx install panache-cli`
|
|
54
|
+
- **Aqua**: `aqua install jolars/panache`
|
|
55
|
+
- **NixOS**: the `panache` package on
|
|
56
|
+
[Nixpkgs](https://search.nixos.org/packages?channel=unstable&show=panache&from=0&size=50&sort=relevance&type=packages)
|
|
57
|
+
- **Arch Linux**: from the AUR:
|
|
58
|
+
[`panache-bin`](https://aur.archlinux.org/packages/panache-bin/) (prebuilt),
|
|
59
|
+
[`panache`](https://aur.archlinux.org/packages/panache/) (built from source)
|
|
60
|
+
- **Prebuilt binaries**: tarballs, `.deb`, and `.rpm` from the [releases
|
|
61
|
+
page](https://github.com/jolars/panache/releases)
|
|
62
|
+
- **VS Code/Open VSX**: the Panache extension, from the [VS Code
|
|
63
|
+
Marketplace](https://marketplace.visualstudio.com/items?itemName=jolars.panache)
|
|
64
|
+
or [Open VSX](https://open-vsx.org/extension/jolars/panache) (also works in
|
|
65
|
+
Positron), which installs the CLI and starts the language server automatically
|
|
66
|
+
|
|
67
|
+
### Install Script
|
|
68
|
+
|
|
69
|
+
The installer scripts pick the right release artifact for your platform and
|
|
70
|
+
install to a user-local directory by default. They are fetched from the latest
|
|
71
|
+
release and then download the matching Panache CLI release asset. If you prefer,
|
|
72
|
+
download and inspect the script before running it.
|
|
77
73
|
|
|
78
74
|
For macOS and Linux:
|
|
79
75
|
|
|
80
76
|
```sh
|
|
81
77
|
curl --proto '=https' --tlsv1.2 -LsSf \
|
|
82
|
-
https://
|
|
78
|
+
https://github.com/jolars/panache/releases/latest/download/panache-installer.sh | sh
|
|
83
79
|
```
|
|
84
80
|
|
|
85
81
|
For Windows PowerShell:
|
|
86
82
|
|
|
87
83
|
```powershell
|
|
88
|
-
powershell -NoProfile -ExecutionPolicy Bypass -Command "irm https://
|
|
89
|
-
```
|
|
90
|
-
|
|
91
|
-
### Arch Linux
|
|
92
|
-
|
|
93
|
-
There are also two recipies available for Arch Linux in the AUR:
|
|
94
|
-
[panache](https://aur.archlinux.org/packages/panache/) and
|
|
95
|
-
[panache-bin](https://aur.archlinux.org/packages/panache-bin/). The first builds
|
|
96
|
-
from source for your system, the second uses precompiled binaries attatched to
|
|
97
|
-
GH releases. Install either using `yay` or your favorite AUR helper:
|
|
98
|
-
|
|
99
|
-
```bash
|
|
100
|
-
yay -S panache
|
|
101
|
-
yay -S panache-bin
|
|
84
|
+
powershell -NoProfile -ExecutionPolicy Bypass -Command "irm https://github.com/jolars/panache/releases/latest/download/panache-installer.ps1 | iex"
|
|
102
85
|
```
|
|
103
86
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
Panache is available in NixOS via the `panache` package in `nixpkgs`. To add it
|
|
107
|
-
to your system configuration, include it in the `environment.systemPackages`:
|
|
108
|
-
|
|
109
|
-
```nix
|
|
110
|
-
{ pkgs, ... }:
|
|
111
|
-
|
|
112
|
-
{
|
|
113
|
-
environment.systemPackages = [
|
|
114
|
-
pkgs.panache
|
|
115
|
-
];
|
|
116
|
-
}
|
|
117
|
-
```
|
|
118
|
-
|
|
119
|
-
### From PyPI (via uv or pipx)
|
|
120
|
-
|
|
121
|
-
Install with [uv](https://docs.astral.sh/uv/) or [pipx](https://pipx.pypa.io/):
|
|
122
|
-
|
|
123
|
-
```bash
|
|
124
|
-
# One-shot run, no install:
|
|
125
|
-
uvx --from panache-cli panache format path/to/file.qmd
|
|
126
|
-
|
|
127
|
-
# Persistent install:
|
|
128
|
-
uv tool install panache-cli
|
|
129
|
-
# or
|
|
130
|
-
pipx install panache-cli
|
|
131
|
-
```
|
|
132
|
-
|
|
133
|
-
### From NPM (via npmx)
|
|
134
|
-
|
|
135
|
-
Install with [npx](https://www.npmjs.com/package/npx) or
|
|
136
|
-
[npmx](https://www.npmjs.com/package/npmx):
|
|
137
|
-
|
|
138
|
-
```bash
|
|
139
|
-
# One-shot run, no install:
|
|
140
|
-
npx @panache-cli/panache format path/to/file.qmd
|
|
141
|
-
|
|
142
|
-
# Persistent install:
|
|
143
|
-
npm install -g @panache-cli/panache
|
|
144
|
-
```
|
|
145
|
-
|
|
146
|
-
### VS Code Extension
|
|
147
|
-
|
|
148
|
-
If you are running VS Code or an editor that supports VS Code extensions (like
|
|
149
|
-
Positron), you can install the [Panache
|
|
150
|
-
extension](https://marketplace.visualstudio.com/items?itemName=jolars.panache)
|
|
151
|
-
from the VS Code Marketplace or the [Open VSX
|
|
152
|
-
extension](https://open-vsx.org/extension/jolars/panache), which will
|
|
153
|
-
automatically also install the `panache` CLI and start the language server when
|
|
154
|
-
editing supported files.
|
|
155
|
-
|
|
156
|
-
### Development Version
|
|
157
|
-
|
|
158
|
-
To install the latest development version, you can run
|
|
159
|
-
|
|
160
|
-
```bash
|
|
161
|
-
cargo install --git https://github.com/jolars/panache.git panache
|
|
162
|
-
```
|
|
87
|
+
Set `PANACHE_INSTALL_DIR` to change the destination and `PANACHE_TAG` to pin a
|
|
88
|
+
version.
|
|
163
89
|
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
use the `panache` command directly after installation.
|
|
90
|
+
See [getting started](https://panache.bz/getting-started) for per-platform
|
|
91
|
+
detail and the development version.
|
|
167
92
|
|
|
168
93
|
## Usage
|
|
169
94
|
|
|
@@ -9,7 +9,8 @@ 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)
|
|
13
14
|
[](https://codecov.io/gh/jolars/panache)
|
|
14
15
|
|
|
15
16
|
A language server, formatter, and linter for Markdown, Quarto, and R Markdown,
|
|
@@ -18,126 +19,50 @@ linters on code blocks.
|
|
|
18
19
|
|
|
19
20
|
## Installation
|
|
20
21
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
[
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
your platform, you can use the installer scripts below. These scripts are
|
|
47
|
-
fetched directly from this repository and then download the latest matching
|
|
48
|
-
Panache CLI release asset for your platform, installing to a user-local
|
|
49
|
-
directory by default. If you prefer, download and inspect the script before
|
|
50
|
-
running it.
|
|
22
|
+
Panache is available from several sources:
|
|
23
|
+
|
|
24
|
+
- **crates.io**: `cargo install panache`
|
|
25
|
+
- **Homebrew**: `brew install panache`
|
|
26
|
+
- **npm**: `npm install -g @panache-cli/panache` (or `npx @panache-cli/panache`)
|
|
27
|
+
- **PyPI**: `uv tool install panache-cli`/`pipx install panache-cli`
|
|
28
|
+
- **Aqua**: `aqua install jolars/panache`
|
|
29
|
+
- **NixOS**: the `panache` package on
|
|
30
|
+
[Nixpkgs](https://search.nixos.org/packages?channel=unstable&show=panache&from=0&size=50&sort=relevance&type=packages)
|
|
31
|
+
- **Arch Linux**: from the AUR:
|
|
32
|
+
[`panache-bin`](https://aur.archlinux.org/packages/panache-bin/) (prebuilt),
|
|
33
|
+
[`panache`](https://aur.archlinux.org/packages/panache/) (built from source)
|
|
34
|
+
- **Prebuilt binaries**: tarballs, `.deb`, and `.rpm` from the [releases
|
|
35
|
+
page](https://github.com/jolars/panache/releases)
|
|
36
|
+
- **VS Code/Open VSX**: the Panache extension, from the [VS Code
|
|
37
|
+
Marketplace](https://marketplace.visualstudio.com/items?itemName=jolars.panache)
|
|
38
|
+
or [Open VSX](https://open-vsx.org/extension/jolars/panache) (also works in
|
|
39
|
+
Positron), which installs the CLI and starts the language server automatically
|
|
40
|
+
|
|
41
|
+
### Install Script
|
|
42
|
+
|
|
43
|
+
The installer scripts pick the right release artifact for your platform and
|
|
44
|
+
install to a user-local directory by default. They are fetched from the latest
|
|
45
|
+
release and then download the matching Panache CLI release asset. If you prefer,
|
|
46
|
+
download and inspect the script before running it.
|
|
51
47
|
|
|
52
48
|
For macOS and Linux:
|
|
53
49
|
|
|
54
50
|
```sh
|
|
55
51
|
curl --proto '=https' --tlsv1.2 -LsSf \
|
|
56
|
-
https://
|
|
52
|
+
https://github.com/jolars/panache/releases/latest/download/panache-installer.sh | sh
|
|
57
53
|
```
|
|
58
54
|
|
|
59
55
|
For Windows PowerShell:
|
|
60
56
|
|
|
61
57
|
```powershell
|
|
62
|
-
powershell -NoProfile -ExecutionPolicy Bypass -Command "irm https://
|
|
63
|
-
```
|
|
64
|
-
|
|
65
|
-
### Arch Linux
|
|
66
|
-
|
|
67
|
-
There are also two recipies available for Arch Linux in the AUR:
|
|
68
|
-
[panache](https://aur.archlinux.org/packages/panache/) and
|
|
69
|
-
[panache-bin](https://aur.archlinux.org/packages/panache-bin/). The first builds
|
|
70
|
-
from source for your system, the second uses precompiled binaries attatched to
|
|
71
|
-
GH releases. Install either using `yay` or your favorite AUR helper:
|
|
72
|
-
|
|
73
|
-
```bash
|
|
74
|
-
yay -S panache
|
|
75
|
-
yay -S panache-bin
|
|
58
|
+
powershell -NoProfile -ExecutionPolicy Bypass -Command "irm https://github.com/jolars/panache/releases/latest/download/panache-installer.ps1 | iex"
|
|
76
59
|
```
|
|
77
60
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
Panache is available in NixOS via the `panache` package in `nixpkgs`. To add it
|
|
81
|
-
to your system configuration, include it in the `environment.systemPackages`:
|
|
82
|
-
|
|
83
|
-
```nix
|
|
84
|
-
{ pkgs, ... }:
|
|
85
|
-
|
|
86
|
-
{
|
|
87
|
-
environment.systemPackages = [
|
|
88
|
-
pkgs.panache
|
|
89
|
-
];
|
|
90
|
-
}
|
|
91
|
-
```
|
|
92
|
-
|
|
93
|
-
### From PyPI (via uv or pipx)
|
|
94
|
-
|
|
95
|
-
Install with [uv](https://docs.astral.sh/uv/) or [pipx](https://pipx.pypa.io/):
|
|
96
|
-
|
|
97
|
-
```bash
|
|
98
|
-
# One-shot run, no install:
|
|
99
|
-
uvx --from panache-cli panache format path/to/file.qmd
|
|
100
|
-
|
|
101
|
-
# Persistent install:
|
|
102
|
-
uv tool install panache-cli
|
|
103
|
-
# or
|
|
104
|
-
pipx install panache-cli
|
|
105
|
-
```
|
|
106
|
-
|
|
107
|
-
### From NPM (via npmx)
|
|
108
|
-
|
|
109
|
-
Install with [npx](https://www.npmjs.com/package/npx) or
|
|
110
|
-
[npmx](https://www.npmjs.com/package/npmx):
|
|
111
|
-
|
|
112
|
-
```bash
|
|
113
|
-
# One-shot run, no install:
|
|
114
|
-
npx @panache-cli/panache format path/to/file.qmd
|
|
115
|
-
|
|
116
|
-
# Persistent install:
|
|
117
|
-
npm install -g @panache-cli/panache
|
|
118
|
-
```
|
|
119
|
-
|
|
120
|
-
### VS Code Extension
|
|
121
|
-
|
|
122
|
-
If you are running VS Code or an editor that supports VS Code extensions (like
|
|
123
|
-
Positron), you can install the [Panache
|
|
124
|
-
extension](https://marketplace.visualstudio.com/items?itemName=jolars.panache)
|
|
125
|
-
from the VS Code Marketplace or the [Open VSX
|
|
126
|
-
extension](https://open-vsx.org/extension/jolars/panache), which will
|
|
127
|
-
automatically also install the `panache` CLI and start the language server when
|
|
128
|
-
editing supported files.
|
|
129
|
-
|
|
130
|
-
### Development Version
|
|
131
|
-
|
|
132
|
-
To install the latest development version, you can run
|
|
133
|
-
|
|
134
|
-
```bash
|
|
135
|
-
cargo install --git https://github.com/jolars/panache.git panache
|
|
136
|
-
```
|
|
61
|
+
Set `PANACHE_INSTALL_DIR` to change the destination and `PANACHE_TAG` to pin a
|
|
62
|
+
version.
|
|
137
63
|
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
use the `panache` command directly after installation.
|
|
64
|
+
See [getting started](https://panache.bz/getting-started) for per-platform
|
|
65
|
+
detail and the development version.
|
|
141
66
|
|
|
142
67
|
## Usage
|
|
143
68
|
|