panache-cli 2.59.0__tar.gz → 2.61.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 (296) hide show
  1. {panache_cli-2.59.0 → panache_cli-2.61.0}/Cargo.lock +67 -81
  2. {panache_cli-2.59.0 → panache_cli-2.61.0}/Cargo.toml +5 -5
  3. {panache_cli-2.59.0 → panache_cli-2.61.0}/PKG-INFO +1 -1
  4. {panache_cli-2.59.0 → panache_cli-2.61.0}/build.rs +1 -1
  5. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/CHANGELOG.md +30 -0
  6. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/Cargo.toml +2 -2
  7. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/code_blocks.rs +45 -0
  8. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/core.rs +274 -15
  9. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/inline.rs +68 -64
  10. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/inline_layout.rs +107 -15
  11. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/math.rs +49 -37
  12. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/tables.rs +7 -0
  13. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/yaml/STYLE.md +7 -0
  14. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/yaml/document.rs +11 -1
  15. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/CHANGELOG.md +39 -0
  16. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/Cargo.toml +1 -1
  17. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/options.rs +282 -3
  18. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/pandoc_ast.rs +76 -0
  19. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/block_dispatcher.rs +895 -13
  20. panache_cli-2.61.0/crates/panache-parser/src/parser/blocks/admonitions.rs +282 -0
  21. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/code_blocks.rs +34 -5
  22. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/container_prefix.rs +7 -1
  23. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/html_blocks.rs +599 -42
  24. panache_cli-2.61.0/crates/panache-parser/src/parser/blocks/myst_directives.rs +348 -0
  25. panache_cli-2.61.0/crates/panache-parser/src/parser/blocks/myst_targets.rs +212 -0
  26. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/tables.rs +67 -7
  27. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/tests/blockquotes.rs +7 -0
  28. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks.rs +6 -0
  29. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/core.rs +157 -0
  30. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/core.rs +138 -4
  31. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/inline_ir.rs +6 -4
  32. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/math.rs +92 -39
  33. panache_cli-2.61.0/crates/panache-parser/src/parser/inlines/myst_roles.rs +153 -0
  34. panache_cli-2.61.0/crates/panache-parser/src/parser/inlines/myst_substitutions.rs +76 -0
  35. panache_cli-2.61.0/crates/panache-parser/src/parser/inlines/svelte.rs +182 -0
  36. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines.rs +6 -0
  37. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/math.rs +157 -156
  38. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/utils/container_stack.rs +15 -0
  39. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/utils/continuation.rs +8 -0
  40. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/yaml/profile.rs +14 -5
  41. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/yaml/validator.rs +203 -20
  42. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/kind.rs +55 -0
  43. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/links.rs +14 -0
  44. panache_cli-2.61.0/crates/panache-parser/src/syntax/math.rs +601 -0
  45. panache_cli-2.61.0/crates/panache-parser/src/syntax/myst.rs +316 -0
  46. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/yaml.rs +16 -0
  47. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax.rs +2 -0
  48. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/cli.rs +10 -4
  49. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/config/formatter_presets.rs +35 -2
  50. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/config/types/schema_helpers.rs +2 -0
  51. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/config/types.rs +56 -5
  52. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/config.rs +515 -35
  53. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/external_formatters_common.rs +2 -1
  54. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lib.rs +1 -0
  55. panache_cli-2.61.0/src/linter/fuzzy.rs +106 -0
  56. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/metadata_diagnostics.rs +92 -0
  57. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/quarto_schema/interp.rs +2 -56
  58. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/citation_keys.rs +71 -7
  59. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/html_entities.rs +31 -54
  60. panache_cli-2.61.0/src/linter/rules/math_content.rs +199 -0
  61. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/missing_chunk_labels.rs +30 -1
  62. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/unused_definitions.rs +74 -3
  63. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter.rs +1 -0
  64. panache_cli-2.61.0/src/lsp/config.rs +251 -0
  65. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/dispatch.rs +32 -7
  66. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/documents.rs +29 -1
  67. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/global_state.rs +25 -7
  68. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/completion.rs +1 -1
  69. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/diagnostics.rs +1 -1
  70. panache_cli-2.61.0/src/lsp/handlers/document_highlight.rs +67 -0
  71. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/file_rename.rs +3 -1
  72. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/file_watcher.rs +8 -3
  73. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/formatting.rs +3 -3
  74. panache_cli-2.61.0/src/lsp/handlers/linked_editing_range.rs +86 -0
  75. panache_cli-2.61.0/src/lsp/handlers/workspace_folders.rs +39 -0
  76. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers.rs +2 -0
  77. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/symbols.rs +116 -1
  78. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/testing.rs +49 -0
  79. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/main.rs +98 -12
  80. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/metadata/project.rs +85 -8
  81. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/metadata.rs +9 -0
  82. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/salsa.rs +73 -1
  83. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/utils.rs +52 -3
  84. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/yaml_engine.rs +20 -0
  85. panache_cli-2.59.0/crates/panache-parser/src/syntax/math.rs +0 -175
  86. panache_cli-2.59.0/src/linter/rules/math_content.rs +0 -283
  87. panache_cli-2.59.0/src/lsp/config.rs +0 -111
  88. panache_cli-2.59.0/src/lsp/handlers/linked_editing_range.rs +0 -196
  89. {panache_cli-2.59.0 → panache_cli-2.61.0}/LICENSE +0 -0
  90. {panache_cli-2.59.0 → panache_cli-2.61.0}/README.md +0 -0
  91. {panache_cli-2.59.0 → panache_cli-2.61.0}/assets/quarto-schema/schema.json +0 -0
  92. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/README.md +0 -0
  93. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/config.rs +0 -0
  94. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/directives.rs +0 -0
  95. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/blockquotes.rs +0 -0
  96. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/fenced_divs.rs +0 -0
  97. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/hashpipe.rs +0 -0
  98. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/headings.rs +0 -0
  99. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/indent_utils.rs +0 -0
  100. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/lists.rs +0 -0
  101. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/math/STYLE.md +0 -0
  102. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/math/linebreak.rs +0 -0
  103. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/math/operators.rs +0 -0
  104. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/math/render.rs +0 -0
  105. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/metadata.rs +0 -0
  106. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/paragraphs.rs +0 -0
  107. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/sentence_wrap.rs +0 -0
  108. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/shortcodes.rs +0 -0
  109. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/smart.rs +0 -0
  110. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/utils.rs +0 -0
  111. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/yaml/block_map.rs +0 -0
  112. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/yaml/block_sequence.rs +0 -0
  113. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/yaml/flow.rs +0 -0
  114. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/yaml/options.rs +0 -0
  115. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/yaml/scalar.rs +0 -0
  116. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter/yaml.rs +0 -0
  117. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/formatter.rs +0 -0
  118. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/lib.rs +0 -0
  119. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/parser.rs +0 -0
  120. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/syntax.rs +0 -0
  121. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/utils.rs +0 -0
  122. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-formatter/src/yaml_engine.rs +0 -0
  123. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/README.md +0 -0
  124. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/build.rs +0 -0
  125. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/grid_layout.rs +0 -0
  126. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/lib.rs +0 -0
  127. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/blockquotes.rs +0 -0
  128. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/definition_lists.rs +0 -0
  129. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/fenced_divs.rs +0 -0
  130. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/figures.rs +0 -0
  131. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/headings.rs +0 -0
  132. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/horizontal_rules.rs +0 -0
  133. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/indented_code.rs +0 -0
  134. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/latex_envs.rs +0 -0
  135. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/line_blocks.rs +0 -0
  136. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/lists.rs +0 -0
  137. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/metadata.rs +0 -0
  138. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/paragraphs.rs +0 -0
  139. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/raw_blocks.rs +0 -0
  140. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/reference_links.rs +0 -0
  141. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/tests/blanklines.rs +0 -0
  142. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/tests/code_blocks.rs +0 -0
  143. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/tests/definition_lists.rs +0 -0
  144. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/tests/headings.rs +0 -0
  145. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/tests/helpers.rs +0 -0
  146. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/tests/lists.rs +0 -0
  147. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/tests/losslessness.rs +0 -0
  148. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/blocks/tests/metadata_guards.rs +0 -0
  149. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/diagnostics.rs +0 -0
  150. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/bookdown.rs +0 -0
  151. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/bracketed_spans.rs +0 -0
  152. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/citations.rs +0 -0
  153. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/code_spans.rs +0 -0
  154. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/emoji.rs +0 -0
  155. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/escapes.rs +0 -0
  156. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/inline_executable.rs +0 -0
  157. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/inline_footnotes.rs +0 -0
  158. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/inline_html.rs +0 -0
  159. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/latex.rs +0 -0
  160. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/links.rs +0 -0
  161. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/mark.rs +0 -0
  162. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/native_spans.rs +0 -0
  163. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/raw_inline.rs +0 -0
  164. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/refdef_map.rs +0 -0
  165. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/shortcodes.rs +0 -0
  166. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/sink.rs +0 -0
  167. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/strikeout.rs +0 -0
  168. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/subscript.rs +0 -0
  169. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/superscript.rs +0 -0
  170. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/tests.rs +0 -0
  171. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/uri-schemes.csv +0 -0
  172. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/inlines/wikilinks.rs +0 -0
  173. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/utils/attributes.rs +0 -0
  174. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/utils/chunk_options.rs +0 -0
  175. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/utils/helpers.rs +0 -0
  176. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/utils/inline_emission.rs +0 -0
  177. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/utils/list_item_buffer.rs +0 -0
  178. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/utils/marker_utils.rs +0 -0
  179. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/utils/text_buffer.rs +0 -0
  180. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/utils/tree_copy.rs +0 -0
  181. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/utils/yaml_regions.rs +0 -0
  182. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/utils.rs +0 -0
  183. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/yaml/cooking.rs +0 -0
  184. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/yaml/events.rs +0 -0
  185. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/yaml/model.rs +0 -0
  186. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/yaml/parser.rs +0 -0
  187. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/yaml/scanner.rs +0 -0
  188. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser/yaml.rs +0 -0
  189. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/parser.rs +0 -0
  190. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/range_utils.rs +0 -0
  191. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/alerts.rs +0 -0
  192. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/ast.rs +0 -0
  193. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/attributes.rs +0 -0
  194. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/block_quotes.rs +0 -0
  195. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/blocks.rs +0 -0
  196. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/chunk_options.rs +0 -0
  197. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/citations.rs +0 -0
  198. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/code_blocks.rs +0 -0
  199. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/crossrefs.rs +0 -0
  200. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/definitions.rs +0 -0
  201. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/fenced_divs.rs +0 -0
  202. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/headings.rs +0 -0
  203. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/inlines.rs +0 -0
  204. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/lists.rs +0 -0
  205. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/raw_tex.rs +0 -0
  206. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/references.rs +0 -0
  207. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/shortcodes.rs +0 -0
  208. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/tables.rs +0 -0
  209. {panache_cli-2.59.0 → panache_cli-2.61.0}/crates/panache-parser/src/syntax/yaml_ast.rs +0 -0
  210. {panache_cli-2.59.0 → panache_cli-2.61.0}/pyproject.toml +0 -0
  211. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/bib/bibtex.rs +0 -0
  212. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/bib/csl_json.rs +0 -0
  213. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/bib/csl_yaml.rs +0 -0
  214. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/bib/index.rs +0 -0
  215. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/bib/preview.rs +0 -0
  216. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/bib/ris.rs +0 -0
  217. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/bib.rs +0 -0
  218. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/bin/distill_quarto_schema.rs +0 -0
  219. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/cache.rs +0 -0
  220. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/diagnostic_renderer.rs +0 -0
  221. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/directives.rs +0 -0
  222. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/external_formatters_sync.rs +0 -0
  223. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/external_tools_common.rs +0 -0
  224. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/formatter.rs +0 -0
  225. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/includes.rs +0 -0
  226. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/code_block_collector.rs +0 -0
  227. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/diagnostics.rs +0 -0
  228. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/external_linters/clippy.rs +0 -0
  229. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/external_linters/eslint.rs +0 -0
  230. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/external_linters/jarl.rs +0 -0
  231. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/external_linters/ruff.rs +0 -0
  232. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/external_linters/shellcheck.rs +0 -0
  233. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/external_linters/staticcheck.rs +0 -0
  234. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/external_linters.rs +0 -0
  235. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/external_linters_sync.rs +0 -0
  236. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/index.rs +0 -0
  237. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/offsets.rs +0 -0
  238. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/quarto_schema/distill.rs +0 -0
  239. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/quarto_schema/model.rs +0 -0
  240. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/quarto_schema/report.rs +0 -0
  241. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/quarto_schema/value.rs +0 -0
  242. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/quarto_schema.rs +0 -0
  243. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/adjacent_footnote_refs.rs +0 -0
  244. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/chunk_label_spaces.rs +0 -0
  245. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/consumer_divergence.rs +0 -0
  246. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/crossref_as_link_target.rs +0 -0
  247. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/duplicate_references.rs +0 -0
  248. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/emoji_aliases.rs +0 -0
  249. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/empty_list_item.rs +0 -0
  250. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/empty_values.rs +0 -0
  251. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/figure_crossref_captions.rs +0 -0
  252. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/footnote_ref_in_footnote_def.rs +0 -0
  253. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/heading_eaten_attrs.rs +0 -0
  254. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/heading_hierarchy.rs +0 -0
  255. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/heading_strip_comments_residue.rs +0 -0
  256. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/link_text_is_url.rs +0 -0
  257. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/quarto_schema.rs +0 -0
  258. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/stray_fenced_div_markers.rs +0 -0
  259. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/undefined_anchor.rs +0 -0
  260. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules/undefined_references.rs +0 -0
  261. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/rules.rs +0 -0
  262. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/runner.rs +0 -0
  263. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/linter/yaml_resolve.rs +0 -0
  264. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/context.rs +0 -0
  265. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/conversions.rs +0 -0
  266. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/code_actions.rs +0 -0
  267. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/configuration.rs +0 -0
  268. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/document_links.rs +0 -0
  269. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/document_symbols.rs +0 -0
  270. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/file_operations.rs +0 -0
  271. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/folding_ranges.rs +0 -0
  272. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/footnote_conversion.rs +0 -0
  273. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/goto_definition.rs +0 -0
  274. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/heading_link_conversion.rs +0 -0
  275. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/hover.rs +0 -0
  276. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/link_conversion.rs +0 -0
  277. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/list_conversion.rs +0 -0
  278. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/prepare_rename.rs +0 -0
  279. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/references.rs +0 -0
  280. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/rename.rs +0 -0
  281. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/semantic_tokens.rs +0 -0
  282. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/shortcode_args.rs +0 -0
  283. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/handlers/workspace_symbols.rs +0 -0
  284. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/helpers.rs +0 -0
  285. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/navigation.rs +0 -0
  286. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/task_pool.rs +0 -0
  287. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp/uri_ext.rs +0 -0
  288. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/lsp.rs +0 -0
  289. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/metadata/bibliography.rs +0 -0
  290. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/metadata/citations.rs +0 -0
  291. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/metadata/references.rs +0 -0
  292. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/metadata/yaml.rs +0 -0
  293. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/parser.rs +0 -0
  294. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/range_utils.rs +0 -0
  295. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/syntax.rs +0 -0
  296. {panache_cli-2.59.0 → panache_cli-2.61.0}/src/yaml_regions.rs +0 -0
@@ -160,13 +160,13 @@ checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
160
160
 
161
161
  [[package]]
162
162
  name = "bstr"
163
- version = "1.12.1"
163
+ version = "1.12.3"
164
164
  source = "registry+https://github.com/rust-lang/crates.io-index"
165
- checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
165
+ checksum = "5cee35f73844aa3014bb606320a6c1f010249dbdf43342fe54b5a4f6a8ed4b79"
166
166
  dependencies = [
167
167
  "memchr",
168
168
  "regex-automata",
169
- "serde",
169
+ "serde_core",
170
170
  ]
171
171
 
172
172
  [[package]]
@@ -220,9 +220,9 @@ dependencies = [
220
220
 
221
221
  [[package]]
222
222
  name = "clap_complete"
223
- version = "4.6.5"
223
+ version = "4.6.7"
224
224
  source = "registry+https://github.com/rust-lang/crates.io-index"
225
- checksum = "e0a7a9bfdb35811f9e59832f0f05975114d2251b415fb534108e6f34060fd772"
225
+ checksum = "db8b397918185f0161ff3d6fcaa9e4bfc09b8367caf6e1d4a2848e5477ed027b"
226
226
  dependencies = [
227
227
  "clap",
228
228
  ]
@@ -263,9 +263,9 @@ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
263
263
 
264
264
  [[package]]
265
265
  name = "console"
266
- version = "0.16.3"
266
+ version = "0.16.4"
267
267
  source = "registry+https://github.com/rust-lang/crates.io-index"
268
- checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
268
+ checksum = "4fe5f465a4f6fee88fad41b85d990f84c835335e85b5d9e6e63e0d06d28cba7c"
269
269
  dependencies = [
270
270
  "encode_unicode",
271
271
  "libc",
@@ -372,9 +372,9 @@ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
372
372
 
373
373
  [[package]]
374
374
  name = "defmt"
375
- version = "1.1.0"
375
+ version = "1.1.1"
376
376
  source = "registry+https://github.com/rust-lang/crates.io-index"
377
- checksum = "a6e524506490a1953d237cb87b1cfc1e46f88c18f10a22dfe0f507dc6bfc7f7f"
377
+ checksum = "e2953bfe4f93bbd20cc71198842756f77d161884c99ebbabc41d80231ded88d1"
378
378
  dependencies = [
379
379
  "bitflags 1.3.2",
380
380
  "defmt-macros",
@@ -382,12 +382,11 @@ dependencies = [
382
382
 
383
383
  [[package]]
384
384
  name = "defmt-macros"
385
- version = "1.1.0"
385
+ version = "1.1.1"
386
386
  source = "registry+https://github.com/rust-lang/crates.io-index"
387
- checksum = "f0a27770e9c8f719a79d8b638281f4d828f77d8fd61e0bd94451b9b85e576a0b"
387
+ checksum = "bad9c72e7ca2137e0dc3813245a0d282fd6daad32fd800af018306a9169b5fe8"
388
388
  dependencies = [
389
389
  "defmt-parser",
390
- "proc-macro-error2",
391
390
  "proc-macro2",
392
391
  "quote",
393
392
  "syn",
@@ -463,9 +462,9 @@ dependencies = [
463
462
 
464
463
  [[package]]
465
464
  name = "emojis"
466
- version = "0.8.2"
465
+ version = "0.9.0"
467
466
  source = "registry+https://github.com/rust-lang/crates.io-index"
468
- checksum = "0a4d5d50b0b58df5173d8ff1192b4d1422ceae5d981b30d4b6f8ed1d673a2bc4"
467
+ checksum = "0b1514ced566c94991ed9563258ecf61e311fd773bf0a3f20606830386bf66e3"
469
468
  dependencies = [
470
469
  "phf",
471
470
  ]
@@ -484,9 +483,9 @@ checksum = "a6ff9a251416ff2d42d7be09d6ed9c88d23e965b0f5163e2fc9b361fe47967c0"
484
483
 
485
484
  [[package]]
486
485
  name = "env_filter"
487
- version = "1.0.1"
486
+ version = "2.0.0"
488
487
  source = "registry+https://github.com/rust-lang/crates.io-index"
489
- checksum = "32e90c2accc4b07a8456ea0debdc2e7587bdd890680d71173a15d4ae604f6eef"
488
+ checksum = "900d271a03799a1ee8d1ca9b19893b48ca674a9284fefcfb85f05e74ed314217"
490
489
  dependencies = [
491
490
  "log",
492
491
  "regex",
@@ -494,9 +493,9 @@ dependencies = [
494
493
 
495
494
  [[package]]
496
495
  name = "env_logger"
497
- version = "0.11.10"
496
+ version = "0.11.11"
498
497
  source = "registry+https://github.com/rust-lang/crates.io-index"
499
- checksum = "0621c04f2196ac3f488dd583365b9c09be011a4ab8b9f37248ffcc8f6198b56a"
498
+ checksum = "de671bd27a75a797dc9ae289ba1e77276e75e2026408aab65185384e2d5cd3f6"
500
499
  dependencies = [
501
500
  "anstream",
502
501
  "anstyle",
@@ -826,9 +825,9 @@ dependencies = [
826
825
 
827
826
  [[package]]
828
827
  name = "ignore"
829
- version = "0.4.26"
828
+ version = "0.4.27"
830
829
  source = "registry+https://github.com/rust-lang/crates.io-index"
831
- checksum = "b915661dd01db3f05050265b2477bcc6527b3792388e2749b41623cc592be67d"
830
+ checksum = "fe112b004901c62c2faa11f4f75e9864e0cc5af8da71c9115d184a3aa888749f"
832
831
  dependencies = [
833
832
  "crossbeam-deque",
834
833
  "globset",
@@ -895,9 +894,9 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
895
894
 
896
895
  [[package]]
897
896
  name = "jiff"
898
- version = "0.2.29"
897
+ version = "0.2.31"
899
898
  source = "registry+https://github.com/rust-lang/crates.io-index"
900
- checksum = "34f877a98676d2fb664698d74cc6a51ce6c484ce8c770f05d0108ec9090aeb46"
899
+ checksum = "ccfe6121cbe750cf81efa362d85c0bde7ea298ec43092d3a193baca59cdbd634"
901
900
  dependencies = [
902
901
  "defmt",
903
902
  "jiff-static",
@@ -909,9 +908,9 @@ dependencies = [
909
908
 
910
909
  [[package]]
911
910
  name = "jiff-static"
912
- version = "0.2.29"
911
+ version = "0.2.31"
913
912
  source = "registry+https://github.com/rust-lang/crates.io-index"
914
- checksum = "0666b5ab5ecaca213fc2a85b8c0083d9004e84ee2d5f9a7e0017aaf50986f25f"
913
+ checksum = "e165e897f662d428f3cd3828a919dbe067c2d42bb1031eede74ef9d27ecdedd2"
915
914
  dependencies = [
916
915
  "proc-macro2",
917
916
  "quote",
@@ -920,9 +919,9 @@ dependencies = [
920
919
 
921
920
  [[package]]
922
921
  name = "js-sys"
923
- version = "0.3.102"
922
+ version = "0.3.103"
924
923
  source = "registry+https://github.com/rust-lang/crates.io-index"
925
- checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
924
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
926
925
  dependencies = [
927
926
  "cfg-if",
928
927
  "futures-util",
@@ -931,9 +930,9 @@ dependencies = [
931
930
 
932
931
  [[package]]
933
932
  name = "jsonschema"
934
- version = "0.46.6"
933
+ version = "0.46.9"
935
934
  source = "registry+https://github.com/rust-lang/crates.io-index"
936
- checksum = "8374249b1bdce1c1773a09fa294347e19e4bfeb86d845c2d8ebaf8a8dbf11233"
935
+ checksum = "1d865ca7ca04445fcaa1d751fda3dc43b0113ba2fcddc65d5a0fcb474a7c3bba"
937
936
  dependencies = [
938
937
  "ahash",
939
938
  "bytecount",
@@ -944,18 +943,27 @@ dependencies = [
944
943
  "getrandom 0.3.4",
945
944
  "idna",
946
945
  "itoa",
946
+ "jsonschema-regex",
947
947
  "num-cmp",
948
948
  "num-traits",
949
949
  "percent-encoding",
950
950
  "referencing",
951
951
  "regex",
952
- "regex-syntax",
953
952
  "serde",
954
953
  "serde_json",
955
954
  "unicode-general-category",
956
955
  "uuid-simd",
957
956
  ]
958
957
 
958
+ [[package]]
959
+ name = "jsonschema-regex"
960
+ version = "0.46.9"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "4b7fc96cd6677cc81b00607d43477327d719419937ef1c44b3556a40f517d54c"
963
+ dependencies = [
964
+ "regex-syntax",
965
+ ]
966
+
959
967
  [[package]]
960
968
  name = "lazy_static"
961
969
  version = "1.5.0"
@@ -970,9 +978,9 @@ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
970
978
 
971
979
  [[package]]
972
980
  name = "libredox"
973
- version = "0.1.17"
981
+ version = "0.1.18"
974
982
  source = "registry+https://github.com/rust-lang/crates.io-index"
975
- checksum = "f02ab6bace2054fb888a3c16f990117b579d14a3088e472d63c6011fa185c9d3"
983
+ checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652"
976
984
  dependencies = [
977
985
  "libc",
978
986
  ]
@@ -1006,9 +1014,9 @@ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1006
1014
 
1007
1015
  [[package]]
1008
1016
  name = "lsp-server"
1009
- version = "0.7.9"
1017
+ version = "0.8.0"
1010
1018
  source = "registry+https://github.com/rust-lang/crates.io-index"
1011
- checksum = "7d6ada348dbc2703cbe7637b2dda05cff84d3da2819c24abcb305dd613e0ba2e"
1019
+ checksum = "0ad8be6fe0ca81b8298bfbbe8a77e9fcd8895ad6c84cd7794d5ebadcbb09ae43"
1012
1020
  dependencies = [
1013
1021
  "crossbeam-channel",
1014
1022
  "log",
@@ -1083,9 +1091,9 @@ dependencies = [
1083
1091
 
1084
1092
  [[package]]
1085
1093
  name = "num-bigint"
1086
- version = "0.4.6"
1094
+ version = "0.4.7"
1087
1095
  source = "registry+https://github.com/rust-lang/crates.io-index"
1088
- checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1096
+ checksum = "c863e9ab5e7bf9c99ba75e1050f1e4d624ae87ed3532d6238ffbdc7b585dbbe6"
1089
1097
  dependencies = [
1090
1098
  "num-integer",
1091
1099
  "num-traits",
@@ -1182,7 +1190,7 @@ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
1182
1190
 
1183
1191
  [[package]]
1184
1192
  name = "panache"
1185
- version = "2.59.0"
1193
+ version = "2.61.0"
1186
1194
  dependencies = [
1187
1195
  "annotate-snippets",
1188
1196
  "assert_cmd",
@@ -1226,7 +1234,7 @@ dependencies = [
1226
1234
 
1227
1235
  [[package]]
1228
1236
  name = "panache-formatter"
1229
- version = "0.17.0"
1237
+ version = "0.19.0"
1230
1238
  dependencies = [
1231
1239
  "insta",
1232
1240
  "log",
@@ -1244,7 +1252,7 @@ dependencies = [
1244
1252
 
1245
1253
  [[package]]
1246
1254
  name = "panache-parser"
1247
- version = "0.19.1"
1255
+ version = "0.21.0"
1248
1256
  dependencies = [
1249
1257
  "entities",
1250
1258
  "insta",
@@ -1392,28 +1400,6 @@ dependencies = [
1392
1400
  "yaml_parser",
1393
1401
  ]
1394
1402
 
1395
- [[package]]
1396
- name = "proc-macro-error-attr2"
1397
- version = "2.0.0"
1398
- source = "registry+https://github.com/rust-lang/crates.io-index"
1399
- checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
1400
- dependencies = [
1401
- "proc-macro2",
1402
- "quote",
1403
- ]
1404
-
1405
- [[package]]
1406
- name = "proc-macro-error2"
1407
- version = "2.0.1"
1408
- source = "registry+https://github.com/rust-lang/crates.io-index"
1409
- checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
1410
- dependencies = [
1411
- "proc-macro-error-attr2",
1412
- "proc-macro2",
1413
- "quote",
1414
- "syn",
1415
- ]
1416
-
1417
1403
  [[package]]
1418
1404
  name = "proc-macro2"
1419
1405
  version = "1.0.106"
@@ -1515,9 +1501,9 @@ dependencies = [
1515
1501
 
1516
1502
  [[package]]
1517
1503
  name = "referencing"
1518
- version = "0.46.6"
1504
+ version = "0.46.9"
1519
1505
  source = "registry+https://github.com/rust-lang/crates.io-index"
1520
- checksum = "65a910f9d63351f9c9d7dc3053d02b214ea3a005917140c70087d7b59cbc5bb1"
1506
+ checksum = "77954d81b2e1c5e8ab889f9f597a92f852ab073255de9e37ee3fb443efd57051"
1521
1507
  dependencies = [
1522
1508
  "ahash",
1523
1509
  "fluent-uri 0.4.1",
@@ -1585,9 +1571,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1585
1571
 
1586
1572
  [[package]]
1587
1573
  name = "rustc-hash"
1588
- version = "2.1.2"
1574
+ version = "2.1.3"
1589
1575
  source = "registry+https://github.com/rust-lang/crates.io-index"
1590
- checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1576
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
1591
1577
 
1592
1578
  [[package]]
1593
1579
  name = "rustix"
@@ -1610,9 +1596,9 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1610
1596
 
1611
1597
  [[package]]
1612
1598
  name = "salsa"
1613
- version = "0.27.1"
1599
+ version = "0.27.2"
1614
1600
  source = "registry+https://github.com/rust-lang/crates.io-index"
1615
- checksum = "0b903173b7867d2b5837bad8fe38cb08928b6ec11a27641ff0d9c3f97d2d3860"
1601
+ checksum = "ffbaab832e2ea754afda4a738f987dd1e8bd30c9e5d8c981ee6a3934386095e2"
1616
1602
  dependencies = [
1617
1603
  "boxcar",
1618
1604
  "crossbeam-queue",
@@ -1625,7 +1611,7 @@ dependencies = [
1625
1611
  "parking_lot",
1626
1612
  "portable-atomic",
1627
1613
  "rayon",
1628
- "rustc-hash 2.1.2",
1614
+ "rustc-hash 2.1.3",
1629
1615
  "salsa-macro-rules",
1630
1616
  "salsa-macros",
1631
1617
  "smallvec",
@@ -1636,15 +1622,15 @@ dependencies = [
1636
1622
 
1637
1623
  [[package]]
1638
1624
  name = "salsa-macro-rules"
1639
- version = "0.27.1"
1625
+ version = "0.27.2"
1640
1626
  source = "registry+https://github.com/rust-lang/crates.io-index"
1641
- checksum = "536f8ea9f7cbcf2e58872bae5a78c95839021facafdab8462324337f89f6d1eb"
1627
+ checksum = "de6872462ac73d39969a836273c24163e6a26a4e08f5114fcd80e25af30ea9c6"
1642
1628
 
1643
1629
  [[package]]
1644
1630
  name = "salsa-macros"
1645
- version = "0.27.1"
1631
+ version = "0.27.2"
1646
1632
  source = "registry+https://github.com/rust-lang/crates.io-index"
1647
- checksum = "5c49f4d53ec8fa201e74a27dd9eb8320146b0e45ad2b11ae503437109a502965"
1633
+ checksum = "76bc78ffaf65b1a9175818592c5130aa10b1bb245a905722fd4db87cea8a8457"
1648
1634
  dependencies = [
1649
1635
  "proc-macro2",
1650
1636
  "quote",
@@ -2019,9 +2005,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2019
2005
 
2020
2006
  [[package]]
2021
2007
  name = "uuid"
2022
- version = "1.23.3"
2008
+ version = "1.23.4"
2023
2009
  source = "registry+https://github.com/rust-lang/crates.io-index"
2024
- checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
2010
+ checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
2025
2011
  dependencies = [
2026
2012
  "getrandom 0.4.3",
2027
2013
  "js-sys",
@@ -2086,9 +2072,9 @@ dependencies = [
2086
2072
 
2087
2073
  [[package]]
2088
2074
  name = "wasm-bindgen"
2089
- version = "0.2.125"
2075
+ version = "0.2.126"
2090
2076
  source = "registry+https://github.com/rust-lang/crates.io-index"
2091
- checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
2077
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
2092
2078
  dependencies = [
2093
2079
  "cfg-if",
2094
2080
  "once_cell",
@@ -2099,9 +2085,9 @@ dependencies = [
2099
2085
 
2100
2086
  [[package]]
2101
2087
  name = "wasm-bindgen-macro"
2102
- version = "0.2.125"
2088
+ version = "0.2.126"
2103
2089
  source = "registry+https://github.com/rust-lang/crates.io-index"
2104
- checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
2090
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
2105
2091
  dependencies = [
2106
2092
  "quote",
2107
2093
  "wasm-bindgen-macro-support",
@@ -2109,9 +2095,9 @@ dependencies = [
2109
2095
 
2110
2096
  [[package]]
2111
2097
  name = "wasm-bindgen-macro-support"
2112
- version = "0.2.125"
2098
+ version = "0.2.126"
2113
2099
  source = "registry+https://github.com/rust-lang/crates.io-index"
2114
- checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
2100
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
2115
2101
  dependencies = [
2116
2102
  "bumpalo",
2117
2103
  "proc-macro2",
@@ -2122,9 +2108,9 @@ dependencies = [
2122
2108
 
2123
2109
  [[package]]
2124
2110
  name = "wasm-bindgen-shared"
2125
- version = "0.2.125"
2111
+ version = "0.2.126"
2126
2112
  source = "registry+https://github.com/rust-lang/crates.io-index"
2127
- checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
2113
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
2128
2114
  dependencies = [
2129
2115
  "unicode-ident",
2130
2116
  ]
@@ -7,7 +7,7 @@ authors = ["Johan Larsson <johan@jolars.co>"]
7
7
 
8
8
  [package]
9
9
  name = "panache"
10
- version = "2.59.0"
10
+ version = "2.61.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.17.0" }
52
- panache-parser = { path = "crates/panache-parser", version = "0.19.1", features = [
51
+ panache-formatter = { path = "crates/panache-formatter", version = "0.19.0" }
52
+ panache-parser = { path = "crates/panache-parser", version = "0.21.0", features = [
53
53
  "serde",
54
54
  "schema",
55
55
  ] }
@@ -57,13 +57,13 @@ annotate-snippets = "0.12.15"
57
57
  clap = { version = "4.6.1", features = ["derive", "env"], optional = true }
58
58
  dirs = "6.0.0"
59
59
  env_logger = "0.11.10"
60
- emojis = "0.8.0"
60
+ emojis = "0.9.0"
61
61
  flate2 = "1.0"
62
62
  crossbeam-channel = { version = "0.5.15", optional = true }
63
63
  globset = "0.4"
64
64
  ignore = { version = "0.4", optional = true }
65
65
  log = { version = "0.4.31", features = ["release_max_level_debug"] }
66
- lsp-server = { version = "0.7.9", optional = true }
66
+ lsp-server = { version = "0.8.0", optional = true }
67
67
  lsp-types = { version = "0.97.0", optional = true }
68
68
  num_cpus = { version = "1.16", optional = true }
69
69
  percent-encoding = { version = "2.3.2", optional = true }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: panache-cli
3
- Version: 2.59.0
3
+ Version: 2.61.0
4
4
  Classifier: Development Status :: 5 - Production/Stable
5
5
  Classifier: Environment :: Console
6
6
  Classifier: Intended Audience :: Developers
@@ -80,7 +80,7 @@ fn generate_cli_markdown() -> Result<()> {
80
80
  let mut document = String::new();
81
81
  document.push_str("---\n");
82
82
  document.push_str("title: CLI Reference\n");
83
- document.push_str("description: >-\n Comprehensive reference for the Panache CLI, including all commands, options, and usage examples.\n");
83
+ document.push_str("description: >\n Comprehensive reference for the Panache CLI, including all commands, options,\n and usage examples.\n");
84
84
  document.push_str("---\n\n");
85
85
  document.push_str(&markdown);
86
86
 
@@ -1,5 +1,35 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.19.0](https://github.com/jolars/panache/compare/panache-formatter-v0.18.0...panache-formatter-v0.19.0) (2026-07-04)
4
+
5
+ ### Features
6
+ - **parser:** flag unbalanced `\left`/`\right` in math ([`73750c9`](https://github.com/jolars/panache/commit/73750c9b854e8899fcd2b7180c21f9b2eb7af892))
7
+
8
+ ### Bug Fixes
9
+ - **formatter:** route non-reflowable math verbatim ([`bd577dc`](https://github.com/jolars/panache/commit/bd577dcd7884428b83ea9034a048863c97368c28))
10
+
11
+ ### Dependencies
12
+ - updated crates/panache-parser to v0.21.0
13
+
14
+ ## [0.18.0](https://github.com/jolars/panache/compare/panache-formatter-v0.17.0...panache-formatter-v0.18.0) (2026-07-01)
15
+
16
+ ### Features
17
+ - **parser:** treat standalone Svelte spans as opaque blocks ([`414d441`](https://github.com/jolars/panache/commit/414d441f8990f8874a604b63fd13b50fa5ce0564))
18
+ - **parser:** align myst defaults with myst-parser ([`4232185`](https://github.com/jolars/panache/commit/4232185235ffb74b898c0332e9e8400bd98f88a9))
19
+ - **formatter:** route myst directive bodies to external tools ([`81c19f6`](https://github.com/jolars/panache/commit/81c19f659b95fdaaa335dec14e11a1c978f24f48))
20
+ - **parser:** parse myst verbatim-bodies ([`2d8a516`](https://github.com/jolars/panache/commit/2d8a51622766163b5963626ea4fe38d299179d47))
21
+ - **parser:** parse MyST directive option blocks ([`17990eb`](https://github.com/jolars/panache/commit/17990eb07e397762f28e2365c95c064dc590cba1))
22
+ - **parser:** add MyST flavor scaffolding ([`b4bdd84`](https://github.com/jolars/panache/commit/b4bdd84f56d8957583b1eb2ca4527d0d4952c1a5))
23
+ - add python-markdown admonitions and pymdownx details ([`b37a5cc`](https://github.com/jolars/panache/commit/b37a5cc2887029953eeb44b673a2fed39f3550be)), fixes [#396](https://github.com/jolars/panache/issues/396)
24
+
25
+ ### Bug Fixes
26
+ - **formatter:** keep block markers inline in sentence wrap ([`3d8717d`](https://github.com/jolars/panache/commit/3d8717d2d3bbfb69dac24fef7715329d54588df0))
27
+ - **formatter:** hoist folded `>-` onto key line ([`0744175`](https://github.com/jolars/panache/commit/07441752bd5ea74e4d2325001112d3f4db4217e1)), fixes [#400](https://github.com/jolars/panache/issues/400)
28
+ - **parser:** parse headerless multiline tables with a dash-run closer ([`ab7e7d3`](https://github.com/jolars/panache/commit/ab7e7d315433e6e11d220c2735d2e7d4d884c10a)), fixes [#398](https://github.com/jolars/panache/issues/398)
29
+
30
+ ### Dependencies
31
+ - updated crates/panache-parser to v0.20.0
32
+
3
33
  ## [0.17.0](https://github.com/jolars/panache/compare/panache-formatter-v0.16.0...panache-formatter-v0.17.0) (2026-06-24)
4
34
 
5
35
  ### Features
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "panache-formatter"
3
- version = "0.17.0"
3
+ version = "0.19.0"
4
4
  edition.workspace = true
5
5
  include = [
6
6
  "/src/**/*",
@@ -18,7 +18,7 @@ keywords = ["quarto", "pandoc", "markdown", "formatter"]
18
18
  categories = ["text-processing"]
19
19
 
20
20
  [dependencies]
21
- panache-parser = { path = "../panache-parser", version = "0.19.1" }
21
+ panache-parser = { path = "../panache-parser", version = "0.21.0" }
22
22
  log = { version = "0.4.31", features = ["release_max_level_debug"] }
23
23
  rowan = "0.16.1"
24
24
  serde = { version = "1.0", features = ["derive"], optional = true }
@@ -745,6 +745,33 @@ fn format_attributes(attrs: &[(String, Option<String>)], preserve_unquoted: bool
745
745
  .join(separator)
746
746
  }
747
747
 
748
+ /// Extract the language (directive argument) and verbatim body text from a
749
+ /// `MYST_DIRECTIVE` node. Returns `None` when the directive has no
750
+ /// `MYST_DIRECTIVE_BODY` child (i.e. it is a non-verbatim directive whose body
751
+ /// is parsed recursively as markdown). The body text is taken byte-for-byte so
752
+ /// it matches the lookup key used when substituting formatted output.
753
+ pub(crate) fn extract_myst_directive_parts(node: &SyntaxNode) -> Option<(String, String)> {
754
+ let mut language = String::new();
755
+ let mut body = None;
756
+ for child in node.children() {
757
+ match child.kind() {
758
+ SyntaxKind::MYST_DIRECTIVE_OPEN => {
759
+ for token in child.children_with_tokens() {
760
+ if let NodeOrToken::Token(t) = token
761
+ && t.kind() == SyntaxKind::MYST_DIRECTIVE_ARG
762
+ {
763
+ let raw = t.text();
764
+ language = raw.strip_prefix('.').unwrap_or(raw).to_string();
765
+ }
766
+ }
767
+ }
768
+ SyntaxKind::MYST_DIRECTIVE_BODY => body = Some(child.text().to_string()),
769
+ _ => {}
770
+ }
771
+ }
772
+ body.map(|body| (language, body))
773
+ }
774
+
748
775
  /// Collect all code blocks and their info strings from the syntax tree.
749
776
  /// Collect all code blocks from the syntax tree for external formatting.
750
777
  /// Returns a flat list of (language, content) pairs.
@@ -755,6 +782,24 @@ pub fn collect_code_blocks(
755
782
  ) -> Vec<ExternalCodeBlock> {
756
783
  let mut result = Vec::new();
757
784
  for node in tree.descendants() {
785
+ if node.kind() == SyntaxKind::MYST_DIRECTIVE {
786
+ if let Some((language, content)) = extract_myst_directive_parts(&node) {
787
+ if content.is_empty() {
788
+ continue;
789
+ }
790
+ if language.is_empty() && !config.formatters.contains_key("") {
791
+ continue;
792
+ }
793
+ result.push(ExternalCodeBlock {
794
+ language,
795
+ original: content.clone(),
796
+ formatter_input: content,
797
+ hashpipe_prefix: None,
798
+ });
799
+ }
800
+ continue;
801
+ }
802
+
758
803
  if node.kind() != SyntaxKind::CODE_BLOCK {
759
804
  continue;
760
805
  }