panache-cli 3.2.0__tar.gz → 3.4.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.2.0 → panache_cli-3.4.0}/Cargo.lock +120 -97
- {panache_cli-3.2.0 → panache_cli-3.4.0}/Cargo.toml +9 -5
- {panache_cli-3.2.0 → panache_cli-3.4.0}/PKG-INFO +4 -4
- {panache_cli-3.2.0 → panache_cli-3.4.0}/README.md +3 -3
- {panache_cli-3.2.0 → panache_cli-3.4.0}/build.rs +15 -17
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/CHANGELOG.md +55 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/Cargo.toml +4 -3
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/code_blocks.rs +86 -13
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/core.rs +562 -250
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/inline.rs +34 -98
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/inline_layout.rs +24 -63
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/lists.rs +131 -56
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/math/STYLE.md +29 -19
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/math/linebreak.rs +115 -24
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/math/operators.rs +36 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/math/render.rs +34 -3
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/math.rs +27 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/tables.rs +313 -130
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/utils.rs +5 -2
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/CHANGELOG.md +119 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/Cargo.toml +3 -2
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/grid_layout.rs +105 -4
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/options.rs +27 -3
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/pandoc_ast.rs +913 -392
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/block_dispatcher.rs +363 -129
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/blockquotes.rs +55 -5
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/code_blocks.rs +106 -64
- panache_cli-3.4.0/crates/panache-parser/src/parser/blocks/container_prefix.rs +2684 -0
- panache_cli-3.4.0/crates/panache-parser/src/parser/blocks/definition_lists.rs +396 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/headings.rs +20 -15
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/html_blocks.rs +53 -209
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/indented_code.rs +3 -3
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/line_blocks.rs +121 -11
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/lists.rs +320 -34
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/metadata.rs +1 -1
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/paragraphs.rs +29 -1
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/reference_links.rs +73 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/tables.rs +935 -134
- panache_cli-3.4.0/crates/panache-parser/src/parser/blocks/tests/blockquotes.rs +1747 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/tests/code_blocks.rs +194 -0
- panache_cli-3.4.0/crates/panache-parser/src/parser/blocks/tests/content_containers.rs +109 -0
- panache_cli-3.4.0/crates/panache-parser/src/parser/blocks/tests/definition_lists.rs +1140 -0
- panache_cli-3.4.0/crates/panache-parser/src/parser/blocks/tests/footnote_marker_line.rs +163 -0
- panache_cli-3.4.0/crates/panache-parser/src/parser/blocks/tests/frame_pinning.rs +1166 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/tests/headings.rs +441 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/tests/helpers.rs +15 -1
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/tests/lists.rs +317 -2
- panache_cli-3.4.0/crates/panache-parser/src/parser/blocks/tests/losslessness.rs +683 -0
- panache_cli-3.4.0/crates/panache-parser/src/parser/blocks/tests/tables.rs +2267 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks.rs +8 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/core.rs +2443 -332
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/code_spans.rs +29 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/core.rs +2 -7
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/math.rs +49 -58
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/sink.rs +49 -20
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/math.rs +8 -2
- panache_cli-3.4.0/crates/panache-parser/src/parser/reparse.rs +2041 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils/attributes.rs +337 -8
- panache_cli-3.4.0/crates/panache-parser/src/parser/utils/container_stack.rs +364 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils/continuation.rs +93 -13
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils/list_item_buffer.rs +503 -115
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils/text_buffer.rs +151 -145
- panache_cli-3.4.0/crates/panache-parser/src/parser/verify.rs +150 -0
- panache_cli-3.4.0/crates/panache-parser/src/parser.rs +123 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/attributes.rs +102 -13
- panache_cli-3.4.0/crates/panache-parser/src/syntax/citations.rs +125 -0
- panache_cli-3.4.0/crates/panache-parser/src/syntax/code_span.rs +222 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/definitions.rs +7 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/kind.rs +25 -9
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/math.rs +4 -4
- panache_cli-3.4.0/crates/panache-parser/src/syntax/tables.rs +486 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax.rs +2 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/bib/csl_yaml.rs +76 -1
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/cli.rs +26 -17
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/config.rs +22 -0
- panache_cli-3.4.0/src/diagnostic_renderer.rs +393 -0
- panache_cli-3.4.0/src/incremental.rs +338 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lib.rs +1 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/code_block_collector.rs +88 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/external_linters/clippy.rs +9 -13
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/external_linters/eslint.rs +16 -20
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/external_linters/jarl.rs +15 -23
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/external_linters/jolars.rs +305 -27
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/external_linters/ruff.rs +11 -17
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/external_linters/shellcheck.rs +8 -10
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/external_linters/staticcheck.rs +7 -8
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/external_linters.rs +249 -2
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/external_linters_sync.rs +32 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/citation_keys.rs +52 -7
- panache_cli-3.4.0/src/linter/rules/reversed_footnote_marker.rs +284 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/swallowed_list_marker.rs +11 -18
- panache_cli-3.4.0/src/linter/rules/table_column_count.rs +145 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/undefined_references.rs +19 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules.rs +2 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter.rs +2 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/context.rs +5 -1
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/conversions.rs +0 -25
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/dispatch.rs +23 -5
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/documents.rs +53 -213
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/global_state.rs +0 -9
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/completion.rs +2 -1
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/configuration.rs +21 -1
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/workspace_symbols.rs +5 -3
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/testing.rs +9 -4
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp.rs +0 -3
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/main.rs +197 -33
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/parser.rs +20 -35
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/range_utils.rs +0 -19
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/salsa.rs +240 -11
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/utils.rs +51 -3
- panache_cli-3.2.0/crates/panache-parser/src/parser/blocks/container_prefix.rs +0 -1244
- panache_cli-3.2.0/crates/panache-parser/src/parser/blocks/definition_lists.rs +0 -223
- panache_cli-3.2.0/crates/panache-parser/src/parser/blocks/tests/blockquotes.rs +0 -862
- panache_cli-3.2.0/crates/panache-parser/src/parser/blocks/tests/definition_lists.rs +0 -265
- panache_cli-3.2.0/crates/panache-parser/src/parser/blocks/tests/losslessness.rs +0 -282
- panache_cli-3.2.0/crates/panache-parser/src/parser/utils/container_stack.rs +0 -174
- panache_cli-3.2.0/crates/panache-parser/src/parser.rs +0 -767
- panache_cli-3.2.0/crates/panache-parser/src/syntax/citations.rs +0 -52
- panache_cli-3.2.0/crates/panache-parser/src/syntax/tables.rs +0 -296
- panache_cli-3.2.0/src/diagnostic_renderer.rs +0 -224
- {panache_cli-3.2.0 → panache_cli-3.4.0}/LICENSE +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/assets/quarto-schema/schema.json +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/README.md +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/config.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/directives.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/blockquotes.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/fenced_divs.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/hashpipe.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/headings.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/indent_utils.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/metadata.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/paragraphs.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/sentence_wrap.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/shortcodes.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/smart.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/utils.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/yaml/STYLE.md +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/yaml/block_map.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/yaml/block_sequence.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/yaml/document.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/yaml/flow.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/yaml/options.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/yaml/scalar.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter/yaml.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/formatter.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/lib.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/parser.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/syntax.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-formatter/src/yaml_engine.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/README.md +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/build.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/lib.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/admonitions.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/fenced_divs.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/figures.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/horizontal_rules.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/latex_envs.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/myst_directives.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/myst_targets.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/raw_blocks.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/tests/blanklines.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/tests/figures.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/blocks/tests/metadata_guards.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/diagnostics.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/bookdown.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/bracketed_spans.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/citations.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/emoji.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/escapes.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/inline_executable.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/inline_footnotes.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/inline_html.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/inline_ir.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/latex.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/links.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/mark.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/myst_roles.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/myst_substitutions.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/native_spans.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/raw_inline.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/refdef_map.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/shortcodes.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/strikeout.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/subscript.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/superscript.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/svelte.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/tests.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/uri-schemes.csv +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines/wikilinks.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/inlines.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils/chunk_options.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils/helpers.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils/inline_emission.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils/marker_utils.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils/tree_copy.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils/yaml_regions.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/utils.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/yaml/cooking.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/yaml/events.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/yaml/model.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/yaml/parser.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/yaml/profile.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/yaml/scanner.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/yaml/validator.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/parser/yaml.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/range_utils.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/alerts.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/ast.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/block_quotes.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/blocks.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/chunk_options.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/code_blocks.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/crossrefs.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/fenced_divs.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/headings.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/inlines.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/links.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/lists.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/myst.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/raw_tex.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/references.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/shortcodes.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/yaml.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/crates/panache-parser/src/syntax/yaml_ast.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/pyproject.toml +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/bib/bibtex.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/bib/csl_json.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/bib/index.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/bib/preview.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/bib/ris.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/bib.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/bin/distill_quarto_schema.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/cache.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/config/formatter_presets.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/config/types/schema_helpers.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/config/types.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/directives.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/external_formatters_common.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/external_formatters_sync.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/external_tools_common.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/formatter.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/includes.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/diagnostics.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/fuzzy.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/index.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/metadata_diagnostics.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/offsets.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/project_index.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/quarto_schema/distill.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/quarto_schema/interp.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/quarto_schema/model.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/quarto_schema/report.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/quarto_schema/value.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/quarto_schema.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/adjacent_footnote_refs.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/chunk_label_spaces.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/citation_nonbreaking_space.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/consumer_divergence.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/crossref_as_link_target.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/duplicate_references.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/duplicate_yaml_anchor.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/emoji_aliases.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/empty_list_item.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/empty_values.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/figure_crossref_captions.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/footnote_after_image.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/footnote_ref_in_footnote_def.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/footnote_swallowed_by_bracket.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/heading_eaten_attrs.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/heading_hierarchy.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/heading_strip_comments_residue.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/html_entities.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/link_text_is_url.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/math_content.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/missing_chunk_labels.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/quarto_schema.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/stray_fenced_div_markers.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/undefined_anchor.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/unspaced_citation.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/unsupported_metadata_key.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/unused_definitions.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/rules/unused_yaml_anchor.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/runner.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/yaml_anchors.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/linter/yaml_resolve.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/config.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/code_actions.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/diagnostics.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/document_highlight.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/document_links.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/document_symbols.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/file_operations.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/file_rename.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/file_watcher.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/folding_ranges.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/footnote_conversion.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/formatting.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/goto_definition.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/heading_link_conversion.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/hover.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/link_conversion.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/linked_editing_range.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/list_conversion.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/prepare_rename.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/references.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/rename.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/semantic_tokens.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/shortcode_args.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers/workspace_folders.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/handlers.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/helpers.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/line_index.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/navigation.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/symbols.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/task_pool.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/lsp/uri_ext.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/metadata/bibliography.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/metadata/citations.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/metadata/project.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/metadata/references.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/metadata/yaml.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/metadata.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/syntax.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/vfs.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/yaml_engine.rs +0 -0
- {panache_cli-3.2.0 → panache_cli-3.4.0}/src/yaml_regions.rs +0 -0
|
@@ -160,9 +160,9 @@ checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
|
|
|
160
160
|
|
|
161
161
|
[[package]]
|
|
162
162
|
name = "bstr"
|
|
163
|
-
version = "1.13.
|
|
163
|
+
version = "1.13.1"
|
|
164
164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
-
checksum = "
|
|
165
|
+
checksum = "6bb31b46c14244e20ee9984b11bf5c992b91fb6939fea616e3512c8baecdbe5f"
|
|
166
166
|
dependencies = [
|
|
167
167
|
"memchr",
|
|
168
168
|
"regex-automata",
|
|
@@ -189,28 +189,19 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
|
189
189
|
|
|
190
190
|
[[package]]
|
|
191
191
|
name = "clap"
|
|
192
|
-
version = "4.6.
|
|
192
|
+
version = "4.6.6"
|
|
193
193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
194
|
-
checksum = "
|
|
194
|
+
checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
|
|
195
195
|
dependencies = [
|
|
196
196
|
"clap_builder",
|
|
197
197
|
"clap_derive",
|
|
198
198
|
]
|
|
199
199
|
|
|
200
|
-
[[package]]
|
|
201
|
-
name = "clap-markdown"
|
|
202
|
-
version = "0.1.5"
|
|
203
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
-
checksum = "d2a2617956a06d4885b490697b5307ebb09fec10b088afc18c81762d848c2339"
|
|
205
|
-
dependencies = [
|
|
206
|
-
"clap",
|
|
207
|
-
]
|
|
208
|
-
|
|
209
200
|
[[package]]
|
|
210
201
|
name = "clap_builder"
|
|
211
|
-
version = "4.6.
|
|
202
|
+
version = "4.6.6"
|
|
212
203
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
-
checksum = "
|
|
204
|
+
checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
|
|
214
205
|
dependencies = [
|
|
215
206
|
"anstream",
|
|
216
207
|
"anstyle",
|
|
@@ -220,9 +211,9 @@ dependencies = [
|
|
|
220
211
|
|
|
221
212
|
[[package]]
|
|
222
213
|
name = "clap_complete"
|
|
223
|
-
version = "4.6.
|
|
214
|
+
version = "4.6.9"
|
|
224
215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
225
|
-
checksum = "
|
|
216
|
+
checksum = "3be2ad0423bdbbb0e25bc89add796f3559706d4a95e1bc98e4d9662a957b6a19"
|
|
226
217
|
dependencies = [
|
|
227
218
|
"clap",
|
|
228
219
|
]
|
|
@@ -247,14 +238,23 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
|
247
238
|
|
|
248
239
|
[[package]]
|
|
249
240
|
name = "clap_mangen"
|
|
250
|
-
version = "0.3.
|
|
241
|
+
version = "0.3.3"
|
|
251
242
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
-
checksum = "
|
|
243
|
+
checksum = "211d617eaa4b735c96c9e0228fcbdb5120ef623f2b8cb67ffb84c3e02dbc28a4"
|
|
253
244
|
dependencies = [
|
|
254
245
|
"clap",
|
|
255
246
|
"roff",
|
|
256
247
|
]
|
|
257
248
|
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "clapdown"
|
|
251
|
+
version = "0.2.0"
|
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
+
checksum = "68bcefa13c36a119d957224c65214f792139033a34f8157297ac2a7fff5a343a"
|
|
254
|
+
dependencies = [
|
|
255
|
+
"clap",
|
|
256
|
+
]
|
|
257
|
+
|
|
258
258
|
[[package]]
|
|
259
259
|
name = "colorchoice"
|
|
260
260
|
version = "1.0.5"
|
|
@@ -594,21 +594,21 @@ dependencies = [
|
|
|
594
594
|
|
|
595
595
|
[[package]]
|
|
596
596
|
name = "futures-core"
|
|
597
|
-
version = "0.3.
|
|
597
|
+
version = "0.3.34"
|
|
598
598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
|
-
checksum = "
|
|
599
|
+
checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
|
|
600
600
|
|
|
601
601
|
[[package]]
|
|
602
602
|
name = "futures-task"
|
|
603
|
-
version = "0.3.
|
|
603
|
+
version = "0.3.34"
|
|
604
604
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
-
checksum = "
|
|
605
|
+
checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
|
|
606
606
|
|
|
607
607
|
[[package]]
|
|
608
608
|
name = "futures-util"
|
|
609
|
-
version = "0.3.
|
|
609
|
+
version = "0.3.34"
|
|
610
610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
-
checksum = "
|
|
611
|
+
checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
|
|
612
612
|
dependencies = [
|
|
613
613
|
"futures-core",
|
|
614
614
|
"futures-task",
|
|
@@ -705,9 +705,9 @@ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
|
705
705
|
|
|
706
706
|
[[package]]
|
|
707
707
|
name = "icu_collections"
|
|
708
|
-
version = "2.
|
|
708
|
+
version = "2.3.0"
|
|
709
709
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
-
checksum = "
|
|
710
|
+
checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"
|
|
711
711
|
dependencies = [
|
|
712
712
|
"displaydoc",
|
|
713
713
|
"potential_utf",
|
|
@@ -719,9 +719,9 @@ dependencies = [
|
|
|
719
719
|
|
|
720
720
|
[[package]]
|
|
721
721
|
name = "icu_locale_core"
|
|
722
|
-
version = "2.
|
|
722
|
+
version = "2.3.0"
|
|
723
723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
-
checksum = "
|
|
724
|
+
checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"
|
|
725
725
|
dependencies = [
|
|
726
726
|
"displaydoc",
|
|
727
727
|
"litemap",
|
|
@@ -732,9 +732,9 @@ dependencies = [
|
|
|
732
732
|
|
|
733
733
|
[[package]]
|
|
734
734
|
name = "icu_normalizer"
|
|
735
|
-
version = "2.
|
|
735
|
+
version = "2.3.0"
|
|
736
736
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
737
|
-
checksum = "
|
|
737
|
+
checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f"
|
|
738
738
|
dependencies = [
|
|
739
739
|
"icu_collections",
|
|
740
740
|
"icu_normalizer_data",
|
|
@@ -746,16 +746,17 @@ dependencies = [
|
|
|
746
746
|
|
|
747
747
|
[[package]]
|
|
748
748
|
name = "icu_normalizer_data"
|
|
749
|
-
version = "2.
|
|
749
|
+
version = "2.3.0"
|
|
750
750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
-
checksum = "
|
|
751
|
+
checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0"
|
|
752
752
|
|
|
753
753
|
[[package]]
|
|
754
754
|
name = "icu_properties"
|
|
755
|
-
version = "2.
|
|
755
|
+
version = "2.3.0"
|
|
756
756
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
-
checksum = "
|
|
757
|
+
checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148"
|
|
758
758
|
dependencies = [
|
|
759
|
+
"displaydoc",
|
|
759
760
|
"icu_collections",
|
|
760
761
|
"icu_locale_core",
|
|
761
762
|
"icu_properties_data",
|
|
@@ -766,15 +767,15 @@ dependencies = [
|
|
|
766
767
|
|
|
767
768
|
[[package]]
|
|
768
769
|
name = "icu_properties_data"
|
|
769
|
-
version = "2.
|
|
770
|
+
version = "2.3.0"
|
|
770
771
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
-
checksum = "
|
|
772
|
+
checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"
|
|
772
773
|
|
|
773
774
|
[[package]]
|
|
774
775
|
name = "icu_provider"
|
|
775
|
-
version = "2.
|
|
776
|
+
version = "2.3.0"
|
|
776
777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
-
checksum = "
|
|
778
|
+
checksum = "92a7ed671a6aad807a8651a2e1782a6598fda9ce5185dd8158549e95a91c6428"
|
|
778
779
|
dependencies = [
|
|
779
780
|
"displaydoc",
|
|
780
781
|
"icu_locale_core",
|
|
@@ -916,9 +917,9 @@ dependencies = [
|
|
|
916
917
|
|
|
917
918
|
[[package]]
|
|
918
919
|
name = "js-sys"
|
|
919
|
-
version = "0.3.
|
|
920
|
+
version = "0.3.104"
|
|
920
921
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
-
checksum = "
|
|
922
|
+
checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
|
|
922
923
|
dependencies = [
|
|
923
924
|
"cfg-if",
|
|
924
925
|
"futures-util",
|
|
@@ -927,9 +928,9 @@ dependencies = [
|
|
|
927
928
|
|
|
928
929
|
[[package]]
|
|
929
930
|
name = "jsonschema"
|
|
930
|
-
version = "0.49.
|
|
931
|
+
version = "0.49.9"
|
|
931
932
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
932
|
-
checksum = "
|
|
933
|
+
checksum = "59ec8a241beed129f06114aa68007e905ca350e7baeb6e17a7631bb7978d91b2"
|
|
933
934
|
dependencies = [
|
|
934
935
|
"ahash",
|
|
935
936
|
"bytecount",
|
|
@@ -956,18 +957,18 @@ dependencies = [
|
|
|
956
957
|
|
|
957
958
|
[[package]]
|
|
958
959
|
name = "jsonschema-regex"
|
|
959
|
-
version = "0.49.
|
|
960
|
+
version = "0.49.9"
|
|
960
961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
-
checksum = "
|
|
962
|
+
checksum = "91994f45017ed5e66aa8e59b8415f4cb033a6380d7200387b7cf117595fbdf85"
|
|
962
963
|
dependencies = [
|
|
963
964
|
"regex-syntax",
|
|
964
965
|
]
|
|
965
966
|
|
|
966
967
|
[[package]]
|
|
967
968
|
name = "jsonschema-value"
|
|
968
|
-
version = "0.49.
|
|
969
|
+
version = "0.49.9"
|
|
969
970
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
970
|
-
checksum = "
|
|
971
|
+
checksum = "7ec7637f83e510868ae6ed625f7ebfbbde4554ee8ce49854caa5126a8b9b9ecb"
|
|
971
972
|
dependencies = [
|
|
972
973
|
"ahash",
|
|
973
974
|
"bytecount",
|
|
@@ -1006,9 +1007,9 @@ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
|
1006
1007
|
|
|
1007
1008
|
[[package]]
|
|
1008
1009
|
name = "litemap"
|
|
1009
|
-
version = "0.8.
|
|
1010
|
+
version = "0.8.3"
|
|
1010
1011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
-
checksum = "
|
|
1012
|
+
checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
|
|
1012
1013
|
|
|
1013
1014
|
[[package]]
|
|
1014
1015
|
name = "lock_api"
|
|
@@ -1057,6 +1058,15 @@ version = "2.8.3"
|
|
|
1057
1058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1058
1059
|
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
1059
1060
|
|
|
1061
|
+
[[package]]
|
|
1062
|
+
name = "memoffset"
|
|
1063
|
+
version = "0.9.1"
|
|
1064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1066
|
+
dependencies = [
|
|
1067
|
+
"autocfg",
|
|
1068
|
+
]
|
|
1069
|
+
|
|
1060
1070
|
[[package]]
|
|
1061
1071
|
name = "micromap"
|
|
1062
1072
|
version = "0.3.0"
|
|
@@ -1120,9 +1130,9 @@ dependencies = [
|
|
|
1120
1130
|
|
|
1121
1131
|
[[package]]
|
|
1122
1132
|
name = "num-integer"
|
|
1123
|
-
version = "0.1.
|
|
1133
|
+
version = "0.1.47"
|
|
1124
1134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1125
|
-
checksum = "
|
|
1135
|
+
checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
|
|
1126
1136
|
dependencies = [
|
|
1127
1137
|
"num-traits",
|
|
1128
1138
|
]
|
|
@@ -1193,14 +1203,14 @@ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
|
|
1193
1203
|
|
|
1194
1204
|
[[package]]
|
|
1195
1205
|
name = "panache"
|
|
1196
|
-
version = "3.
|
|
1206
|
+
version = "3.4.0"
|
|
1197
1207
|
dependencies = [
|
|
1198
1208
|
"annotate-snippets",
|
|
1199
1209
|
"assert_cmd",
|
|
1200
1210
|
"clap",
|
|
1201
|
-
"clap-markdown",
|
|
1202
1211
|
"clap_complete",
|
|
1203
1212
|
"clap_mangen",
|
|
1213
|
+
"clapdown",
|
|
1204
1214
|
"crossbeam-channel",
|
|
1205
1215
|
"dirs",
|
|
1206
1216
|
"emojis",
|
|
@@ -1220,7 +1230,7 @@ dependencies = [
|
|
|
1220
1230
|
"predicates",
|
|
1221
1231
|
"rayon",
|
|
1222
1232
|
"regex",
|
|
1223
|
-
"rowan",
|
|
1233
|
+
"rowan 0.17.0",
|
|
1224
1234
|
"salsa",
|
|
1225
1235
|
"schemars",
|
|
1226
1236
|
"serde",
|
|
@@ -1237,14 +1247,14 @@ dependencies = [
|
|
|
1237
1247
|
|
|
1238
1248
|
[[package]]
|
|
1239
1249
|
name = "panache-formatter"
|
|
1240
|
-
version = "0.
|
|
1250
|
+
version = "0.21.0"
|
|
1241
1251
|
dependencies = [
|
|
1242
1252
|
"insta",
|
|
1243
1253
|
"log",
|
|
1244
1254
|
"panache-parser",
|
|
1245
1255
|
"pretty_yaml",
|
|
1246
1256
|
"pulldown-latex",
|
|
1247
|
-
"rowan",
|
|
1257
|
+
"rowan 0.17.0",
|
|
1248
1258
|
"schemars",
|
|
1249
1259
|
"serde",
|
|
1250
1260
|
"serde_json",
|
|
@@ -1255,13 +1265,13 @@ dependencies = [
|
|
|
1255
1265
|
|
|
1256
1266
|
[[package]]
|
|
1257
1267
|
name = "panache-parser"
|
|
1258
|
-
version = "0.
|
|
1268
|
+
version = "0.26.0"
|
|
1259
1269
|
dependencies = [
|
|
1260
1270
|
"entities",
|
|
1261
1271
|
"insta",
|
|
1262
1272
|
"log",
|
|
1263
1273
|
"memchr",
|
|
1264
|
-
"rowan",
|
|
1274
|
+
"rowan 0.17.0",
|
|
1265
1275
|
"schemars",
|
|
1266
1276
|
"serde",
|
|
1267
1277
|
"serde_json",
|
|
@@ -1340,9 +1350,9 @@ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
|
1340
1350
|
|
|
1341
1351
|
[[package]]
|
|
1342
1352
|
name = "portable-atomic"
|
|
1343
|
-
version = "1.
|
|
1353
|
+
version = "1.15.0"
|
|
1344
1354
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1345
|
-
checksum = "
|
|
1355
|
+
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
1346
1356
|
|
|
1347
1357
|
[[package]]
|
|
1348
1358
|
name = "portable-atomic-util"
|
|
@@ -1355,9 +1365,9 @@ dependencies = [
|
|
|
1355
1365
|
|
|
1356
1366
|
[[package]]
|
|
1357
1367
|
name = "potential_utf"
|
|
1358
|
-
version = "0.1.
|
|
1368
|
+
version = "0.1.6"
|
|
1359
1369
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1360
|
-
checksum = "
|
|
1370
|
+
checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
|
|
1361
1371
|
dependencies = [
|
|
1362
1372
|
"zerovec",
|
|
1363
1373
|
]
|
|
@@ -1398,7 +1408,7 @@ version = "0.6.0"
|
|
|
1398
1408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1399
1409
|
checksum = "6f5db2b0044c0dae209c173c6049f210c9449092b07304c9c8b8d555c606e93e"
|
|
1400
1410
|
dependencies = [
|
|
1401
|
-
"rowan",
|
|
1411
|
+
"rowan 0.16.1",
|
|
1402
1412
|
"tiny_pretty",
|
|
1403
1413
|
"yaml_parser",
|
|
1404
1414
|
]
|
|
@@ -1504,9 +1514,9 @@ dependencies = [
|
|
|
1504
1514
|
|
|
1505
1515
|
[[package]]
|
|
1506
1516
|
name = "referencing"
|
|
1507
|
-
version = "0.49.
|
|
1517
|
+
version = "0.49.9"
|
|
1508
1518
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1509
|
-
checksum = "
|
|
1519
|
+
checksum = "6efa2154ea6f5ce0fdecdd2a8d18f2fa1a39a8fbba91564f555a592e4dce8278"
|
|
1510
1520
|
dependencies = [
|
|
1511
1521
|
"ahash",
|
|
1512
1522
|
"fluent-uri 0.4.1",
|
|
@@ -1566,6 +1576,19 @@ dependencies = [
|
|
|
1566
1576
|
"text-size",
|
|
1567
1577
|
]
|
|
1568
1578
|
|
|
1579
|
+
[[package]]
|
|
1580
|
+
name = "rowan"
|
|
1581
|
+
version = "0.17.0"
|
|
1582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1583
|
+
checksum = "14b574c58582fa59fa43a2feb6608b8744184659f08a2e0117e4b8224d95ed61"
|
|
1584
|
+
dependencies = [
|
|
1585
|
+
"countme",
|
|
1586
|
+
"hashbrown 0.14.5",
|
|
1587
|
+
"memoffset",
|
|
1588
|
+
"rustc-hash 1.1.0",
|
|
1589
|
+
"text-size",
|
|
1590
|
+
]
|
|
1591
|
+
|
|
1569
1592
|
[[package]]
|
|
1570
1593
|
name = "rustc-hash"
|
|
1571
1594
|
version = "1.1.0"
|
|
@@ -1903,18 +1926,18 @@ checksum = "79def32ffcd477db1ff26f76dab9e3a91f0bd42a85ca96577089b24623056f9d"
|
|
|
1903
1926
|
|
|
1904
1927
|
[[package]]
|
|
1905
1928
|
name = "thiserror"
|
|
1906
|
-
version = "2.0.
|
|
1929
|
+
version = "2.0.20"
|
|
1907
1930
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1908
|
-
checksum = "
|
|
1931
|
+
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
1909
1932
|
dependencies = [
|
|
1910
1933
|
"thiserror-impl",
|
|
1911
1934
|
]
|
|
1912
1935
|
|
|
1913
1936
|
[[package]]
|
|
1914
1937
|
name = "thiserror-impl"
|
|
1915
|
-
version = "2.0.
|
|
1938
|
+
version = "2.0.20"
|
|
1916
1939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1917
|
-
checksum = "
|
|
1940
|
+
checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
1918
1941
|
dependencies = [
|
|
1919
1942
|
"proc-macro2",
|
|
1920
1943
|
"quote",
|
|
@@ -1929,9 +1952,9 @@ checksum = "650d82e943da333637be9f1567d33d605e76810a26464edfd7ae74f7ef181e95"
|
|
|
1929
1952
|
|
|
1930
1953
|
[[package]]
|
|
1931
1954
|
name = "tinystr"
|
|
1932
|
-
version = "0.8.
|
|
1955
|
+
version = "0.8.4"
|
|
1933
1956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1934
|
-
checksum = "
|
|
1957
|
+
checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"
|
|
1935
1958
|
dependencies = [
|
|
1936
1959
|
"displaydoc",
|
|
1937
1960
|
"zerovec",
|
|
@@ -2106,9 +2129,9 @@ dependencies = [
|
|
|
2106
2129
|
|
|
2107
2130
|
[[package]]
|
|
2108
2131
|
name = "wasm-bindgen"
|
|
2109
|
-
version = "0.2.
|
|
2132
|
+
version = "0.2.127"
|
|
2110
2133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2111
|
-
checksum = "
|
|
2134
|
+
checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
|
|
2112
2135
|
dependencies = [
|
|
2113
2136
|
"cfg-if",
|
|
2114
2137
|
"once_cell",
|
|
@@ -2119,9 +2142,9 @@ dependencies = [
|
|
|
2119
2142
|
|
|
2120
2143
|
[[package]]
|
|
2121
2144
|
name = "wasm-bindgen-macro"
|
|
2122
|
-
version = "0.2.
|
|
2145
|
+
version = "0.2.127"
|
|
2123
2146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2124
|
-
checksum = "
|
|
2147
|
+
checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
|
|
2125
2148
|
dependencies = [
|
|
2126
2149
|
"quote",
|
|
2127
2150
|
"wasm-bindgen-macro-support",
|
|
@@ -2129,9 +2152,9 @@ dependencies = [
|
|
|
2129
2152
|
|
|
2130
2153
|
[[package]]
|
|
2131
2154
|
name = "wasm-bindgen-macro-support"
|
|
2132
|
-
version = "0.2.
|
|
2155
|
+
version = "0.2.127"
|
|
2133
2156
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2134
|
-
checksum = "
|
|
2157
|
+
checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
|
|
2135
2158
|
dependencies = [
|
|
2136
2159
|
"bumpalo",
|
|
2137
2160
|
"proc-macro2",
|
|
@@ -2142,9 +2165,9 @@ dependencies = [
|
|
|
2142
2165
|
|
|
2143
2166
|
[[package]]
|
|
2144
2167
|
name = "wasm-bindgen-shared"
|
|
2145
|
-
version = "0.2.
|
|
2168
|
+
version = "0.2.127"
|
|
2146
2169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2147
|
-
checksum = "
|
|
2170
|
+
checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
|
|
2148
2171
|
dependencies = [
|
|
2149
2172
|
"unicode-ident",
|
|
2150
2173
|
]
|
|
@@ -2169,9 +2192,9 @@ dependencies = [
|
|
|
2169
2192
|
|
|
2170
2193
|
[[package]]
|
|
2171
2194
|
name = "wincode"
|
|
2172
|
-
version = "0.6.
|
|
2195
|
+
version = "0.6.1"
|
|
2173
2196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2174
|
-
checksum = "
|
|
2197
|
+
checksum = "bfc6339f1ba427bf7ad7c42403b28e524832ba2ddb5eef1bb2cc3b85db6b7b75"
|
|
2175
2198
|
dependencies = [
|
|
2176
2199
|
"pastey",
|
|
2177
2200
|
"proc-macro2",
|
|
@@ -2182,9 +2205,9 @@ dependencies = [
|
|
|
2182
2205
|
|
|
2183
2206
|
[[package]]
|
|
2184
2207
|
name = "wincode-derive"
|
|
2185
|
-
version = "0.5.
|
|
2208
|
+
version = "0.5.1"
|
|
2186
2209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2187
|
-
checksum = "
|
|
2210
|
+
checksum = "11d582d9fc9d813264407a9e16bfa16846ccf15ef032f9bbcd700741bdc00255"
|
|
2188
2211
|
dependencies = [
|
|
2189
2212
|
"darling",
|
|
2190
2213
|
"proc-macro2",
|
|
@@ -2230,9 +2253,9 @@ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
|
2230
2253
|
|
|
2231
2254
|
[[package]]
|
|
2232
2255
|
name = "writeable"
|
|
2233
|
-
version = "0.6.
|
|
2256
|
+
version = "0.6.4"
|
|
2234
2257
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2235
|
-
checksum = "
|
|
2258
|
+
checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
|
|
2236
2259
|
|
|
2237
2260
|
[[package]]
|
|
2238
2261
|
name = "yaml_parser"
|
|
@@ -2240,7 +2263,7 @@ version = "0.3.0"
|
|
|
2240
2263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2241
2264
|
checksum = "71ebb04c72edf699612d543f6c421142527b85ac180156017fa26be49dc0762f"
|
|
2242
2265
|
dependencies = [
|
|
2243
|
-
"rowan",
|
|
2266
|
+
"rowan 0.16.1",
|
|
2244
2267
|
"winnow 0.7.15",
|
|
2245
2268
|
]
|
|
2246
2269
|
|
|
@@ -2269,18 +2292,18 @@ dependencies = [
|
|
|
2269
2292
|
|
|
2270
2293
|
[[package]]
|
|
2271
2294
|
name = "zerocopy"
|
|
2272
|
-
version = "0.8.
|
|
2295
|
+
version = "0.8.56"
|
|
2273
2296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2274
|
-
checksum = "
|
|
2297
|
+
checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
|
|
2275
2298
|
dependencies = [
|
|
2276
2299
|
"zerocopy-derive",
|
|
2277
2300
|
]
|
|
2278
2301
|
|
|
2279
2302
|
[[package]]
|
|
2280
2303
|
name = "zerocopy-derive"
|
|
2281
|
-
version = "0.8.
|
|
2304
|
+
version = "0.8.56"
|
|
2282
2305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2283
|
-
checksum = "
|
|
2306
|
+
checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
|
|
2284
2307
|
dependencies = [
|
|
2285
2308
|
"proc-macro2",
|
|
2286
2309
|
"quote",
|
|
@@ -2310,9 +2333,9 @@ dependencies = [
|
|
|
2310
2333
|
|
|
2311
2334
|
[[package]]
|
|
2312
2335
|
name = "zerotrie"
|
|
2313
|
-
version = "0.2.
|
|
2336
|
+
version = "0.2.5"
|
|
2314
2337
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2315
|
-
checksum = "
|
|
2338
|
+
checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"
|
|
2316
2339
|
dependencies = [
|
|
2317
2340
|
"displaydoc",
|
|
2318
2341
|
"yoke",
|
|
@@ -2321,9 +2344,9 @@ dependencies = [
|
|
|
2321
2344
|
|
|
2322
2345
|
[[package]]
|
|
2323
2346
|
name = "zerovec"
|
|
2324
|
-
version = "0.11.
|
|
2347
|
+
version = "0.11.7"
|
|
2325
2348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2326
|
-
checksum = "
|
|
2349
|
+
checksum = "94b5c6b5976d66c1d703c4fd17d3f5e43c8cedaacf604961b171adc7130896d8"
|
|
2327
2350
|
dependencies = [
|
|
2328
2351
|
"yoke",
|
|
2329
2352
|
"zerofrom",
|
|
@@ -2332,13 +2355,13 @@ dependencies = [
|
|
|
2332
2355
|
|
|
2333
2356
|
[[package]]
|
|
2334
2357
|
name = "zerovec-derive"
|
|
2335
|
-
version = "0.11.
|
|
2358
|
+
version = "0.11.4"
|
|
2336
2359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2337
|
-
checksum = "
|
|
2360
|
+
checksum = "47402523226a02bfe5230160dc3ccc089aa6f6f19e7fcbb4e6f824bbb1b4aa62"
|
|
2338
2361
|
dependencies = [
|
|
2339
2362
|
"proc-macro2",
|
|
2340
2363
|
"quote",
|
|
2341
|
-
"syn
|
|
2364
|
+
"syn 3.0.3",
|
|
2342
2365
|
]
|
|
2343
2366
|
|
|
2344
2367
|
[[package]]
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
[workspace.package]
|
|
2
2
|
edition = "2024"
|
|
3
|
+
# Kept in lockstep with the pinned toolchain in `rust-toolchain.toml`, which is
|
|
4
|
+
# the only version CI builds. Bump both together.
|
|
5
|
+
rust-version = "1.94"
|
|
3
6
|
license = "MIT"
|
|
4
7
|
repository = "https://github.com/jolars/panache"
|
|
5
8
|
homepage = "https://panache.bz"
|
|
@@ -7,8 +10,9 @@ authors = ["Johan Larsson <johan@jolars.co>"]
|
|
|
7
10
|
|
|
8
11
|
[package]
|
|
9
12
|
name = "panache"
|
|
10
|
-
version = "3.
|
|
13
|
+
version = "3.4.0"
|
|
11
14
|
edition.workspace = true
|
|
15
|
+
rust-version.workspace = true
|
|
12
16
|
# `distill_quarto_schema` is a dev-only vendoring bin (src/bin/); keep bare
|
|
13
17
|
# `cargo run` resolving to the CLI for tooling like the pre-commit format hook.
|
|
14
18
|
default-run = "panache"
|
|
@@ -48,8 +52,8 @@ path = "src/main.rs"
|
|
|
48
52
|
required-features = ["cli"]
|
|
49
53
|
|
|
50
54
|
[dependencies]
|
|
51
|
-
panache-formatter = { path = "crates/panache-formatter", version = "0.
|
|
52
|
-
panache-parser = { path = "crates/panache-parser", version = "0.
|
|
55
|
+
panache-formatter = { path = "crates/panache-formatter", version = "0.21.0" }
|
|
56
|
+
panache-parser = { path = "crates/panache-parser", version = "0.26.0", features = [
|
|
53
57
|
"serde",
|
|
54
58
|
"schema",
|
|
55
59
|
] }
|
|
@@ -68,7 +72,7 @@ lsp-types = { version = "0.97.0", optional = true }
|
|
|
68
72
|
num_cpus = { version = "1.17.0", optional = true }
|
|
69
73
|
percent-encoding = { version = "2.3.2", optional = true }
|
|
70
74
|
regex = "1.12.2"
|
|
71
|
-
rowan = "0.
|
|
75
|
+
rowan = "0.17.0"
|
|
72
76
|
salsa = "0.28.0"
|
|
73
77
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
74
78
|
serde_json = "1.0.150"
|
|
@@ -106,7 +110,7 @@ lsp = [
|
|
|
106
110
|
clap = { version = "4.6.1", features = ["derive", "env"] }
|
|
107
111
|
clap_complete = "4.6.0"
|
|
108
112
|
clap_mangen = "0.3.0"
|
|
109
|
-
|
|
113
|
+
clapdown = "0.2.0"
|
|
110
114
|
flate2 = "1.1.9"
|
|
111
115
|
|
|
112
116
|
[package.metadata.deb]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: panache-cli
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.4.0
|
|
4
4
|
Classifier: Development Status :: 5 - Production/Stable
|
|
5
5
|
Classifier: Environment :: Console
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -47,7 +47,7 @@ linters on code blocks.
|
|
|
47
47
|
|
|
48
48
|
Panache is available from several sources:
|
|
49
49
|
|
|
50
|
-
- **crates.io**: `cargo install panache`
|
|
50
|
+
- **crates.io**: `cargo install --locked panache`
|
|
51
51
|
- **Homebrew**: `brew install panache`
|
|
52
52
|
- **npm**: `npm install -g @panache-cli/panache` (or `npx @panache-cli/panache`)
|
|
53
53
|
- **PyPI**: `uv tool install panache-cli`/`pipx install panache-cli`
|
|
@@ -213,12 +213,12 @@ Panache looks for a configuration in:
|
|
|
213
213
|
```toml
|
|
214
214
|
# Markdown flavor and line width
|
|
215
215
|
flavor = "quarto"
|
|
216
|
-
line-width = 80
|
|
217
|
-
line-ending = "auto"
|
|
218
216
|
|
|
219
217
|
# Formatting style
|
|
220
218
|
[format]
|
|
221
219
|
wrap = "reflow"
|
|
220
|
+
line-width = 80
|
|
221
|
+
line-ending = "auto"
|
|
222
222
|
|
|
223
223
|
# External code formatters (opt-in)
|
|
224
224
|
[formatters]
|
|
@@ -21,7 +21,7 @@ linters on code blocks.
|
|
|
21
21
|
|
|
22
22
|
Panache is available from several sources:
|
|
23
23
|
|
|
24
|
-
- **crates.io**: `cargo install panache`
|
|
24
|
+
- **crates.io**: `cargo install --locked panache`
|
|
25
25
|
- **Homebrew**: `brew install panache`
|
|
26
26
|
- **npm**: `npm install -g @panache-cli/panache` (or `npx @panache-cli/panache`)
|
|
27
27
|
- **PyPI**: `uv tool install panache-cli`/`pipx install panache-cli`
|
|
@@ -187,12 +187,12 @@ Panache looks for a configuration in:
|
|
|
187
187
|
```toml
|
|
188
188
|
# Markdown flavor and line width
|
|
189
189
|
flavor = "quarto"
|
|
190
|
-
line-width = 80
|
|
191
|
-
line-ending = "auto"
|
|
192
190
|
|
|
193
191
|
# Formatting style
|
|
194
192
|
[format]
|
|
195
193
|
wrap = "reflow"
|
|
194
|
+
line-width = 80
|
|
195
|
+
line-ending = "auto"
|
|
196
196
|
|
|
197
197
|
# External code formatters (opt-in)
|
|
198
198
|
[formatters]
|