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.
Files changed (309) hide show
  1. {panache_cli-3.0.2 → panache_cli-3.2.0}/Cargo.lock +44 -56
  2. {panache_cli-3.0.2 → panache_cli-3.2.0}/Cargo.toml +4 -4
  3. {panache_cli-3.0.2 → panache_cli-3.2.0}/PKG-INFO +34 -109
  4. {panache_cli-3.0.2 → panache_cli-3.2.0}/README.md +33 -108
  5. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/CHANGELOG.md +19 -0
  6. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/Cargo.toml +3 -3
  7. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/core.rs +62 -2
  8. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/inline.rs +47 -5
  9. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/lists.rs +20 -6
  10. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/CHANGELOG.md +29 -0
  11. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/Cargo.toml +1 -1
  12. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/pandoc_ast.rs +34 -0
  13. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/block_dispatcher.rs +82 -79
  14. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/definition_lists.rs +20 -2
  15. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/fenced_divs.rs +7 -0
  16. panache_cli-3.2.0/crates/panache-parser/src/parser/blocks/figures.rs +39 -0
  17. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/tests/blockquotes.rs +14 -0
  18. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/tests/definition_lists.rs +61 -0
  19. panache_cli-3.2.0/crates/panache-parser/src/parser/blocks/tests/figures.rs +169 -0
  20. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks.rs +2 -0
  21. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/core.rs +224 -8
  22. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/citations.rs +169 -21
  23. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/core.rs +3 -4
  24. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/inline_footnotes.rs +52 -0
  25. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/inline_ir.rs +163 -1
  26. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/container_stack.rs +5 -1
  27. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/continuation.rs +23 -1
  28. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/list_item_buffer.rs +78 -10
  29. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/yaml/model.rs +1 -0
  30. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/yaml/validator.rs +225 -3
  31. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser.rs +54 -50
  32. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/definitions.rs +4 -0
  33. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/inlines.rs +1 -2
  34. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/references.rs +5 -8
  35. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/includes.rs +73 -0
  36. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lib.rs +1 -0
  37. panache_cli-3.2.0/src/linter/external_linters/jolars.rs +470 -0
  38. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/external_linters.rs +44 -0
  39. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/external_linters_sync.rs +48 -0
  40. panache_cli-3.2.0/src/linter/project_index.rs +334 -0
  41. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/citation_keys.rs +1 -3
  42. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/duplicate_references.rs +17 -17
  43. panache_cli-3.2.0/src/linter/rules/duplicate_yaml_anchor.rs +116 -0
  44. panache_cli-3.2.0/src/linter/rules/footnote_after_image.rs +336 -0
  45. panache_cli-3.2.0/src/linter/rules/footnote_swallowed_by_bracket.rs +137 -0
  46. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/heading_hierarchy.rs +2 -12
  47. panache_cli-3.2.0/src/linter/rules/swallowed_list_marker.rs +623 -0
  48. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/undefined_anchor.rs +21 -86
  49. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/undefined_references.rs +65 -112
  50. panache_cli-3.2.0/src/linter/rules/unspaced_citation.rs +219 -0
  51. panache_cli-3.2.0/src/linter/rules/unsupported_metadata_key.rs +283 -0
  52. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/unused_definitions.rs +22 -171
  53. panache_cli-3.2.0/src/linter/rules/unused_yaml_anchor.rs +103 -0
  54. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules.rs +89 -0
  55. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/runner.rs +18 -0
  56. panache_cli-3.2.0/src/linter/yaml_anchors.rs +72 -0
  57. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter.rs +26 -0
  58. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/context.rs +7 -1
  59. panache_cli-3.2.0/src/lsp/conversions.rs +283 -0
  60. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/dispatch.rs +18 -2
  61. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/documents.rs +25 -9
  62. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/global_state.rs +83 -8
  63. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/code_actions.rs +14 -11
  64. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/completion.rs +13 -5
  65. panache_cli-3.2.0/src/lsp/handlers/configuration.rs +69 -0
  66. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/diagnostics.rs +12 -7
  67. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/document_highlight.rs +4 -4
  68. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/document_links.rs +10 -9
  69. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/document_symbols.rs +37 -33
  70. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/file_rename.rs +4 -3
  71. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/file_watcher.rs +1 -1
  72. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/folding_ranges.rs +37 -35
  73. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/footnote_conversion.rs +11 -8
  74. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/formatting.rs +11 -8
  75. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/goto_definition.rs +4 -4
  76. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/heading_link_conversion.rs +3 -2
  77. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/hover.rs +1 -1
  78. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/link_conversion.rs +11 -8
  79. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/linked_editing_range.rs +3 -3
  80. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/list_conversion.rs +27 -18
  81. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/prepare_rename.rs +3 -3
  82. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/references.rs +4 -3
  83. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/rename.rs +10 -7
  84. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/semantic_tokens.rs +11 -9
  85. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/workspace_symbols.rs +8 -6
  86. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/helpers.rs +3 -2
  87. panache_cli-3.2.0/src/lsp/line_index.rs +341 -0
  88. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/navigation.rs +3 -2
  89. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/testing.rs +37 -0
  90. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp.rs +5 -3
  91. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/main.rs +517 -143
  92. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/metadata/project.rs +19 -9
  93. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/metadata.rs +22 -0
  94. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/salsa.rs +674 -127
  95. panache_cli-3.2.0/src/vfs.rs +242 -0
  96. panache_cli-3.0.2/crates/panache-parser/src/parser/blocks/figures.rs +0 -36
  97. panache_cli-3.0.2/src/lsp/conversions.rs +0 -667
  98. panache_cli-3.0.2/src/lsp/handlers/configuration.rs +0 -31
  99. {panache_cli-3.0.2 → panache_cli-3.2.0}/LICENSE +0 -0
  100. {panache_cli-3.0.2 → panache_cli-3.2.0}/assets/quarto-schema/schema.json +0 -0
  101. {panache_cli-3.0.2 → panache_cli-3.2.0}/build.rs +0 -0
  102. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/README.md +0 -0
  103. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/config.rs +0 -0
  104. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/directives.rs +0 -0
  105. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/blockquotes.rs +0 -0
  106. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/code_blocks.rs +0 -0
  107. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/fenced_divs.rs +0 -0
  108. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/hashpipe.rs +0 -0
  109. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/headings.rs +0 -0
  110. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/indent_utils.rs +0 -0
  111. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/inline_layout.rs +0 -0
  112. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/math/STYLE.md +0 -0
  113. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/math/linebreak.rs +0 -0
  114. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/math/operators.rs +0 -0
  115. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/math/render.rs +0 -0
  116. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/math.rs +0 -0
  117. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/metadata.rs +0 -0
  118. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/paragraphs.rs +0 -0
  119. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/sentence_wrap.rs +0 -0
  120. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/shortcodes.rs +0 -0
  121. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/smart.rs +0 -0
  122. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/tables.rs +0 -0
  123. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/utils.rs +0 -0
  124. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/yaml/STYLE.md +0 -0
  125. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/yaml/block_map.rs +0 -0
  126. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/yaml/block_sequence.rs +0 -0
  127. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/yaml/document.rs +0 -0
  128. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/yaml/flow.rs +0 -0
  129. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/yaml/options.rs +0 -0
  130. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/yaml/scalar.rs +0 -0
  131. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter/yaml.rs +0 -0
  132. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/formatter.rs +0 -0
  133. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/lib.rs +0 -0
  134. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/parser.rs +0 -0
  135. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/syntax.rs +0 -0
  136. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/utils.rs +0 -0
  137. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-formatter/src/yaml_engine.rs +0 -0
  138. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/README.md +0 -0
  139. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/build.rs +0 -0
  140. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/grid_layout.rs +0 -0
  141. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/lib.rs +0 -0
  142. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/options.rs +0 -0
  143. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/admonitions.rs +0 -0
  144. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/blockquotes.rs +0 -0
  145. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/code_blocks.rs +0 -0
  146. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/container_prefix.rs +0 -0
  147. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/headings.rs +0 -0
  148. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/horizontal_rules.rs +0 -0
  149. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/html_blocks.rs +0 -0
  150. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/indented_code.rs +0 -0
  151. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/latex_envs.rs +0 -0
  152. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/line_blocks.rs +0 -0
  153. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/lists.rs +0 -0
  154. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/metadata.rs +0 -0
  155. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/myst_directives.rs +0 -0
  156. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/myst_targets.rs +0 -0
  157. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/paragraphs.rs +0 -0
  158. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/raw_blocks.rs +0 -0
  159. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/reference_links.rs +0 -0
  160. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/tables.rs +0 -0
  161. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/tests/blanklines.rs +0 -0
  162. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/tests/code_blocks.rs +0 -0
  163. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/tests/headings.rs +0 -0
  164. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/tests/helpers.rs +0 -0
  165. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/tests/lists.rs +0 -0
  166. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/tests/losslessness.rs +0 -0
  167. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/blocks/tests/metadata_guards.rs +0 -0
  168. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/diagnostics.rs +0 -0
  169. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/bookdown.rs +0 -0
  170. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/bracketed_spans.rs +0 -0
  171. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/code_spans.rs +0 -0
  172. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/emoji.rs +0 -0
  173. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/escapes.rs +0 -0
  174. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/inline_executable.rs +0 -0
  175. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/inline_html.rs +0 -0
  176. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/latex.rs +0 -0
  177. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/links.rs +0 -0
  178. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/mark.rs +0 -0
  179. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/math.rs +0 -0
  180. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/myst_roles.rs +0 -0
  181. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/myst_substitutions.rs +0 -0
  182. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/native_spans.rs +0 -0
  183. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/raw_inline.rs +0 -0
  184. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/refdef_map.rs +0 -0
  185. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/shortcodes.rs +0 -0
  186. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/sink.rs +0 -0
  187. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/strikeout.rs +0 -0
  188. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/subscript.rs +0 -0
  189. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/superscript.rs +0 -0
  190. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/svelte.rs +0 -0
  191. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/tests.rs +0 -0
  192. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/uri-schemes.csv +0 -0
  193. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines/wikilinks.rs +0 -0
  194. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/inlines.rs +0 -0
  195. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/math.rs +0 -0
  196. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/attributes.rs +0 -0
  197. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/chunk_options.rs +0 -0
  198. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/helpers.rs +0 -0
  199. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/inline_emission.rs +0 -0
  200. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/marker_utils.rs +0 -0
  201. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/text_buffer.rs +0 -0
  202. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/tree_copy.rs +0 -0
  203. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils/yaml_regions.rs +0 -0
  204. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/utils.rs +0 -0
  205. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/yaml/cooking.rs +0 -0
  206. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/yaml/events.rs +0 -0
  207. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/yaml/parser.rs +0 -0
  208. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/yaml/profile.rs +0 -0
  209. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/yaml/scanner.rs +0 -0
  210. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/parser/yaml.rs +0 -0
  211. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/range_utils.rs +0 -0
  212. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/alerts.rs +0 -0
  213. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/ast.rs +0 -0
  214. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/attributes.rs +0 -0
  215. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/block_quotes.rs +0 -0
  216. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/blocks.rs +0 -0
  217. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/chunk_options.rs +0 -0
  218. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/citations.rs +0 -0
  219. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/code_blocks.rs +0 -0
  220. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/crossrefs.rs +0 -0
  221. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/fenced_divs.rs +0 -0
  222. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/headings.rs +0 -0
  223. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/kind.rs +0 -0
  224. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/links.rs +0 -0
  225. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/lists.rs +0 -0
  226. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/math.rs +0 -0
  227. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/myst.rs +0 -0
  228. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/raw_tex.rs +0 -0
  229. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/shortcodes.rs +0 -0
  230. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/tables.rs +0 -0
  231. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/yaml.rs +0 -0
  232. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax/yaml_ast.rs +0 -0
  233. {panache_cli-3.0.2 → panache_cli-3.2.0}/crates/panache-parser/src/syntax.rs +0 -0
  234. {panache_cli-3.0.2 → panache_cli-3.2.0}/pyproject.toml +0 -0
  235. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/bib/bibtex.rs +0 -0
  236. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/bib/csl_json.rs +0 -0
  237. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/bib/csl_yaml.rs +0 -0
  238. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/bib/index.rs +0 -0
  239. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/bib/preview.rs +0 -0
  240. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/bib/ris.rs +0 -0
  241. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/bib.rs +0 -0
  242. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/bin/distill_quarto_schema.rs +0 -0
  243. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/cache.rs +0 -0
  244. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/cli.rs +0 -0
  245. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/config/formatter_presets.rs +0 -0
  246. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/config/types/schema_helpers.rs +0 -0
  247. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/config/types.rs +0 -0
  248. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/config.rs +0 -0
  249. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/diagnostic_renderer.rs +0 -0
  250. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/directives.rs +0 -0
  251. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/external_formatters_common.rs +0 -0
  252. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/external_formatters_sync.rs +0 -0
  253. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/external_tools_common.rs +0 -0
  254. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/formatter.rs +0 -0
  255. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/code_block_collector.rs +0 -0
  256. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/diagnostics.rs +0 -0
  257. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/external_linters/clippy.rs +0 -0
  258. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/external_linters/eslint.rs +0 -0
  259. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/external_linters/jarl.rs +0 -0
  260. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/external_linters/ruff.rs +0 -0
  261. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/external_linters/shellcheck.rs +0 -0
  262. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/external_linters/staticcheck.rs +0 -0
  263. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/fuzzy.rs +0 -0
  264. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/index.rs +0 -0
  265. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/metadata_diagnostics.rs +0 -0
  266. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/offsets.rs +0 -0
  267. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/quarto_schema/distill.rs +0 -0
  268. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/quarto_schema/interp.rs +0 -0
  269. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/quarto_schema/model.rs +0 -0
  270. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/quarto_schema/report.rs +0 -0
  271. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/quarto_schema/value.rs +0 -0
  272. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/quarto_schema.rs +0 -0
  273. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/adjacent_footnote_refs.rs +0 -0
  274. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/chunk_label_spaces.rs +0 -0
  275. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/citation_nonbreaking_space.rs +0 -0
  276. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/consumer_divergence.rs +0 -0
  277. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/crossref_as_link_target.rs +0 -0
  278. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/emoji_aliases.rs +0 -0
  279. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/empty_list_item.rs +0 -0
  280. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/empty_values.rs +0 -0
  281. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/figure_crossref_captions.rs +0 -0
  282. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/footnote_ref_in_footnote_def.rs +0 -0
  283. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/heading_eaten_attrs.rs +0 -0
  284. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/heading_strip_comments_residue.rs +0 -0
  285. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/html_entities.rs +0 -0
  286. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/link_text_is_url.rs +0 -0
  287. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/math_content.rs +0 -0
  288. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/missing_chunk_labels.rs +0 -0
  289. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/quarto_schema.rs +0 -0
  290. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/rules/stray_fenced_div_markers.rs +0 -0
  291. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/linter/yaml_resolve.rs +0 -0
  292. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/config.rs +0 -0
  293. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/file_operations.rs +0 -0
  294. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/shortcode_args.rs +0 -0
  295. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers/workspace_folders.rs +0 -0
  296. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/handlers.rs +0 -0
  297. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/symbols.rs +0 -0
  298. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/task_pool.rs +0 -0
  299. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/lsp/uri_ext.rs +0 -0
  300. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/metadata/bibliography.rs +0 -0
  301. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/metadata/citations.rs +0 -0
  302. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/metadata/references.rs +0 -0
  303. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/metadata/yaml.rs +0 -0
  304. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/parser.rs +0 -0
  305. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/range_utils.rs +0 -0
  306. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/syntax.rs +0 -0
  307. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/utils.rs +0 -0
  308. {panache_cli-3.0.2 → panache_cli-3.2.0}/src/yaml_engine.rs +0 -0
  309. {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.4"
27
+ version = "1.1.5"
28
28
  source = "registry+https://github.com/rust-lang/crates.io-index"
29
- checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
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.4"
192
+ version = "4.6.5"
193
193
  source = "registry+https://github.com/rust-lang/crates.io-index"
194
- checksum = "d91e0c145792ef73a6ad36d27c75ac09f1832222a3c209689d90f534685ee5b7"
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.2"
211
+ version = "4.6.5"
212
212
  source = "registry+https://github.com/rust-lang/crates.io-index"
213
- checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
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.0"
369
+ version = "2.11.1"
370
370
  source = "registry+https://github.com/rust-lang/crates.io-index"
371
- checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
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.18.0"
525
+ version = "0.19.0"
526
526
  source = "registry+https://github.com/rust-lang/crates.io-index"
527
- checksum = "e1e1dacd0d2082dfcf1351c4bdd566bbe89a2b263235a2b50058f1e130a47277"
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.19"
657
+ version = "0.4.20"
658
658
  source = "registry+https://github.com/rust-lang/crates.io-index"
659
- checksum = "e47d37d2ae4464254884b60ab7071be2b876a9c35b696bd018ddcc76847309cd"
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.31"
817
+ version = "0.4.33"
818
818
  source = "registry+https://github.com/rust-lang/crates.io-index"
819
- checksum = "7f8a7b8211e695a1d0cd91cace480d4d0bd57667ab10277cc412c5f7f4884f83"
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.2"
856
+ version = "0.10.3"
857
857
  source = "registry+https://github.com/rust-lang/crates.io-index"
858
- checksum = "4b719c59241cfaac1042a6d26787e28ed7ee4a4e21a5a907786f54222d1b0062"
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.48.5"
930
+ version = "0.49.5"
934
931
  source = "registry+https://github.com/rust-lang/crates.io-index"
935
- checksum = "f05a6cff806294a7699d48761d4ae2bdebab7fa2eef05e4a0b83320f0ff46901"
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.48.5"
959
+ version = "0.49.5"
963
960
  source = "registry+https://github.com/rust-lang/crates.io-index"
964
- checksum = "84708dd3f6c5327478a96f37378adb27deed6a626cf84d19de780d9e8ae84b17"
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.48.5"
968
+ version = "0.49.5"
972
969
  source = "registry+https://github.com/rust-lang/crates.io-index"
973
- checksum = "fd8c04ab4ce60e42c4e302d3bd9d184652bb56f212495d2eea23573bcbf72556"
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.18"
994
+ version = "0.1.19"
998
995
  source = "registry+https://github.com/rust-lang/crates.io-index"
999
- checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652"
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.2"
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.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.2"
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.22.2"
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.7.1"
1417
+ version = "0.8.0"
1430
1418
  source = "registry+https://github.com/rust-lang/crates.io-index"
1431
- checksum = "3b8bc0583825170e3f560701d966dc2f0e3a16946da371e37d30d3ad7207fb7e"
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.48.5"
1507
+ version = "0.49.5"
1520
1508
  source = "registry+https://github.com/rust-lang/crates.io-index"
1521
- checksum = "980e77f5cfffc592c0e7dfb6d20770a0b96a6ab94d403de7454ed9799505e4ba"
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.16"
1536
+ version = "0.4.18"
1549
1537
  source = "registry+https://github.com/rust-lang/crates.io-index"
1550
- checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
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.1"
1602
+ version = "0.28.2"
1615
1603
  source = "registry+https://github.com/rust-lang/crates.io-index"
1616
- checksum = "a14fdadbf856222e731756d7fdbdf193a7abf8fdab009bb45f48671a42719a84"
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.1"
1628
+ version = "0.28.2"
1641
1629
  source = "registry+https://github.com/rust-lang/crates.io-index"
1642
- checksum = "50d7dc08ba69b9aedfa61dfc4d65548ae42c0d8b90bbd62cd121776920841bcf"
1630
+ checksum = "85f4b7d4405540bbd6d4ffa52d4322d983f3781954d3073067ac1bdb028459b3"
1643
1631
 
1644
1632
  [[package]]
1645
1633
  name = "salsa-macros"
1646
- version = "0.28.1"
1634
+ version = "0.28.2"
1647
1635
  source = "registry+https://github.com/rust-lang/crates.io-index"
1648
- checksum = "ec5c48c5a4a53a6e2be9762f56566f1325d4394c011c00b3ea86ba2d13411e71"
1636
+ checksum = "445be2bfbb2f67cb663225ecd7bc5a25370c0250fca30f9d8cbad9a913650370"
1649
1637
  dependencies = [
1650
1638
  "proc-macro2",
1651
1639
  "quote",
1652
- "syn 2.0.119",
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.1"
1771
+ version = "3.1.2"
1784
1772
  source = "registry+https://github.com/rust-lang/crates.io-index"
1785
- checksum = "e6505efef05804732ed8a3f2d4f279429eb485bd69d5b0cc6b19cc02005cda16"
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.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.2"
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.2" }
52
- panache-parser = { path = "crates/panache-parser", version = "0.22.2", features = [
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.48.5", default-features = false }
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.2
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
  [![PyPI
37
37
  version](https://badge.fury.io/py/panache-cli.svg?icon=si%3Apython)](https://badge.fury.io/py/panache-cli)
38
- [![npm version](https://badge.fury.io/js/@panache-cli%2Fpanache.svg?icon=si%3Anpm)](https://badge.fury.io/js/@panache-cli%2Fpanache)
38
+ [![npm
39
+ version](https://badge.fury.io/js/@panache-cli%2Fpanache.svg?icon=si%3Anpm)](https://badge.fury.io/js/@panache-cli%2Fpanache)
39
40
  [![codecov](https://codecov.io/gh/jolars/panache/graph/badge.svg?token=uaBVOBfILv)](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
- ### Homebrew
48
-
49
- Panache is available from Homebrew on macOS and Linux:
50
-
51
- ```bash
52
- brew install panache
53
- ```
54
-
55
- ### From crates.io
56
-
57
- If you have Rust installed, the easiest way is likely to install from
58
- [crates.io](https://crates.io/crates/panache):
59
-
60
- ```bash
61
- cargo install panache
62
- ```
63
-
64
- ### Pre-built Binaries
65
-
66
- Alternatively, you can install pre-built binary packages from the [releases
67
- page](https://github.com/jolars/panache/releases) for Linux, macOS, and Windows.
68
- For Linux, packages are available for generic distributions (tarballs) as well
69
- as Debian/Ubuntu (`.deb`) and Fedora/RHEL/openSUSE (`.rpm`).
70
-
71
- If you prefer a one-liner installer that picks the right release artifact for
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://raw.githubusercontent.com/jolars/panache/refs/heads/main/scripts/panache-installer.sh | sh
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://raw.githubusercontent.com/jolars/panache/refs/heads/main/scripts/panache-installer.ps1 | iex"
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
- ### NixOS
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
- This presumes you have a working and up-to-date Rust toolchain (stable, 2024
165
- edition) installed. You also need to have `cargo` in your `PATH` if you want to
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
  [![PyPI
11
11
  version](https://badge.fury.io/py/panache-cli.svg?icon=si%3Apython)](https://badge.fury.io/py/panache-cli)
12
- [![npm version](https://badge.fury.io/js/@panache-cli%2Fpanache.svg?icon=si%3Anpm)](https://badge.fury.io/js/@panache-cli%2Fpanache)
12
+ [![npm
13
+ version](https://badge.fury.io/js/@panache-cli%2Fpanache.svg?icon=si%3Anpm)](https://badge.fury.io/js/@panache-cli%2Fpanache)
13
14
  [![codecov](https://codecov.io/gh/jolars/panache/graph/badge.svg?token=uaBVOBfILv)](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
- ### Homebrew
22
-
23
- Panache is available from Homebrew on macOS and Linux:
24
-
25
- ```bash
26
- brew install panache
27
- ```
28
-
29
- ### From crates.io
30
-
31
- If you have Rust installed, the easiest way is likely to install from
32
- [crates.io](https://crates.io/crates/panache):
33
-
34
- ```bash
35
- cargo install panache
36
- ```
37
-
38
- ### Pre-built Binaries
39
-
40
- Alternatively, you can install pre-built binary packages from the [releases
41
- page](https://github.com/jolars/panache/releases) for Linux, macOS, and Windows.
42
- For Linux, packages are available for generic distributions (tarballs) as well
43
- as Debian/Ubuntu (`.deb`) and Fedora/RHEL/openSUSE (`.rpm`).
44
-
45
- If you prefer a one-liner installer that picks the right release artifact for
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://raw.githubusercontent.com/jolars/panache/refs/heads/main/scripts/panache-installer.sh | sh
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://raw.githubusercontent.com/jolars/panache/refs/heads/main/scripts/panache-installer.ps1 | iex"
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
- ### NixOS
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
- This presumes you have a working and up-to-date Rust toolchain (stable, 2024
139
- edition) installed. You also need to have `cargo` in your `PATH` if you want to
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