panache-cli 3.1.0__tar.gz → 3.3.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 (311) hide show
  1. {panache_cli-3.1.0 → panache_cli-3.3.0}/Cargo.lock +65 -55
  2. {panache_cli-3.1.0 → panache_cli-3.3.0}/Cargo.toml +5 -5
  3. {panache_cli-3.1.0 → panache_cli-3.3.0}/PKG-INFO +34 -109
  4. {panache_cli-3.1.0 → panache_cli-3.3.0}/README.md +33 -108
  5. {panache_cli-3.1.0 → panache_cli-3.3.0}/build.rs +15 -17
  6. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/CHANGELOG.md +21 -0
  7. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/Cargo.toml +3 -3
  8. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/code_blocks.rs +73 -7
  9. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/core.rs +73 -6
  10. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/lists.rs +28 -14
  11. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/CHANGELOG.md +47 -0
  12. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/Cargo.toml +2 -2
  13. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/pandoc_ast.rs +826 -84
  14. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/block_dispatcher.rs +158 -118
  15. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/blockquotes.rs +14 -1
  16. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/code_blocks.rs +55 -47
  17. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/container_prefix.rs +286 -15
  18. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/definition_lists.rs +17 -13
  19. panache_cli-3.3.0/crates/panache-parser/src/parser/blocks/figures.rs +39 -0
  20. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/headings.rs +21 -0
  21. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/html_blocks.rs +9 -2
  22. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/line_blocks.rs +114 -6
  23. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/metadata.rs +1 -1
  24. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/paragraphs.rs +29 -1
  25. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/tables.rs +7 -4
  26. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/tests/blockquotes.rs +427 -0
  27. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/tests/code_blocks.rs +80 -0
  28. panache_cli-3.3.0/crates/panache-parser/src/parser/blocks/tests/content_containers.rs +109 -0
  29. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/tests/definition_lists.rs +78 -0
  30. panache_cli-3.3.0/crates/panache-parser/src/parser/blocks/tests/figures.rs +169 -0
  31. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/tests/headings.rs +441 -0
  32. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/tests/lists.rs +18 -0
  33. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/tests/losslessness.rs +331 -2
  34. panache_cli-3.3.0/crates/panache-parser/src/parser/blocks/tests/tables.rs +140 -0
  35. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks.rs +6 -0
  36. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/core.rs +944 -131
  37. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/core.rs +2 -7
  38. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/inline_footnotes.rs +52 -0
  39. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/math.rs +49 -58
  40. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/sink.rs +45 -18
  41. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/utils/attributes.rs +188 -3
  42. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/utils/container_stack.rs +53 -2
  43. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/utils/list_item_buffer.rs +49 -35
  44. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/utils/text_buffer.rs +140 -143
  45. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/yaml/validator.rs +131 -3
  46. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser.rs +3 -3
  47. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/attributes.rs +88 -11
  48. panache_cli-3.3.0/crates/panache-parser/src/syntax/citations.rs +125 -0
  49. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/definitions.rs +4 -0
  50. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/cli.rs +19 -14
  51. panache_cli-3.3.0/src/linter/external_linters/jolars.rs +739 -0
  52. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/external_linters.rs +70 -0
  53. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/external_linters_sync.rs +80 -0
  54. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/citation_keys.rs +52 -7
  55. panache_cli-3.3.0/src/linter/rules/footnote_after_image.rs +336 -0
  56. panache_cli-3.3.0/src/linter/rules/footnote_swallowed_by_bracket.rs +137 -0
  57. panache_cli-3.3.0/src/linter/rules/reversed_footnote_marker.rs +284 -0
  58. panache_cli-3.3.0/src/linter/rules/swallowed_list_marker.rs +616 -0
  59. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/undefined_references.rs +19 -0
  60. panache_cli-3.3.0/src/linter/rules/unsupported_metadata_key.rs +283 -0
  61. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules.rs +20 -0
  62. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter.rs +5 -0
  63. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/documents.rs +3 -4
  64. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/main.rs +182 -13
  65. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/salsa.rs +34 -2
  66. panache_cli-3.1.0/crates/panache-parser/src/parser/blocks/figures.rs +0 -36
  67. panache_cli-3.1.0/crates/panache-parser/src/syntax/citations.rs +0 -52
  68. {panache_cli-3.1.0 → panache_cli-3.3.0}/LICENSE +0 -0
  69. {panache_cli-3.1.0 → panache_cli-3.3.0}/assets/quarto-schema/schema.json +0 -0
  70. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/README.md +0 -0
  71. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/config.rs +0 -0
  72. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/directives.rs +0 -0
  73. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/blockquotes.rs +0 -0
  74. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/fenced_divs.rs +0 -0
  75. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/hashpipe.rs +0 -0
  76. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/headings.rs +0 -0
  77. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/indent_utils.rs +0 -0
  78. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/inline.rs +0 -0
  79. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/inline_layout.rs +0 -0
  80. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/math/STYLE.md +0 -0
  81. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/math/linebreak.rs +0 -0
  82. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/math/operators.rs +0 -0
  83. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/math/render.rs +0 -0
  84. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/math.rs +0 -0
  85. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/metadata.rs +0 -0
  86. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/paragraphs.rs +0 -0
  87. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/sentence_wrap.rs +0 -0
  88. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/shortcodes.rs +0 -0
  89. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/smart.rs +0 -0
  90. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/tables.rs +0 -0
  91. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/utils.rs +0 -0
  92. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/yaml/STYLE.md +0 -0
  93. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/yaml/block_map.rs +0 -0
  94. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/yaml/block_sequence.rs +0 -0
  95. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/yaml/document.rs +0 -0
  96. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/yaml/flow.rs +0 -0
  97. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/yaml/options.rs +0 -0
  98. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/yaml/scalar.rs +0 -0
  99. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter/yaml.rs +0 -0
  100. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/formatter.rs +0 -0
  101. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/lib.rs +0 -0
  102. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/parser.rs +0 -0
  103. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/syntax.rs +0 -0
  104. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/utils.rs +0 -0
  105. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-formatter/src/yaml_engine.rs +0 -0
  106. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/README.md +0 -0
  107. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/build.rs +0 -0
  108. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/grid_layout.rs +0 -0
  109. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/lib.rs +0 -0
  110. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/options.rs +0 -0
  111. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/admonitions.rs +0 -0
  112. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/fenced_divs.rs +0 -0
  113. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/horizontal_rules.rs +0 -0
  114. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/indented_code.rs +0 -0
  115. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/latex_envs.rs +0 -0
  116. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/lists.rs +0 -0
  117. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/myst_directives.rs +0 -0
  118. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/myst_targets.rs +0 -0
  119. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/raw_blocks.rs +0 -0
  120. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/reference_links.rs +0 -0
  121. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/tests/blanklines.rs +0 -0
  122. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/tests/helpers.rs +0 -0
  123. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/blocks/tests/metadata_guards.rs +0 -0
  124. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/diagnostics.rs +0 -0
  125. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/bookdown.rs +0 -0
  126. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/bracketed_spans.rs +0 -0
  127. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/citations.rs +0 -0
  128. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/code_spans.rs +0 -0
  129. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/emoji.rs +0 -0
  130. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/escapes.rs +0 -0
  131. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/inline_executable.rs +0 -0
  132. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/inline_html.rs +0 -0
  133. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/inline_ir.rs +0 -0
  134. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/latex.rs +0 -0
  135. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/links.rs +0 -0
  136. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/mark.rs +0 -0
  137. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/myst_roles.rs +0 -0
  138. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/myst_substitutions.rs +0 -0
  139. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/native_spans.rs +0 -0
  140. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/raw_inline.rs +0 -0
  141. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/refdef_map.rs +0 -0
  142. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/shortcodes.rs +0 -0
  143. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/strikeout.rs +0 -0
  144. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/subscript.rs +0 -0
  145. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/superscript.rs +0 -0
  146. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/svelte.rs +0 -0
  147. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/tests.rs +0 -0
  148. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/uri-schemes.csv +0 -0
  149. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines/wikilinks.rs +0 -0
  150. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/inlines.rs +0 -0
  151. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/math.rs +0 -0
  152. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/utils/chunk_options.rs +0 -0
  153. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/utils/continuation.rs +0 -0
  154. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/utils/helpers.rs +0 -0
  155. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/utils/inline_emission.rs +0 -0
  156. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/utils/marker_utils.rs +0 -0
  157. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/utils/tree_copy.rs +0 -0
  158. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/utils/yaml_regions.rs +0 -0
  159. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/utils.rs +0 -0
  160. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/yaml/cooking.rs +0 -0
  161. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/yaml/events.rs +0 -0
  162. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/yaml/model.rs +0 -0
  163. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/yaml/parser.rs +0 -0
  164. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/yaml/profile.rs +0 -0
  165. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/yaml/scanner.rs +0 -0
  166. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/parser/yaml.rs +0 -0
  167. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/range_utils.rs +0 -0
  168. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/alerts.rs +0 -0
  169. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/ast.rs +0 -0
  170. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/block_quotes.rs +0 -0
  171. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/blocks.rs +0 -0
  172. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/chunk_options.rs +0 -0
  173. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/code_blocks.rs +0 -0
  174. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/crossrefs.rs +0 -0
  175. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/fenced_divs.rs +0 -0
  176. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/headings.rs +0 -0
  177. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/inlines.rs +0 -0
  178. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/kind.rs +0 -0
  179. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/links.rs +0 -0
  180. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/lists.rs +0 -0
  181. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/math.rs +0 -0
  182. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/myst.rs +0 -0
  183. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/raw_tex.rs +0 -0
  184. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/references.rs +0 -0
  185. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/shortcodes.rs +0 -0
  186. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/tables.rs +0 -0
  187. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/yaml.rs +0 -0
  188. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax/yaml_ast.rs +0 -0
  189. {panache_cli-3.1.0 → panache_cli-3.3.0}/crates/panache-parser/src/syntax.rs +0 -0
  190. {panache_cli-3.1.0 → panache_cli-3.3.0}/pyproject.toml +0 -0
  191. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/bib/bibtex.rs +0 -0
  192. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/bib/csl_json.rs +0 -0
  193. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/bib/csl_yaml.rs +0 -0
  194. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/bib/index.rs +0 -0
  195. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/bib/preview.rs +0 -0
  196. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/bib/ris.rs +0 -0
  197. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/bib.rs +0 -0
  198. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/bin/distill_quarto_schema.rs +0 -0
  199. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/cache.rs +0 -0
  200. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/config/formatter_presets.rs +0 -0
  201. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/config/types/schema_helpers.rs +0 -0
  202. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/config/types.rs +0 -0
  203. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/config.rs +0 -0
  204. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/diagnostic_renderer.rs +0 -0
  205. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/directives.rs +0 -0
  206. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/external_formatters_common.rs +0 -0
  207. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/external_formatters_sync.rs +0 -0
  208. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/external_tools_common.rs +0 -0
  209. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/formatter.rs +0 -0
  210. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/includes.rs +0 -0
  211. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lib.rs +0 -0
  212. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/code_block_collector.rs +0 -0
  213. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/diagnostics.rs +0 -0
  214. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/external_linters/clippy.rs +0 -0
  215. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/external_linters/eslint.rs +0 -0
  216. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/external_linters/jarl.rs +0 -0
  217. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/external_linters/ruff.rs +0 -0
  218. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/external_linters/shellcheck.rs +0 -0
  219. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/external_linters/staticcheck.rs +0 -0
  220. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/fuzzy.rs +0 -0
  221. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/index.rs +0 -0
  222. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/metadata_diagnostics.rs +0 -0
  223. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/offsets.rs +0 -0
  224. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/project_index.rs +0 -0
  225. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/quarto_schema/distill.rs +0 -0
  226. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/quarto_schema/interp.rs +0 -0
  227. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/quarto_schema/model.rs +0 -0
  228. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/quarto_schema/report.rs +0 -0
  229. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/quarto_schema/value.rs +0 -0
  230. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/quarto_schema.rs +0 -0
  231. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/adjacent_footnote_refs.rs +0 -0
  232. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/chunk_label_spaces.rs +0 -0
  233. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/citation_nonbreaking_space.rs +0 -0
  234. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/consumer_divergence.rs +0 -0
  235. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/crossref_as_link_target.rs +0 -0
  236. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/duplicate_references.rs +0 -0
  237. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/duplicate_yaml_anchor.rs +0 -0
  238. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/emoji_aliases.rs +0 -0
  239. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/empty_list_item.rs +0 -0
  240. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/empty_values.rs +0 -0
  241. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/figure_crossref_captions.rs +0 -0
  242. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/footnote_ref_in_footnote_def.rs +0 -0
  243. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/heading_eaten_attrs.rs +0 -0
  244. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/heading_hierarchy.rs +0 -0
  245. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/heading_strip_comments_residue.rs +0 -0
  246. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/html_entities.rs +0 -0
  247. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/link_text_is_url.rs +0 -0
  248. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/math_content.rs +0 -0
  249. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/missing_chunk_labels.rs +0 -0
  250. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/quarto_schema.rs +0 -0
  251. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/stray_fenced_div_markers.rs +0 -0
  252. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/undefined_anchor.rs +0 -0
  253. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/unspaced_citation.rs +0 -0
  254. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/unused_definitions.rs +0 -0
  255. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/rules/unused_yaml_anchor.rs +0 -0
  256. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/runner.rs +0 -0
  257. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/yaml_anchors.rs +0 -0
  258. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/linter/yaml_resolve.rs +0 -0
  259. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/config.rs +0 -0
  260. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/context.rs +0 -0
  261. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/conversions.rs +0 -0
  262. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/dispatch.rs +0 -0
  263. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/global_state.rs +0 -0
  264. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/code_actions.rs +0 -0
  265. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/completion.rs +0 -0
  266. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/configuration.rs +0 -0
  267. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/diagnostics.rs +0 -0
  268. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/document_highlight.rs +0 -0
  269. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/document_links.rs +0 -0
  270. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/document_symbols.rs +0 -0
  271. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/file_operations.rs +0 -0
  272. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/file_rename.rs +0 -0
  273. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/file_watcher.rs +0 -0
  274. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/folding_ranges.rs +0 -0
  275. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/footnote_conversion.rs +0 -0
  276. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/formatting.rs +0 -0
  277. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/goto_definition.rs +0 -0
  278. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/heading_link_conversion.rs +0 -0
  279. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/hover.rs +0 -0
  280. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/link_conversion.rs +0 -0
  281. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/linked_editing_range.rs +0 -0
  282. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/list_conversion.rs +0 -0
  283. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/prepare_rename.rs +0 -0
  284. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/references.rs +0 -0
  285. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/rename.rs +0 -0
  286. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/semantic_tokens.rs +0 -0
  287. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/shortcode_args.rs +0 -0
  288. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/workspace_folders.rs +0 -0
  289. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers/workspace_symbols.rs +0 -0
  290. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/handlers.rs +0 -0
  291. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/helpers.rs +0 -0
  292. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/line_index.rs +0 -0
  293. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/navigation.rs +0 -0
  294. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/symbols.rs +0 -0
  295. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/task_pool.rs +0 -0
  296. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/testing.rs +0 -0
  297. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp/uri_ext.rs +0 -0
  298. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/lsp.rs +0 -0
  299. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/metadata/bibliography.rs +0 -0
  300. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/metadata/citations.rs +0 -0
  301. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/metadata/project.rs +0 -0
  302. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/metadata/references.rs +0 -0
  303. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/metadata/yaml.rs +0 -0
  304. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/metadata.rs +0 -0
  305. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/parser.rs +0 -0
  306. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/range_utils.rs +0 -0
  307. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/syntax.rs +0 -0
  308. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/utils.rs +0 -0
  309. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/vfs.rs +0 -0
  310. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/yaml_engine.rs +0 -0
  311. {panache_cli-3.1.0 → panache_cli-3.3.0}/src/yaml_regions.rs +0 -0
@@ -189,28 +189,19 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
189
189
 
190
190
  [[package]]
191
191
  name = "clap"
192
- version = "4.6.5"
192
+ version = "4.6.6"
193
193
  source = "registry+https://github.com/rust-lang/crates.io-index"
194
- checksum = "301b56658598e48f3648647ac6fc887be7e7108eddfa4e9b63fcf3ec58c0cadf"
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.5"
202
+ version = "4.6.6"
212
203
  source = "registry+https://github.com/rust-lang/crates.io-index"
213
- checksum = "94a65403d1a1bd28f7dc68eb8506e8874808ee5eecb59298de588e2e1407a078"
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.8"
214
+ version = "4.6.9"
224
215
  source = "registry+https://github.com/rust-lang/crates.io-index"
225
- checksum = "b1f84a88507dbd05c695f2cb5e8558e747179134005e9893882dec964190ed89"
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.0"
241
+ version = "0.3.2"
251
242
  source = "registry+https://github.com/rust-lang/crates.io-index"
252
- checksum = "d82842b45bf9f6a3be090dd860095ac30728042c08e0d6261ca7259b5d850f07"
243
+ checksum = "c630ddc90572b3d9abd3f887f0007b4e048faf5c5a59ae607f8ac1c5e3790873"
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"
@@ -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.32"
817
+ version = "0.4.33"
818
818
  source = "registry+https://github.com/rust-lang/crates.io-index"
819
- checksum = "0b17771570a2b94107741a7b033f19132c2eee21d59d21b24d2ced26500bd66e"
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.49.3"
930
+ version = "0.49.6"
934
931
  source = "registry+https://github.com/rust-lang/crates.io-index"
935
- checksum = "508004a5500f2e1f68af048f70feea2de86d35ab115d85716530860822aef397"
932
+ checksum = "7e17384278234b10419a63c93fc85695ac9fc2da0833e3c59167f9986499590c"
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.49.3"
959
+ version = "0.49.6"
963
960
  source = "registry+https://github.com/rust-lang/crates.io-index"
964
- checksum = "5a8b30cafa78358ae6cd1494a7d6410b89530e28bf567f862c869c667e900d9f"
961
+ checksum = "ac634e339e73bf9629f6fb207f7b064d872253ae3b3f5c6e0ce8fd762b16e40f"
965
962
  dependencies = [
966
963
  "regex-syntax",
967
964
  ]
968
965
 
969
966
  [[package]]
970
967
  name = "jsonschema-value"
971
- version = "0.49.3"
968
+ version = "0.49.6"
972
969
  source = "registry+https://github.com/rust-lang/crates.io-index"
973
- checksum = "5526bd381d230af94908d07e6835a33fd82a465e12f5f1e9c81f5c2aa23b3c21"
970
+ checksum = "92b8e258eb4515a3fc912a9c46e3987040dc07280592280097ea2085527870b8"
974
971
  dependencies = [
975
972
  "ahash",
976
973
  "bytecount",
@@ -1205,14 +1202,14 @@ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
1205
1202
 
1206
1203
  [[package]]
1207
1204
  name = "panache"
1208
- version = "3.1.0"
1205
+ version = "3.3.0"
1209
1206
  dependencies = [
1210
1207
  "annotate-snippets",
1211
1208
  "assert_cmd",
1212
1209
  "clap",
1213
- "clap-markdown",
1214
1210
  "clap_complete",
1215
1211
  "clap_mangen",
1212
+ "clapdown",
1216
1213
  "crossbeam-channel",
1217
1214
  "dirs",
1218
1215
  "emojis",
@@ -1232,12 +1229,12 @@ dependencies = [
1232
1229
  "predicates",
1233
1230
  "rayon",
1234
1231
  "regex",
1235
- "rowan",
1232
+ "rowan 0.17.0",
1236
1233
  "salsa",
1237
1234
  "schemars",
1238
1235
  "serde",
1239
1236
  "serde_json",
1240
- "similar 3.1.1",
1237
+ "similar 3.1.2",
1241
1238
  "similar-asserts",
1242
1239
  "tempfile",
1243
1240
  "toml",
@@ -1249,14 +1246,14 @@ dependencies = [
1249
1246
 
1250
1247
  [[package]]
1251
1248
  name = "panache-formatter"
1252
- version = "0.20.3"
1249
+ version = "0.20.5"
1253
1250
  dependencies = [
1254
1251
  "insta",
1255
1252
  "log",
1256
1253
  "panache-parser",
1257
1254
  "pretty_yaml",
1258
1255
  "pulldown-latex",
1259
- "rowan",
1256
+ "rowan 0.17.0",
1260
1257
  "schemars",
1261
1258
  "serde",
1262
1259
  "serde_json",
@@ -1267,13 +1264,13 @@ dependencies = [
1267
1264
 
1268
1265
  [[package]]
1269
1266
  name = "panache-parser"
1270
- version = "0.23.0"
1267
+ version = "0.25.0"
1271
1268
  dependencies = [
1272
1269
  "entities",
1273
1270
  "insta",
1274
1271
  "log",
1275
1272
  "memchr",
1276
- "rowan",
1273
+ "rowan 0.17.0",
1277
1274
  "schemars",
1278
1275
  "serde",
1279
1276
  "serde_json",
@@ -1410,7 +1407,7 @@ version = "0.6.0"
1410
1407
  source = "registry+https://github.com/rust-lang/crates.io-index"
1411
1408
  checksum = "6f5db2b0044c0dae209c173c6049f210c9449092b07304c9c8b8d555c606e93e"
1412
1409
  dependencies = [
1413
- "rowan",
1410
+ "rowan 0.16.1",
1414
1411
  "tiny_pretty",
1415
1412
  "yaml_parser",
1416
1413
  ]
@@ -1516,9 +1513,9 @@ dependencies = [
1516
1513
 
1517
1514
  [[package]]
1518
1515
  name = "referencing"
1519
- version = "0.49.3"
1516
+ version = "0.49.6"
1520
1517
  source = "registry+https://github.com/rust-lang/crates.io-index"
1521
- checksum = "7af3eb523cce0df0af3c30d624b829b2dabd233172b5bc2615fcd03ceae8f746"
1518
+ checksum = "42902112f88a27e9afd5683e2ba31956fed2a5d43395f166dd26775ae9c0dedb"
1522
1519
  dependencies = [
1523
1520
  "ahash",
1524
1521
  "fluent-uri 0.4.1",
@@ -1545,9 +1542,9 @@ dependencies = [
1545
1542
 
1546
1543
  [[package]]
1547
1544
  name = "regex-automata"
1548
- version = "0.4.16"
1545
+ version = "0.4.18"
1549
1546
  source = "registry+https://github.com/rust-lang/crates.io-index"
1550
- checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
1547
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
1551
1548
  dependencies = [
1552
1549
  "aho-corasick",
1553
1550
  "memchr",
@@ -1578,6 +1575,19 @@ dependencies = [
1578
1575
  "text-size",
1579
1576
  ]
1580
1577
 
1578
+ [[package]]
1579
+ name = "rowan"
1580
+ version = "0.17.0"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "14b574c58582fa59fa43a2feb6608b8744184659f08a2e0117e4b8224d95ed61"
1583
+ dependencies = [
1584
+ "countme",
1585
+ "hashbrown 0.14.5",
1586
+ "memoffset",
1587
+ "rustc-hash 1.1.0",
1588
+ "text-size",
1589
+ ]
1590
+
1581
1591
  [[package]]
1582
1592
  name = "rustc-hash"
1583
1593
  version = "1.1.0"
@@ -1780,9 +1790,9 @@ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
1780
1790
 
1781
1791
  [[package]]
1782
1792
  name = "similar"
1783
- version = "3.1.1"
1793
+ version = "3.1.2"
1784
1794
  source = "registry+https://github.com/rust-lang/crates.io-index"
1785
- checksum = "e6505efef05804732ed8a3f2d4f279429eb485bd69d5b0cc6b19cc02005cda16"
1795
+ checksum = "85ee016af5d736b69fc89e19254540fa4b5f5492853fb5503920f084011c78b6"
1786
1796
  dependencies = [
1787
1797
  "bstr",
1788
1798
  "unicode-segmentation",
@@ -1795,7 +1805,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1795
1805
  checksum = "997e6ca38e97437973fc9f7f50a50d1274cacd874341a4960fea90067291038c"
1796
1806
  dependencies = [
1797
1807
  "console",
1798
- "similar 3.1.1",
1808
+ "similar 3.1.2",
1799
1809
  ]
1800
1810
 
1801
1811
  [[package]]
@@ -2252,7 +2262,7 @@ version = "0.3.0"
2252
2262
  source = "registry+https://github.com/rust-lang/crates.io-index"
2253
2263
  checksum = "71ebb04c72edf699612d543f6c421142527b85ac180156017fa26be49dc0762f"
2254
2264
  dependencies = [
2255
- "rowan",
2265
+ "rowan 0.16.1",
2256
2266
  "winnow 0.7.15",
2257
2267
  ]
2258
2268
 
@@ -2281,18 +2291,18 @@ dependencies = [
2281
2291
 
2282
2292
  [[package]]
2283
2293
  name = "zerocopy"
2284
- version = "0.8.55"
2294
+ version = "0.8.56"
2285
2295
  source = "registry+https://github.com/rust-lang/crates.io-index"
2286
- checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
2296
+ checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
2287
2297
  dependencies = [
2288
2298
  "zerocopy-derive",
2289
2299
  ]
2290
2300
 
2291
2301
  [[package]]
2292
2302
  name = "zerocopy-derive"
2293
- version = "0.8.55"
2303
+ version = "0.8.56"
2294
2304
  source = "registry+https://github.com/rust-lang/crates.io-index"
2295
- checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
2305
+ checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
2296
2306
  dependencies = [
2297
2307
  "proc-macro2",
2298
2308
  "quote",
@@ -7,7 +7,7 @@ authors = ["Johan Larsson <johan@jolars.co>"]
7
7
 
8
8
  [package]
9
9
  name = "panache"
10
- version = "3.1.0"
10
+ version = "3.3.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.3" }
52
- panache-parser = { path = "crates/panache-parser", version = "0.23.0", features = [
51
+ panache-formatter = { path = "crates/panache-formatter", version = "0.20.5" }
52
+ panache-parser = { path = "crates/panache-parser", version = "0.25.0", features = [
53
53
  "serde",
54
54
  "schema",
55
55
  ] }
@@ -68,7 +68,7 @@ lsp-types = { version = "0.97.0", optional = true }
68
68
  num_cpus = { version = "1.17.0", optional = true }
69
69
  percent-encoding = { version = "2.3.2", optional = true }
70
70
  regex = "1.12.2"
71
- rowan = "0.16.1"
71
+ rowan = "0.17.0"
72
72
  salsa = "0.28.0"
73
73
  serde = { version = "1.0.228", features = ["derive"] }
74
74
  serde_json = "1.0.150"
@@ -106,7 +106,7 @@ lsp = [
106
106
  clap = { version = "4.6.1", features = ["derive", "env"] }
107
107
  clap_complete = "4.6.0"
108
108
  clap_mangen = "0.3.0"
109
- clap-markdown = "0.1.5"
109
+ clapdown = "0.2.0"
110
110
  flate2 = "1.1.9"
111
111
 
112
112
  [package.metadata.deb]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: panache-cli
3
- Version: 3.1.0
3
+ Version: 3.3.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