panache-cli 2.59.0__tar.gz → 2.60.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 (294) hide show
  1. {panache_cli-2.59.0 → panache_cli-2.60.0}/Cargo.lock +48 -48
  2. {panache_cli-2.59.0 → panache_cli-2.60.0}/Cargo.toml +5 -5
  3. {panache_cli-2.59.0 → panache_cli-2.60.0}/PKG-INFO +1 -1
  4. {panache_cli-2.59.0 → panache_cli-2.60.0}/build.rs +1 -1
  5. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/CHANGELOG.md +19 -0
  6. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/Cargo.toml +2 -2
  7. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/code_blocks.rs +45 -0
  8. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/core.rs +253 -0
  9. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/inline_layout.rs +107 -15
  10. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/tables.rs +7 -0
  11. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/yaml/STYLE.md +7 -0
  12. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/yaml/document.rs +11 -1
  13. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/CHANGELOG.md +22 -0
  14. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/Cargo.toml +1 -1
  15. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/options.rs +282 -3
  16. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/pandoc_ast.rs +29 -0
  17. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/block_dispatcher.rs +882 -13
  18. panache_cli-2.60.0/crates/panache-parser/src/parser/blocks/admonitions.rs +282 -0
  19. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/code_blocks.rs +34 -5
  20. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/container_prefix.rs +7 -1
  21. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/html_blocks.rs +161 -0
  22. panache_cli-2.60.0/crates/panache-parser/src/parser/blocks/myst_directives.rs +348 -0
  23. panache_cli-2.60.0/crates/panache-parser/src/parser/blocks/myst_targets.rs +212 -0
  24. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/tables.rs +19 -0
  25. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/tests/blockquotes.rs +7 -0
  26. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks.rs +6 -0
  27. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/core.rs +157 -0
  28. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/core.rs +138 -4
  29. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/inline_ir.rs +6 -4
  30. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/math.rs +92 -39
  31. panache_cli-2.60.0/crates/panache-parser/src/parser/inlines/myst_roles.rs +153 -0
  32. panache_cli-2.60.0/crates/panache-parser/src/parser/inlines/myst_substitutions.rs +76 -0
  33. panache_cli-2.60.0/crates/panache-parser/src/parser/inlines/svelte.rs +182 -0
  34. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines.rs +6 -0
  35. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/container_stack.rs +15 -0
  36. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/continuation.rs +8 -0
  37. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/yaml/profile.rs +14 -5
  38. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/yaml/validator.rs +203 -20
  39. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/kind.rs +54 -0
  40. panache_cli-2.60.0/crates/panache-parser/src/syntax/myst.rs +316 -0
  41. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/yaml.rs +16 -0
  42. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax.rs +2 -0
  43. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/cli.rs +10 -4
  44. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/config/formatter_presets.rs +14 -2
  45. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/config/types/schema_helpers.rs +2 -0
  46. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/config/types.rs +56 -5
  47. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/config.rs +515 -35
  48. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/external_formatters_common.rs +2 -1
  49. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lib.rs +1 -0
  50. panache_cli-2.60.0/src/linter/fuzzy.rs +106 -0
  51. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/metadata_diagnostics.rs +92 -0
  52. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/quarto_schema/interp.rs +2 -56
  53. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/citation_keys.rs +71 -7
  54. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/html_entities.rs +31 -54
  55. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/missing_chunk_labels.rs +30 -1
  56. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter.rs +1 -0
  57. panache_cli-2.60.0/src/lsp/config.rs +251 -0
  58. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/dispatch.rs +32 -7
  59. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/documents.rs +29 -1
  60. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/global_state.rs +25 -7
  61. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/completion.rs +1 -1
  62. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/diagnostics.rs +1 -1
  63. panache_cli-2.60.0/src/lsp/handlers/document_highlight.rs +67 -0
  64. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/file_rename.rs +3 -1
  65. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/file_watcher.rs +8 -3
  66. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/formatting.rs +3 -3
  67. panache_cli-2.60.0/src/lsp/handlers/linked_editing_range.rs +86 -0
  68. panache_cli-2.60.0/src/lsp/handlers/workspace_folders.rs +39 -0
  69. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers.rs +2 -0
  70. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/symbols.rs +116 -1
  71. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/testing.rs +49 -0
  72. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/main.rs +98 -12
  73. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/metadata/project.rs +85 -8
  74. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/metadata.rs +9 -0
  75. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/salsa.rs +73 -1
  76. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/utils.rs +52 -3
  77. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/yaml_engine.rs +20 -0
  78. panache_cli-2.59.0/src/lsp/config.rs +0 -111
  79. panache_cli-2.59.0/src/lsp/handlers/linked_editing_range.rs +0 -196
  80. {panache_cli-2.59.0 → panache_cli-2.60.0}/LICENSE +0 -0
  81. {panache_cli-2.59.0 → panache_cli-2.60.0}/README.md +0 -0
  82. {panache_cli-2.59.0 → panache_cli-2.60.0}/assets/quarto-schema/schema.json +0 -0
  83. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/README.md +0 -0
  84. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/config.rs +0 -0
  85. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/directives.rs +0 -0
  86. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/blockquotes.rs +0 -0
  87. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/fenced_divs.rs +0 -0
  88. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/hashpipe.rs +0 -0
  89. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/headings.rs +0 -0
  90. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/indent_utils.rs +0 -0
  91. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/inline.rs +0 -0
  92. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/lists.rs +0 -0
  93. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/math/STYLE.md +0 -0
  94. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/math/linebreak.rs +0 -0
  95. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/math/operators.rs +0 -0
  96. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/math/render.rs +0 -0
  97. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/math.rs +0 -0
  98. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/metadata.rs +0 -0
  99. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/paragraphs.rs +0 -0
  100. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/sentence_wrap.rs +0 -0
  101. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/shortcodes.rs +0 -0
  102. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/smart.rs +0 -0
  103. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/utils.rs +0 -0
  104. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/yaml/block_map.rs +0 -0
  105. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/yaml/block_sequence.rs +0 -0
  106. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/yaml/flow.rs +0 -0
  107. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/yaml/options.rs +0 -0
  108. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/yaml/scalar.rs +0 -0
  109. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/yaml.rs +0 -0
  110. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter.rs +0 -0
  111. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/lib.rs +0 -0
  112. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/parser.rs +0 -0
  113. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/syntax.rs +0 -0
  114. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/utils.rs +0 -0
  115. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-formatter/src/yaml_engine.rs +0 -0
  116. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/README.md +0 -0
  117. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/build.rs +0 -0
  118. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/grid_layout.rs +0 -0
  119. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/lib.rs +0 -0
  120. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/blockquotes.rs +0 -0
  121. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/definition_lists.rs +0 -0
  122. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/fenced_divs.rs +0 -0
  123. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/figures.rs +0 -0
  124. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/headings.rs +0 -0
  125. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/horizontal_rules.rs +0 -0
  126. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/indented_code.rs +0 -0
  127. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/latex_envs.rs +0 -0
  128. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/line_blocks.rs +0 -0
  129. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/lists.rs +0 -0
  130. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/metadata.rs +0 -0
  131. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/paragraphs.rs +0 -0
  132. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/raw_blocks.rs +0 -0
  133. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/reference_links.rs +0 -0
  134. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/tests/blanklines.rs +0 -0
  135. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/tests/code_blocks.rs +0 -0
  136. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/tests/definition_lists.rs +0 -0
  137. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/tests/headings.rs +0 -0
  138. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/tests/helpers.rs +0 -0
  139. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/tests/lists.rs +0 -0
  140. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/tests/losslessness.rs +0 -0
  141. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/tests/metadata_guards.rs +0 -0
  142. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/diagnostics.rs +0 -0
  143. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/bookdown.rs +0 -0
  144. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/bracketed_spans.rs +0 -0
  145. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/citations.rs +0 -0
  146. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/code_spans.rs +0 -0
  147. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/emoji.rs +0 -0
  148. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/escapes.rs +0 -0
  149. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/inline_executable.rs +0 -0
  150. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/inline_footnotes.rs +0 -0
  151. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/inline_html.rs +0 -0
  152. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/latex.rs +0 -0
  153. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/links.rs +0 -0
  154. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/mark.rs +0 -0
  155. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/native_spans.rs +0 -0
  156. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/raw_inline.rs +0 -0
  157. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/refdef_map.rs +0 -0
  158. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/shortcodes.rs +0 -0
  159. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/sink.rs +0 -0
  160. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/strikeout.rs +0 -0
  161. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/subscript.rs +0 -0
  162. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/superscript.rs +0 -0
  163. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/tests.rs +0 -0
  164. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/uri-schemes.csv +0 -0
  165. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/wikilinks.rs +0 -0
  166. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/math.rs +0 -0
  167. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/attributes.rs +0 -0
  168. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/chunk_options.rs +0 -0
  169. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/helpers.rs +0 -0
  170. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/inline_emission.rs +0 -0
  171. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/list_item_buffer.rs +0 -0
  172. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/marker_utils.rs +0 -0
  173. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/text_buffer.rs +0 -0
  174. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/tree_copy.rs +0 -0
  175. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/yaml_regions.rs +0 -0
  176. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils.rs +0 -0
  177. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/yaml/cooking.rs +0 -0
  178. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/yaml/events.rs +0 -0
  179. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/yaml/model.rs +0 -0
  180. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/yaml/parser.rs +0 -0
  181. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/yaml/scanner.rs +0 -0
  182. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/yaml.rs +0 -0
  183. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser.rs +0 -0
  184. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/range_utils.rs +0 -0
  185. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/alerts.rs +0 -0
  186. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/ast.rs +0 -0
  187. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/attributes.rs +0 -0
  188. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/block_quotes.rs +0 -0
  189. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/blocks.rs +0 -0
  190. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/chunk_options.rs +0 -0
  191. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/citations.rs +0 -0
  192. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/code_blocks.rs +0 -0
  193. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/crossrefs.rs +0 -0
  194. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/definitions.rs +0 -0
  195. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/fenced_divs.rs +0 -0
  196. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/headings.rs +0 -0
  197. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/inlines.rs +0 -0
  198. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/links.rs +0 -0
  199. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/lists.rs +0 -0
  200. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/math.rs +0 -0
  201. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/raw_tex.rs +0 -0
  202. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/references.rs +0 -0
  203. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/shortcodes.rs +0 -0
  204. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/tables.rs +0 -0
  205. {panache_cli-2.59.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/yaml_ast.rs +0 -0
  206. {panache_cli-2.59.0 → panache_cli-2.60.0}/pyproject.toml +0 -0
  207. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/bib/bibtex.rs +0 -0
  208. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/bib/csl_json.rs +0 -0
  209. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/bib/csl_yaml.rs +0 -0
  210. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/bib/index.rs +0 -0
  211. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/bib/preview.rs +0 -0
  212. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/bib/ris.rs +0 -0
  213. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/bib.rs +0 -0
  214. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/bin/distill_quarto_schema.rs +0 -0
  215. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/cache.rs +0 -0
  216. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/diagnostic_renderer.rs +0 -0
  217. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/directives.rs +0 -0
  218. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/external_formatters_sync.rs +0 -0
  219. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/external_tools_common.rs +0 -0
  220. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/formatter.rs +0 -0
  221. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/includes.rs +0 -0
  222. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/code_block_collector.rs +0 -0
  223. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/diagnostics.rs +0 -0
  224. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/external_linters/clippy.rs +0 -0
  225. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/external_linters/eslint.rs +0 -0
  226. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/external_linters/jarl.rs +0 -0
  227. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/external_linters/ruff.rs +0 -0
  228. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/external_linters/shellcheck.rs +0 -0
  229. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/external_linters/staticcheck.rs +0 -0
  230. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/external_linters.rs +0 -0
  231. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/external_linters_sync.rs +0 -0
  232. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/index.rs +0 -0
  233. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/offsets.rs +0 -0
  234. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/quarto_schema/distill.rs +0 -0
  235. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/quarto_schema/model.rs +0 -0
  236. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/quarto_schema/report.rs +0 -0
  237. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/quarto_schema/value.rs +0 -0
  238. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/quarto_schema.rs +0 -0
  239. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/adjacent_footnote_refs.rs +0 -0
  240. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/chunk_label_spaces.rs +0 -0
  241. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/consumer_divergence.rs +0 -0
  242. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/crossref_as_link_target.rs +0 -0
  243. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/duplicate_references.rs +0 -0
  244. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/emoji_aliases.rs +0 -0
  245. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/empty_list_item.rs +0 -0
  246. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/empty_values.rs +0 -0
  247. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/figure_crossref_captions.rs +0 -0
  248. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/footnote_ref_in_footnote_def.rs +0 -0
  249. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/heading_eaten_attrs.rs +0 -0
  250. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/heading_hierarchy.rs +0 -0
  251. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/heading_strip_comments_residue.rs +0 -0
  252. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/link_text_is_url.rs +0 -0
  253. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/math_content.rs +0 -0
  254. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/quarto_schema.rs +0 -0
  255. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/stray_fenced_div_markers.rs +0 -0
  256. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/undefined_anchor.rs +0 -0
  257. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/undefined_references.rs +0 -0
  258. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules/unused_definitions.rs +0 -0
  259. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/rules.rs +0 -0
  260. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/runner.rs +0 -0
  261. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/linter/yaml_resolve.rs +0 -0
  262. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/context.rs +0 -0
  263. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/conversions.rs +0 -0
  264. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/code_actions.rs +0 -0
  265. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/configuration.rs +0 -0
  266. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/document_links.rs +0 -0
  267. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/document_symbols.rs +0 -0
  268. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/file_operations.rs +0 -0
  269. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/folding_ranges.rs +0 -0
  270. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/footnote_conversion.rs +0 -0
  271. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/goto_definition.rs +0 -0
  272. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/heading_link_conversion.rs +0 -0
  273. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/hover.rs +0 -0
  274. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/link_conversion.rs +0 -0
  275. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/list_conversion.rs +0 -0
  276. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/prepare_rename.rs +0 -0
  277. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/references.rs +0 -0
  278. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/rename.rs +0 -0
  279. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/semantic_tokens.rs +0 -0
  280. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/shortcode_args.rs +0 -0
  281. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/handlers/workspace_symbols.rs +0 -0
  282. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/helpers.rs +0 -0
  283. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/navigation.rs +0 -0
  284. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/task_pool.rs +0 -0
  285. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp/uri_ext.rs +0 -0
  286. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/lsp.rs +0 -0
  287. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/metadata/bibliography.rs +0 -0
  288. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/metadata/citations.rs +0 -0
  289. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/metadata/references.rs +0 -0
  290. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/metadata/yaml.rs +0 -0
  291. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/parser.rs +0 -0
  292. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/range_utils.rs +0 -0
  293. {panache_cli-2.59.0 → panache_cli-2.60.0}/src/syntax.rs +0 -0
  294. {panache_cli-2.59.0 → panache_cli-2.60.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",
@@ -463,9 +463,9 @@ dependencies = [
463
463
 
464
464
  [[package]]
465
465
  name = "emojis"
466
- version = "0.8.2"
466
+ version = "0.9.0"
467
467
  source = "registry+https://github.com/rust-lang/crates.io-index"
468
- checksum = "0a4d5d50b0b58df5173d8ff1192b4d1422ceae5d981b30d4b6f8ed1d673a2bc4"
468
+ checksum = "0b1514ced566c94991ed9563258ecf61e311fd773bf0a3f20606830386bf66e3"
469
469
  dependencies = [
470
470
  "phf",
471
471
  ]
@@ -484,9 +484,9 @@ checksum = "a6ff9a251416ff2d42d7be09d6ed9c88d23e965b0f5163e2fc9b361fe47967c0"
484
484
 
485
485
  [[package]]
486
486
  name = "env_filter"
487
- version = "1.0.1"
487
+ version = "2.0.0"
488
488
  source = "registry+https://github.com/rust-lang/crates.io-index"
489
- checksum = "32e90c2accc4b07a8456ea0debdc2e7587bdd890680d71173a15d4ae604f6eef"
489
+ checksum = "900d271a03799a1ee8d1ca9b19893b48ca674a9284fefcfb85f05e74ed314217"
490
490
  dependencies = [
491
491
  "log",
492
492
  "regex",
@@ -494,9 +494,9 @@ dependencies = [
494
494
 
495
495
  [[package]]
496
496
  name = "env_logger"
497
- version = "0.11.10"
497
+ version = "0.11.11"
498
498
  source = "registry+https://github.com/rust-lang/crates.io-index"
499
- checksum = "0621c04f2196ac3f488dd583365b9c09be011a4ab8b9f37248ffcc8f6198b56a"
499
+ checksum = "de671bd27a75a797dc9ae289ba1e77276e75e2026408aab65185384e2d5cd3f6"
500
500
  dependencies = [
501
501
  "anstream",
502
502
  "anstyle",
@@ -826,9 +826,9 @@ dependencies = [
826
826
 
827
827
  [[package]]
828
828
  name = "ignore"
829
- version = "0.4.26"
829
+ version = "0.4.27"
830
830
  source = "registry+https://github.com/rust-lang/crates.io-index"
831
- checksum = "b915661dd01db3f05050265b2477bcc6527b3792388e2749b41623cc592be67d"
831
+ checksum = "fe112b004901c62c2faa11f4f75e9864e0cc5af8da71c9115d184a3aa888749f"
832
832
  dependencies = [
833
833
  "crossbeam-deque",
834
834
  "globset",
@@ -895,9 +895,9 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
895
895
 
896
896
  [[package]]
897
897
  name = "jiff"
898
- version = "0.2.29"
898
+ version = "0.2.31"
899
899
  source = "registry+https://github.com/rust-lang/crates.io-index"
900
- checksum = "34f877a98676d2fb664698d74cc6a51ce6c484ce8c770f05d0108ec9090aeb46"
900
+ checksum = "ccfe6121cbe750cf81efa362d85c0bde7ea298ec43092d3a193baca59cdbd634"
901
901
  dependencies = [
902
902
  "defmt",
903
903
  "jiff-static",
@@ -909,9 +909,9 @@ dependencies = [
909
909
 
910
910
  [[package]]
911
911
  name = "jiff-static"
912
- version = "0.2.29"
912
+ version = "0.2.31"
913
913
  source = "registry+https://github.com/rust-lang/crates.io-index"
914
- checksum = "0666b5ab5ecaca213fc2a85b8c0083d9004e84ee2d5f9a7e0017aaf50986f25f"
914
+ checksum = "e165e897f662d428f3cd3828a919dbe067c2d42bb1031eede74ef9d27ecdedd2"
915
915
  dependencies = [
916
916
  "proc-macro2",
917
917
  "quote",
@@ -920,9 +920,9 @@ dependencies = [
920
920
 
921
921
  [[package]]
922
922
  name = "js-sys"
923
- version = "0.3.102"
923
+ version = "0.3.103"
924
924
  source = "registry+https://github.com/rust-lang/crates.io-index"
925
- checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
925
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
926
926
  dependencies = [
927
927
  "cfg-if",
928
928
  "futures-util",
@@ -931,9 +931,9 @@ dependencies = [
931
931
 
932
932
  [[package]]
933
933
  name = "jsonschema"
934
- version = "0.46.6"
934
+ version = "0.46.8"
935
935
  source = "registry+https://github.com/rust-lang/crates.io-index"
936
- checksum = "8374249b1bdce1c1773a09fa294347e19e4bfeb86d845c2d8ebaf8a8dbf11233"
936
+ checksum = "24fc8535da347b994f6d2fab0a84b74e3b31ad08ebe4204d95f3e755db7af49b"
937
937
  dependencies = [
938
938
  "ahash",
939
939
  "bytecount",
@@ -970,9 +970,9 @@ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
970
970
 
971
971
  [[package]]
972
972
  name = "libredox"
973
- version = "0.1.17"
973
+ version = "0.1.18"
974
974
  source = "registry+https://github.com/rust-lang/crates.io-index"
975
- checksum = "f02ab6bace2054fb888a3c16f990117b579d14a3088e472d63c6011fa185c9d3"
975
+ checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652"
976
976
  dependencies = [
977
977
  "libc",
978
978
  ]
@@ -1006,9 +1006,9 @@ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1006
1006
 
1007
1007
  [[package]]
1008
1008
  name = "lsp-server"
1009
- version = "0.7.9"
1009
+ version = "0.8.0"
1010
1010
  source = "registry+https://github.com/rust-lang/crates.io-index"
1011
- checksum = "7d6ada348dbc2703cbe7637b2dda05cff84d3da2819c24abcb305dd613e0ba2e"
1011
+ checksum = "0ad8be6fe0ca81b8298bfbbe8a77e9fcd8895ad6c84cd7794d5ebadcbb09ae43"
1012
1012
  dependencies = [
1013
1013
  "crossbeam-channel",
1014
1014
  "log",
@@ -1182,7 +1182,7 @@ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
1182
1182
 
1183
1183
  [[package]]
1184
1184
  name = "panache"
1185
- version = "2.59.0"
1185
+ version = "2.60.0"
1186
1186
  dependencies = [
1187
1187
  "annotate-snippets",
1188
1188
  "assert_cmd",
@@ -1226,7 +1226,7 @@ dependencies = [
1226
1226
 
1227
1227
  [[package]]
1228
1228
  name = "panache-formatter"
1229
- version = "0.17.0"
1229
+ version = "0.18.0"
1230
1230
  dependencies = [
1231
1231
  "insta",
1232
1232
  "log",
@@ -1244,7 +1244,7 @@ dependencies = [
1244
1244
 
1245
1245
  [[package]]
1246
1246
  name = "panache-parser"
1247
- version = "0.19.1"
1247
+ version = "0.20.0"
1248
1248
  dependencies = [
1249
1249
  "entities",
1250
1250
  "insta",
@@ -1515,9 +1515,9 @@ dependencies = [
1515
1515
 
1516
1516
  [[package]]
1517
1517
  name = "referencing"
1518
- version = "0.46.6"
1518
+ version = "0.46.8"
1519
1519
  source = "registry+https://github.com/rust-lang/crates.io-index"
1520
- checksum = "65a910f9d63351f9c9d7dc3053d02b214ea3a005917140c70087d7b59cbc5bb1"
1520
+ checksum = "1c8dceb372b46fecd006be48ca335468b49ad887a7f0150cabd6098fa4fc500f"
1521
1521
  dependencies = [
1522
1522
  "ahash",
1523
1523
  "fluent-uri 0.4.1",
@@ -1610,9 +1610,9 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1610
1610
 
1611
1611
  [[package]]
1612
1612
  name = "salsa"
1613
- version = "0.27.1"
1613
+ version = "0.27.2"
1614
1614
  source = "registry+https://github.com/rust-lang/crates.io-index"
1615
- checksum = "0b903173b7867d2b5837bad8fe38cb08928b6ec11a27641ff0d9c3f97d2d3860"
1615
+ checksum = "ffbaab832e2ea754afda4a738f987dd1e8bd30c9e5d8c981ee6a3934386095e2"
1616
1616
  dependencies = [
1617
1617
  "boxcar",
1618
1618
  "crossbeam-queue",
@@ -1636,15 +1636,15 @@ dependencies = [
1636
1636
 
1637
1637
  [[package]]
1638
1638
  name = "salsa-macro-rules"
1639
- version = "0.27.1"
1639
+ version = "0.27.2"
1640
1640
  source = "registry+https://github.com/rust-lang/crates.io-index"
1641
- checksum = "536f8ea9f7cbcf2e58872bae5a78c95839021facafdab8462324337f89f6d1eb"
1641
+ checksum = "de6872462ac73d39969a836273c24163e6a26a4e08f5114fcd80e25af30ea9c6"
1642
1642
 
1643
1643
  [[package]]
1644
1644
  name = "salsa-macros"
1645
- version = "0.27.1"
1645
+ version = "0.27.2"
1646
1646
  source = "registry+https://github.com/rust-lang/crates.io-index"
1647
- checksum = "5c49f4d53ec8fa201e74a27dd9eb8320146b0e45ad2b11ae503437109a502965"
1647
+ checksum = "76bc78ffaf65b1a9175818592c5130aa10b1bb245a905722fd4db87cea8a8457"
1648
1648
  dependencies = [
1649
1649
  "proc-macro2",
1650
1650
  "quote",
@@ -2019,9 +2019,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2019
2019
 
2020
2020
  [[package]]
2021
2021
  name = "uuid"
2022
- version = "1.23.3"
2022
+ version = "1.23.4"
2023
2023
  source = "registry+https://github.com/rust-lang/crates.io-index"
2024
- checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
2024
+ checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
2025
2025
  dependencies = [
2026
2026
  "getrandom 0.4.3",
2027
2027
  "js-sys",
@@ -2086,9 +2086,9 @@ dependencies = [
2086
2086
 
2087
2087
  [[package]]
2088
2088
  name = "wasm-bindgen"
2089
- version = "0.2.125"
2089
+ version = "0.2.126"
2090
2090
  source = "registry+https://github.com/rust-lang/crates.io-index"
2091
- checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
2091
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
2092
2092
  dependencies = [
2093
2093
  "cfg-if",
2094
2094
  "once_cell",
@@ -2099,9 +2099,9 @@ dependencies = [
2099
2099
 
2100
2100
  [[package]]
2101
2101
  name = "wasm-bindgen-macro"
2102
- version = "0.2.125"
2102
+ version = "0.2.126"
2103
2103
  source = "registry+https://github.com/rust-lang/crates.io-index"
2104
- checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
2104
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
2105
2105
  dependencies = [
2106
2106
  "quote",
2107
2107
  "wasm-bindgen-macro-support",
@@ -2109,9 +2109,9 @@ dependencies = [
2109
2109
 
2110
2110
  [[package]]
2111
2111
  name = "wasm-bindgen-macro-support"
2112
- version = "0.2.125"
2112
+ version = "0.2.126"
2113
2113
  source = "registry+https://github.com/rust-lang/crates.io-index"
2114
- checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
2114
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
2115
2115
  dependencies = [
2116
2116
  "bumpalo",
2117
2117
  "proc-macro2",
@@ -2122,9 +2122,9 @@ dependencies = [
2122
2122
 
2123
2123
  [[package]]
2124
2124
  name = "wasm-bindgen-shared"
2125
- version = "0.2.125"
2125
+ version = "0.2.126"
2126
2126
  source = "registry+https://github.com/rust-lang/crates.io-index"
2127
- checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
2127
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
2128
2128
  dependencies = [
2129
2129
  "unicode-ident",
2130
2130
  ]
@@ -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.60.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.18.0" }
52
+ panache-parser = { path = "crates/panache-parser", version = "0.20.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.60.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,\nand usage examples.\n");
84
84
  document.push_str("---\n\n");
85
85
  document.push_str(&markdown);
86
86
 
@@ -1,5 +1,24 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.18.0](https://github.com/jolars/panache/compare/panache-formatter-v0.17.0...panache-formatter-v0.18.0) (2026-07-01)
4
+
5
+ ### Features
6
+ - **parser:** treat standalone Svelte spans as opaque blocks ([`414d441`](https://github.com/jolars/panache/commit/414d441f8990f8874a604b63fd13b50fa5ce0564))
7
+ - **parser:** align myst defaults with myst-parser ([`4232185`](https://github.com/jolars/panache/commit/4232185235ffb74b898c0332e9e8400bd98f88a9))
8
+ - **formatter:** route myst directive bodies to external tools ([`81c19f6`](https://github.com/jolars/panache/commit/81c19f659b95fdaaa335dec14e11a1c978f24f48))
9
+ - **parser:** parse myst verbatim-bodies ([`2d8a516`](https://github.com/jolars/panache/commit/2d8a51622766163b5963626ea4fe38d299179d47))
10
+ - **parser:** parse MyST directive option blocks ([`17990eb`](https://github.com/jolars/panache/commit/17990eb07e397762f28e2365c95c064dc590cba1))
11
+ - **parser:** add MyST flavor scaffolding ([`b4bdd84`](https://github.com/jolars/panache/commit/b4bdd84f56d8957583b1eb2ca4527d0d4952c1a5))
12
+ - add python-markdown admonitions and pymdownx details ([`b37a5cc`](https://github.com/jolars/panache/commit/b37a5cc2887029953eeb44b673a2fed39f3550be)), fixes [#396](https://github.com/jolars/panache/issues/396)
13
+
14
+ ### Bug Fixes
15
+ - **formatter:** keep block markers inline in sentence wrap ([`3d8717d`](https://github.com/jolars/panache/commit/3d8717d2d3bbfb69dac24fef7715329d54588df0))
16
+ - **formatter:** hoist folded `>-` onto key line ([`0744175`](https://github.com/jolars/panache/commit/07441752bd5ea74e4d2325001112d3f4db4217e1)), fixes [#400](https://github.com/jolars/panache/issues/400)
17
+ - **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)
18
+
19
+ ### Dependencies
20
+ - updated crates/panache-parser to v0.20.0
21
+
3
22
  ## [0.17.0](https://github.com/jolars/panache/compare/panache-formatter-v0.16.0...panache-formatter-v0.17.0) (2026-06-24)
4
23
 
5
24
  ### Features
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "panache-formatter"
3
- version = "0.17.0"
3
+ version = "0.18.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.20.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
  }