panache-cli 3.3.0__tar.gz → 3.5.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 (328) hide show
  1. {panache_cli-3.3.0 → panache_cli-3.5.0}/Cargo.lock +82 -80
  2. {panache_cli-3.3.0 → panache_cli-3.5.0}/Cargo.toml +8 -3
  3. {panache_cli-3.3.0 → panache_cli-3.5.0}/PKG-INFO +4 -4
  4. {panache_cli-3.3.0 → panache_cli-3.5.0}/README.md +3 -3
  5. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/CHANGELOG.md +55 -0
  6. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/Cargo.toml +3 -2
  7. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/config.rs +3 -0
  8. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/code_blocks.rs +18 -11
  9. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/core.rs +560 -314
  10. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/headings.rs +16 -4
  11. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/inline.rs +37 -99
  12. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/inline_layout.rs +25 -64
  13. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/lists.rs +138 -58
  14. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/math/STYLE.md +29 -19
  15. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/math/linebreak.rs +115 -24
  16. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/math/operators.rs +36 -0
  17. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/math/render.rs +34 -3
  18. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/math.rs +27 -0
  19. panache_cli-3.5.0/crates/panache-formatter/src/formatter/preserve.rs +103 -0
  20. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/tables.rs +313 -130
  21. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter.rs +1 -0
  22. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/utils.rs +52 -4
  23. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/CHANGELOG.md +114 -0
  24. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/Cargo.toml +2 -1
  25. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/grid_layout.rs +105 -4
  26. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/lib.rs +3 -1
  27. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/options.rs +68 -3
  28. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/pandoc_ast.rs +522 -579
  29. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/block_dispatcher.rs +226 -88
  30. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/blockquotes.rs +43 -5
  31. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/code_blocks.rs +69 -35
  32. panache_cli-3.5.0/crates/panache-parser/src/parser/blocks/container_prefix.rs +2701 -0
  33. panache_cli-3.5.0/crates/panache-parser/src/parser/blocks/definition_lists.rs +396 -0
  34. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/headings.rs +376 -117
  35. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/horizontal_rules.rs +22 -0
  36. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/html_blocks.rs +44 -207
  37. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/indented_code.rs +3 -3
  38. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/line_blocks.rs +7 -5
  39. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/lists.rs +320 -34
  40. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/metadata.rs +133 -21
  41. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/reference_links.rs +73 -0
  42. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/tables.rs +928 -130
  43. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/tests/blockquotes.rs +469 -11
  44. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/tests/code_blocks.rs +114 -0
  45. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/tests/content_containers.rs +3 -3
  46. panache_cli-3.5.0/crates/panache-parser/src/parser/blocks/tests/definition_lists.rs +1140 -0
  47. panache_cli-3.5.0/crates/panache-parser/src/parser/blocks/tests/footnote_marker_line.rs +163 -0
  48. panache_cli-3.5.0/crates/panache-parser/src/parser/blocks/tests/fragment_context.rs +154 -0
  49. panache_cli-3.5.0/crates/panache-parser/src/parser/blocks/tests/frame_pinning.rs +1166 -0
  50. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/tests/headings.rs +186 -0
  51. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/tests/helpers.rs +15 -1
  52. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/tests/lists.rs +299 -2
  53. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/tests/losslessness.rs +79 -5
  54. panache_cli-3.5.0/crates/panache-parser/src/parser/blocks/tests/tables.rs +2267 -0
  55. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks.rs +6 -0
  56. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/core.rs +1685 -300
  57. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/code_spans.rs +32 -2
  58. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/core.rs +85 -36
  59. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/escapes.rs +15 -2
  60. panache_cli-3.5.0/crates/panache-parser/src/parser/inlines/hard_breaks.rs +102 -0
  61. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/inline_executable.rs +3 -2
  62. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/inline_ir.rs +33 -24
  63. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/raw_inline.rs +3 -2
  64. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/sink.rs +9 -6
  65. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/tests.rs +182 -1
  66. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines.rs +2 -0
  67. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/math.rs +8 -2
  68. panache_cli-3.5.0/crates/panache-parser/src/parser/reparse.rs +3971 -0
  69. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/utils/attributes.rs +205 -7
  70. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/utils/container_stack.rs +139 -0
  71. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/utils/continuation.rs +93 -13
  72. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/utils/helpers.rs +29 -0
  73. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/utils/list_item_buffer.rs +476 -96
  74. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/utils/text_buffer.rs +11 -2
  75. panache_cli-3.5.0/crates/panache-parser/src/parser/verify.rs +150 -0
  76. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/yaml/validator.rs +55 -73
  77. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/yaml.rs +1 -0
  78. panache_cli-3.5.0/crates/panache-parser/src/parser.rs +123 -0
  79. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/attributes.rs +14 -2
  80. panache_cli-3.5.0/crates/panache-parser/src/syntax/code_span.rs +222 -0
  81. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/definitions.rs +7 -0
  82. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/kind.rs +25 -9
  83. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/math.rs +4 -4
  84. panache_cli-3.5.0/crates/panache-parser/src/syntax/tables.rs +486 -0
  85. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax.rs +2 -0
  86. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/bib/csl_yaml.rs +76 -1
  87. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/cache.rs +6 -4
  88. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/cli.rs +7 -3
  89. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/config.rs +25 -3
  90. panache_cli-3.5.0/src/diagnostic_renderer.rs +393 -0
  91. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/formatter.rs +1 -0
  92. panache_cli-3.5.0/src/incremental.rs +338 -0
  93. panache_cli-3.5.0/src/io_context.rs +126 -0
  94. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lib.rs +1 -0
  95. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/code_block_collector.rs +88 -0
  96. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/external_linters/clippy.rs +9 -13
  97. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/external_linters/eslint.rs +16 -20
  98. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/external_linters/jarl.rs +15 -23
  99. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/external_linters/jolars.rs +18 -9
  100. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/external_linters/ruff.rs +11 -17
  101. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/external_linters/shellcheck.rs +8 -10
  102. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/external_linters/staticcheck.rs +7 -8
  103. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/external_linters.rs +223 -2
  104. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/swallowed_list_marker.rs +1 -1
  105. panache_cli-3.5.0/src/linter/rules/table_column_count.rs +145 -0
  106. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/undefined_anchor.rs +16 -0
  107. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules.rs +1 -0
  108. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter.rs +1 -0
  109. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/context.rs +7 -2
  110. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/conversions.rs +84 -52
  111. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/dispatch.rs +46 -8
  112. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/documents.rs +124 -243
  113. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/global_state.rs +115 -15
  114. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/completion.rs +2 -1
  115. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/configuration.rs +21 -1
  116. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/diagnostics.rs +19 -10
  117. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/workspace_symbols.rs +5 -3
  118. panache_cli-3.5.0/src/lsp/line_index.rs +942 -0
  119. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/testing.rs +86 -6
  120. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp.rs +12 -4
  121. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/main.rs +228 -72
  122. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/parser.rs +23 -36
  123. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/range_utils.rs +0 -19
  124. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/salsa.rs +348 -39
  125. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/utils.rs +72 -4
  126. panache_cli-3.3.0/crates/panache-parser/src/parser/blocks/container_prefix.rs +0 -1515
  127. panache_cli-3.3.0/crates/panache-parser/src/parser/blocks/definition_lists.rs +0 -227
  128. panache_cli-3.3.0/crates/panache-parser/src/parser/blocks/tests/definition_lists.rs +0 -343
  129. panache_cli-3.3.0/crates/panache-parser/src/parser/blocks/tests/tables.rs +0 -140
  130. panache_cli-3.3.0/crates/panache-parser/src/parser.rs +0 -767
  131. panache_cli-3.3.0/crates/panache-parser/src/syntax/tables.rs +0 -296
  132. panache_cli-3.3.0/src/diagnostic_renderer.rs +0 -224
  133. panache_cli-3.3.0/src/lsp/line_index.rs +0 -341
  134. {panache_cli-3.3.0 → panache_cli-3.5.0}/LICENSE +0 -0
  135. {panache_cli-3.3.0 → panache_cli-3.5.0}/assets/quarto-schema/schema.json +0 -0
  136. {panache_cli-3.3.0 → panache_cli-3.5.0}/build.rs +0 -0
  137. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/README.md +0 -0
  138. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/directives.rs +0 -0
  139. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/blockquotes.rs +0 -0
  140. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/fenced_divs.rs +0 -0
  141. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/hashpipe.rs +0 -0
  142. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/indent_utils.rs +0 -0
  143. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/metadata.rs +0 -0
  144. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/paragraphs.rs +0 -0
  145. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/sentence_wrap.rs +0 -0
  146. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/shortcodes.rs +0 -0
  147. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/smart.rs +0 -0
  148. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/utils.rs +0 -0
  149. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/yaml/STYLE.md +0 -0
  150. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/yaml/block_map.rs +0 -0
  151. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/yaml/block_sequence.rs +0 -0
  152. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/yaml/document.rs +0 -0
  153. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/yaml/flow.rs +0 -0
  154. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/yaml/options.rs +0 -0
  155. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/yaml/scalar.rs +0 -0
  156. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/formatter/yaml.rs +0 -0
  157. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/lib.rs +0 -0
  158. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/parser.rs +0 -0
  159. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/syntax.rs +0 -0
  160. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-formatter/src/yaml_engine.rs +0 -0
  161. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/README.md +0 -0
  162. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/build.rs +0 -0
  163. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/admonitions.rs +0 -0
  164. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/fenced_divs.rs +0 -0
  165. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/figures.rs +0 -0
  166. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/latex_envs.rs +0 -0
  167. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/myst_directives.rs +0 -0
  168. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/myst_targets.rs +0 -0
  169. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/paragraphs.rs +0 -0
  170. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/raw_blocks.rs +0 -0
  171. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/tests/blanklines.rs +0 -0
  172. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/tests/figures.rs +0 -0
  173. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/blocks/tests/metadata_guards.rs +0 -0
  174. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/diagnostics.rs +0 -0
  175. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/bookdown.rs +0 -0
  176. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/bracketed_spans.rs +0 -0
  177. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/citations.rs +0 -0
  178. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/emoji.rs +0 -0
  179. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/inline_footnotes.rs +0 -0
  180. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/inline_html.rs +0 -0
  181. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/latex.rs +0 -0
  182. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/links.rs +0 -0
  183. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/mark.rs +0 -0
  184. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/math.rs +0 -0
  185. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/myst_roles.rs +0 -0
  186. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/myst_substitutions.rs +0 -0
  187. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/native_spans.rs +0 -0
  188. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/refdef_map.rs +0 -0
  189. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/shortcodes.rs +0 -0
  190. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/strikeout.rs +0 -0
  191. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/subscript.rs +0 -0
  192. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/superscript.rs +0 -0
  193. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/svelte.rs +0 -0
  194. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/uri-schemes.csv +0 -0
  195. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/inlines/wikilinks.rs +0 -0
  196. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/utils/chunk_options.rs +0 -0
  197. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/utils/inline_emission.rs +0 -0
  198. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/utils/marker_utils.rs +0 -0
  199. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/utils/tree_copy.rs +0 -0
  200. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/utils/yaml_regions.rs +0 -0
  201. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/utils.rs +0 -0
  202. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/yaml/cooking.rs +0 -0
  203. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/yaml/events.rs +0 -0
  204. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/yaml/model.rs +0 -0
  205. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/yaml/parser.rs +0 -0
  206. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/yaml/profile.rs +0 -0
  207. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/parser/yaml/scanner.rs +0 -0
  208. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/range_utils.rs +0 -0
  209. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/alerts.rs +0 -0
  210. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/ast.rs +0 -0
  211. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/block_quotes.rs +0 -0
  212. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/blocks.rs +0 -0
  213. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/chunk_options.rs +0 -0
  214. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/citations.rs +0 -0
  215. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/code_blocks.rs +0 -0
  216. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/crossrefs.rs +0 -0
  217. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/fenced_divs.rs +0 -0
  218. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/headings.rs +0 -0
  219. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/inlines.rs +0 -0
  220. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/links.rs +0 -0
  221. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/lists.rs +0 -0
  222. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/myst.rs +0 -0
  223. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/raw_tex.rs +0 -0
  224. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/references.rs +0 -0
  225. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/shortcodes.rs +0 -0
  226. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/yaml.rs +0 -0
  227. {panache_cli-3.3.0 → panache_cli-3.5.0}/crates/panache-parser/src/syntax/yaml_ast.rs +0 -0
  228. {panache_cli-3.3.0 → panache_cli-3.5.0}/pyproject.toml +0 -0
  229. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/bib/bibtex.rs +0 -0
  230. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/bib/csl_json.rs +0 -0
  231. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/bib/index.rs +0 -0
  232. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/bib/preview.rs +0 -0
  233. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/bib/ris.rs +0 -0
  234. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/bib.rs +0 -0
  235. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/bin/distill_quarto_schema.rs +0 -0
  236. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/config/formatter_presets.rs +0 -0
  237. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/config/types/schema_helpers.rs +0 -0
  238. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/config/types.rs +0 -0
  239. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/directives.rs +0 -0
  240. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/external_formatters_common.rs +0 -0
  241. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/external_formatters_sync.rs +0 -0
  242. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/external_tools_common.rs +0 -0
  243. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/includes.rs +0 -0
  244. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/diagnostics.rs +0 -0
  245. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/external_linters_sync.rs +0 -0
  246. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/fuzzy.rs +0 -0
  247. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/index.rs +0 -0
  248. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/metadata_diagnostics.rs +0 -0
  249. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/offsets.rs +0 -0
  250. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/project_index.rs +0 -0
  251. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/quarto_schema/distill.rs +0 -0
  252. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/quarto_schema/interp.rs +0 -0
  253. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/quarto_schema/model.rs +0 -0
  254. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/quarto_schema/report.rs +0 -0
  255. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/quarto_schema/value.rs +0 -0
  256. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/quarto_schema.rs +0 -0
  257. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/adjacent_footnote_refs.rs +0 -0
  258. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/chunk_label_spaces.rs +0 -0
  259. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/citation_keys.rs +0 -0
  260. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/citation_nonbreaking_space.rs +0 -0
  261. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/consumer_divergence.rs +0 -0
  262. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/crossref_as_link_target.rs +0 -0
  263. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/duplicate_references.rs +0 -0
  264. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/duplicate_yaml_anchor.rs +0 -0
  265. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/emoji_aliases.rs +0 -0
  266. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/empty_list_item.rs +0 -0
  267. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/empty_values.rs +0 -0
  268. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/figure_crossref_captions.rs +0 -0
  269. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/footnote_after_image.rs +0 -0
  270. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/footnote_ref_in_footnote_def.rs +0 -0
  271. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/footnote_swallowed_by_bracket.rs +0 -0
  272. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/heading_eaten_attrs.rs +0 -0
  273. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/heading_hierarchy.rs +0 -0
  274. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/heading_strip_comments_residue.rs +0 -0
  275. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/html_entities.rs +0 -0
  276. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/link_text_is_url.rs +0 -0
  277. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/math_content.rs +0 -0
  278. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/missing_chunk_labels.rs +0 -0
  279. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/quarto_schema.rs +0 -0
  280. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/reversed_footnote_marker.rs +0 -0
  281. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/stray_fenced_div_markers.rs +0 -0
  282. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/undefined_references.rs +0 -0
  283. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/unspaced_citation.rs +0 -0
  284. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/unsupported_metadata_key.rs +0 -0
  285. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/unused_definitions.rs +0 -0
  286. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/rules/unused_yaml_anchor.rs +0 -0
  287. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/runner.rs +0 -0
  288. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/yaml_anchors.rs +0 -0
  289. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/linter/yaml_resolve.rs +0 -0
  290. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/config.rs +0 -0
  291. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/code_actions.rs +0 -0
  292. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/document_highlight.rs +0 -0
  293. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/document_links.rs +0 -0
  294. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/document_symbols.rs +0 -0
  295. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/file_operations.rs +0 -0
  296. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/file_rename.rs +0 -0
  297. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/file_watcher.rs +0 -0
  298. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/folding_ranges.rs +0 -0
  299. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/footnote_conversion.rs +0 -0
  300. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/formatting.rs +0 -0
  301. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/goto_definition.rs +0 -0
  302. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/heading_link_conversion.rs +0 -0
  303. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/hover.rs +0 -0
  304. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/link_conversion.rs +0 -0
  305. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/linked_editing_range.rs +0 -0
  306. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/list_conversion.rs +0 -0
  307. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/prepare_rename.rs +0 -0
  308. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/references.rs +0 -0
  309. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/rename.rs +0 -0
  310. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/semantic_tokens.rs +0 -0
  311. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/shortcode_args.rs +0 -0
  312. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers/workspace_folders.rs +0 -0
  313. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/handlers.rs +0 -0
  314. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/helpers.rs +0 -0
  315. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/navigation.rs +0 -0
  316. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/symbols.rs +0 -0
  317. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/task_pool.rs +0 -0
  318. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/lsp/uri_ext.rs +0 -0
  319. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/metadata/bibliography.rs +0 -0
  320. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/metadata/citations.rs +0 -0
  321. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/metadata/project.rs +0 -0
  322. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/metadata/references.rs +0 -0
  323. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/metadata/yaml.rs +0 -0
  324. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/metadata.rs +0 -0
  325. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/syntax.rs +0 -0
  326. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/vfs.rs +0 -0
  327. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/yaml_engine.rs +0 -0
  328. {panache_cli-3.3.0 → panache_cli-3.5.0}/src/yaml_regions.rs +0 -0
@@ -160,9 +160,9 @@ checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
160
160
 
161
161
  [[package]]
162
162
  name = "bstr"
163
- version = "1.13.0"
163
+ version = "1.13.1"
164
164
  source = "registry+https://github.com/rust-lang/crates.io-index"
165
- checksum = "1f7dc094d718f2e1c1559ad110e27eeaae14a5465d3d56dd6dbd793079fbd530"
165
+ checksum = "6bb31b46c14244e20ee9984b11bf5c992b91fb6939fea616e3512c8baecdbe5f"
166
166
  dependencies = [
167
167
  "memchr",
168
168
  "regex-automata",
@@ -238,9 +238,9 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
238
238
 
239
239
  [[package]]
240
240
  name = "clap_mangen"
241
- version = "0.3.2"
241
+ version = "0.3.3"
242
242
  source = "registry+https://github.com/rust-lang/crates.io-index"
243
- checksum = "c630ddc90572b3d9abd3f887f0007b4e048faf5c5a59ae607f8ac1c5e3790873"
243
+ checksum = "211d617eaa4b735c96c9e0228fcbdb5120ef623f2b8cb67ffb84c3e02dbc28a4"
244
244
  dependencies = [
245
245
  "clap",
246
246
  "roff",
@@ -594,21 +594,21 @@ dependencies = [
594
594
 
595
595
  [[package]]
596
596
  name = "futures-core"
597
- version = "0.3.33"
597
+ version = "0.3.34"
598
598
  source = "registry+https://github.com/rust-lang/crates.io-index"
599
- checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
599
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
600
600
 
601
601
  [[package]]
602
602
  name = "futures-task"
603
- version = "0.3.33"
603
+ version = "0.3.34"
604
604
  source = "registry+https://github.com/rust-lang/crates.io-index"
605
- checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
605
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
606
606
 
607
607
  [[package]]
608
608
  name = "futures-util"
609
- version = "0.3.33"
609
+ version = "0.3.34"
610
610
  source = "registry+https://github.com/rust-lang/crates.io-index"
611
- checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
611
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
612
612
  dependencies = [
613
613
  "futures-core",
614
614
  "futures-task",
@@ -705,9 +705,9 @@ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
705
705
 
706
706
  [[package]]
707
707
  name = "icu_collections"
708
- version = "2.2.0"
708
+ version = "2.3.0"
709
709
  source = "registry+https://github.com/rust-lang/crates.io-index"
710
- checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
710
+ checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"
711
711
  dependencies = [
712
712
  "displaydoc",
713
713
  "potential_utf",
@@ -719,9 +719,9 @@ dependencies = [
719
719
 
720
720
  [[package]]
721
721
  name = "icu_locale_core"
722
- version = "2.2.0"
722
+ version = "2.3.0"
723
723
  source = "registry+https://github.com/rust-lang/crates.io-index"
724
- checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
724
+ checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"
725
725
  dependencies = [
726
726
  "displaydoc",
727
727
  "litemap",
@@ -732,9 +732,9 @@ dependencies = [
732
732
 
733
733
  [[package]]
734
734
  name = "icu_normalizer"
735
- version = "2.2.0"
735
+ version = "2.3.0"
736
736
  source = "registry+https://github.com/rust-lang/crates.io-index"
737
- checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
737
+ checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f"
738
738
  dependencies = [
739
739
  "icu_collections",
740
740
  "icu_normalizer_data",
@@ -746,16 +746,17 @@ dependencies = [
746
746
 
747
747
  [[package]]
748
748
  name = "icu_normalizer_data"
749
- version = "2.2.0"
749
+ version = "2.3.0"
750
750
  source = "registry+https://github.com/rust-lang/crates.io-index"
751
- checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
751
+ checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0"
752
752
 
753
753
  [[package]]
754
754
  name = "icu_properties"
755
- version = "2.2.0"
755
+ version = "2.3.0"
756
756
  source = "registry+https://github.com/rust-lang/crates.io-index"
757
- checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
757
+ checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148"
758
758
  dependencies = [
759
+ "displaydoc",
759
760
  "icu_collections",
760
761
  "icu_locale_core",
761
762
  "icu_properties_data",
@@ -766,15 +767,15 @@ dependencies = [
766
767
 
767
768
  [[package]]
768
769
  name = "icu_properties_data"
769
- version = "2.2.0"
770
+ version = "2.3.0"
770
771
  source = "registry+https://github.com/rust-lang/crates.io-index"
771
- checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
772
+ checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"
772
773
 
773
774
  [[package]]
774
775
  name = "icu_provider"
775
- version = "2.2.0"
776
+ version = "2.3.0"
776
777
  source = "registry+https://github.com/rust-lang/crates.io-index"
777
- checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
778
+ checksum = "92a7ed671a6aad807a8651a2e1782a6598fda9ce5185dd8158549e95a91c6428"
778
779
  dependencies = [
779
780
  "displaydoc",
780
781
  "icu_locale_core",
@@ -916,9 +917,9 @@ dependencies = [
916
917
 
917
918
  [[package]]
918
919
  name = "js-sys"
919
- version = "0.3.103"
920
+ version = "0.3.104"
920
921
  source = "registry+https://github.com/rust-lang/crates.io-index"
921
- checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
922
+ checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
922
923
  dependencies = [
923
924
  "cfg-if",
924
925
  "futures-util",
@@ -927,9 +928,9 @@ dependencies = [
927
928
 
928
929
  [[package]]
929
930
  name = "jsonschema"
930
- version = "0.49.6"
931
+ version = "0.49.9"
931
932
  source = "registry+https://github.com/rust-lang/crates.io-index"
932
- checksum = "7e17384278234b10419a63c93fc85695ac9fc2da0833e3c59167f9986499590c"
933
+ checksum = "59ec8a241beed129f06114aa68007e905ca350e7baeb6e17a7631bb7978d91b2"
933
934
  dependencies = [
934
935
  "ahash",
935
936
  "bytecount",
@@ -956,18 +957,18 @@ dependencies = [
956
957
 
957
958
  [[package]]
958
959
  name = "jsonschema-regex"
959
- version = "0.49.6"
960
+ version = "0.49.9"
960
961
  source = "registry+https://github.com/rust-lang/crates.io-index"
961
- checksum = "ac634e339e73bf9629f6fb207f7b064d872253ae3b3f5c6e0ce8fd762b16e40f"
962
+ checksum = "91994f45017ed5e66aa8e59b8415f4cb033a6380d7200387b7cf117595fbdf85"
962
963
  dependencies = [
963
964
  "regex-syntax",
964
965
  ]
965
966
 
966
967
  [[package]]
967
968
  name = "jsonschema-value"
968
- version = "0.49.6"
969
+ version = "0.49.9"
969
970
  source = "registry+https://github.com/rust-lang/crates.io-index"
970
- checksum = "92b8e258eb4515a3fc912a9c46e3987040dc07280592280097ea2085527870b8"
971
+ checksum = "7ec7637f83e510868ae6ed625f7ebfbbde4554ee8ce49854caa5126a8b9b9ecb"
971
972
  dependencies = [
972
973
  "ahash",
973
974
  "bytecount",
@@ -991,9 +992,9 @@ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
991
992
 
992
993
  [[package]]
993
994
  name = "libredox"
994
- version = "0.1.19"
995
+ version = "0.1.20"
995
996
  source = "registry+https://github.com/rust-lang/crates.io-index"
996
- checksum = "2026a5056764a10b2bf5d56488cba40da507f5493a6a429340e2004d9ed085fa"
997
+ checksum = "28d0a00925a9f930d679b6789b721e3a7f9ed110f41b86d2497caa780c3a070a"
997
998
  dependencies = [
998
999
  "libc",
999
1000
  ]
@@ -1006,9 +1007,9 @@ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1006
1007
 
1007
1008
  [[package]]
1008
1009
  name = "litemap"
1009
- version = "0.8.2"
1010
+ version = "0.8.3"
1010
1011
  source = "registry+https://github.com/rust-lang/crates.io-index"
1011
- checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1012
+ checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
1012
1013
 
1013
1014
  [[package]]
1014
1015
  name = "lock_api"
@@ -1129,9 +1130,9 @@ dependencies = [
1129
1130
 
1130
1131
  [[package]]
1131
1132
  name = "num-integer"
1132
- version = "0.1.46"
1133
+ version = "0.1.47"
1133
1134
  source = "registry+https://github.com/rust-lang/crates.io-index"
1134
- checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1135
+ checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
1135
1136
  dependencies = [
1136
1137
  "num-traits",
1137
1138
  ]
@@ -1202,7 +1203,7 @@ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
1202
1203
 
1203
1204
  [[package]]
1204
1205
  name = "panache"
1205
- version = "3.3.0"
1206
+ version = "3.5.0"
1206
1207
  dependencies = [
1207
1208
  "annotate-snippets",
1208
1209
  "assert_cmd",
@@ -1222,6 +1223,7 @@ dependencies = [
1222
1223
  "log",
1223
1224
  "lsp-server",
1224
1225
  "lsp-types",
1226
+ "memchr",
1225
1227
  "num_cpus",
1226
1228
  "panache-formatter",
1227
1229
  "panache-parser",
@@ -1234,7 +1236,7 @@ dependencies = [
1234
1236
  "schemars",
1235
1237
  "serde",
1236
1238
  "serde_json",
1237
- "similar 3.1.2",
1239
+ "similar 3.2.0",
1238
1240
  "similar-asserts",
1239
1241
  "tempfile",
1240
1242
  "toml",
@@ -1246,7 +1248,7 @@ dependencies = [
1246
1248
 
1247
1249
  [[package]]
1248
1250
  name = "panache-formatter"
1249
- version = "0.20.5"
1251
+ version = "0.21.1"
1250
1252
  dependencies = [
1251
1253
  "insta",
1252
1254
  "log",
@@ -1264,7 +1266,7 @@ dependencies = [
1264
1266
 
1265
1267
  [[package]]
1266
1268
  name = "panache-parser"
1267
- version = "0.25.0"
1269
+ version = "0.27.0"
1268
1270
  dependencies = [
1269
1271
  "entities",
1270
1272
  "insta",
@@ -1349,9 +1351,9 @@ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1349
1351
 
1350
1352
  [[package]]
1351
1353
  name = "portable-atomic"
1352
- version = "1.14.0"
1354
+ version = "1.15.0"
1353
1355
  source = "registry+https://github.com/rust-lang/crates.io-index"
1354
- checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
1356
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
1355
1357
 
1356
1358
  [[package]]
1357
1359
  name = "portable-atomic-util"
@@ -1364,9 +1366,9 @@ dependencies = [
1364
1366
 
1365
1367
  [[package]]
1366
1368
  name = "potential_utf"
1367
- version = "0.1.5"
1369
+ version = "0.1.6"
1368
1370
  source = "registry+https://github.com/rust-lang/crates.io-index"
1369
- checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1371
+ checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
1370
1372
  dependencies = [
1371
1373
  "zerovec",
1372
1374
  ]
@@ -1513,9 +1515,9 @@ dependencies = [
1513
1515
 
1514
1516
  [[package]]
1515
1517
  name = "referencing"
1516
- version = "0.49.6"
1518
+ version = "0.49.9"
1517
1519
  source = "registry+https://github.com/rust-lang/crates.io-index"
1518
- checksum = "42902112f88a27e9afd5683e2ba31956fed2a5d43395f166dd26775ae9c0dedb"
1520
+ checksum = "6efa2154ea6f5ce0fdecdd2a8d18f2fa1a39a8fbba91564f555a592e4dce8278"
1519
1521
  dependencies = [
1520
1522
  "ahash",
1521
1523
  "fluent-uri 0.4.1",
@@ -1790,9 +1792,9 @@ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
1790
1792
 
1791
1793
  [[package]]
1792
1794
  name = "similar"
1793
- version = "3.1.2"
1795
+ version = "3.2.0"
1794
1796
  source = "registry+https://github.com/rust-lang/crates.io-index"
1795
- checksum = "85ee016af5d736b69fc89e19254540fa4b5f5492853fb5503920f084011c78b6"
1797
+ checksum = "4f66ca1f7aca2474dc10c942eb22feffc897735f54cd1db90138c2fddb490987"
1796
1798
  dependencies = [
1797
1799
  "bstr",
1798
1800
  "unicode-segmentation",
@@ -1805,7 +1807,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
1807
  checksum = "997e6ca38e97437973fc9f7f50a50d1274cacd874341a4960fea90067291038c"
1806
1808
  dependencies = [
1807
1809
  "console",
1808
- "similar 3.1.2",
1810
+ "similar 3.2.0",
1809
1811
  ]
1810
1812
 
1811
1813
  [[package]]
@@ -1925,18 +1927,18 @@ checksum = "79def32ffcd477db1ff26f76dab9e3a91f0bd42a85ca96577089b24623056f9d"
1925
1927
 
1926
1928
  [[package]]
1927
1929
  name = "thiserror"
1928
- version = "2.0.19"
1930
+ version = "2.0.20"
1929
1931
  source = "registry+https://github.com/rust-lang/crates.io-index"
1930
- checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
1932
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
1931
1933
  dependencies = [
1932
1934
  "thiserror-impl",
1933
1935
  ]
1934
1936
 
1935
1937
  [[package]]
1936
1938
  name = "thiserror-impl"
1937
- version = "2.0.19"
1939
+ version = "2.0.20"
1938
1940
  source = "registry+https://github.com/rust-lang/crates.io-index"
1939
- checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
1941
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
1940
1942
  dependencies = [
1941
1943
  "proc-macro2",
1942
1944
  "quote",
@@ -1951,9 +1953,9 @@ checksum = "650d82e943da333637be9f1567d33d605e76810a26464edfd7ae74f7ef181e95"
1951
1953
 
1952
1954
  [[package]]
1953
1955
  name = "tinystr"
1954
- version = "0.8.3"
1956
+ version = "0.8.4"
1955
1957
  source = "registry+https://github.com/rust-lang/crates.io-index"
1956
- checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1958
+ checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"
1957
1959
  dependencies = [
1958
1960
  "displaydoc",
1959
1961
  "zerovec",
@@ -2061,9 +2063,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2061
2063
 
2062
2064
  [[package]]
2063
2065
  name = "uuid"
2064
- version = "1.24.0"
2066
+ version = "1.24.1"
2065
2067
  source = "registry+https://github.com/rust-lang/crates.io-index"
2066
- checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
2068
+ checksum = "2cefc03fd367c0c6d4305de1b312cf00248c4114f4a0418ce6a6af769e3b0bd9"
2067
2069
  dependencies = [
2068
2070
  "getrandom 0.4.3",
2069
2071
  "js-sys",
@@ -2128,9 +2130,9 @@ dependencies = [
2128
2130
 
2129
2131
  [[package]]
2130
2132
  name = "wasm-bindgen"
2131
- version = "0.2.126"
2133
+ version = "0.2.127"
2132
2134
  source = "registry+https://github.com/rust-lang/crates.io-index"
2133
- checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
2135
+ checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
2134
2136
  dependencies = [
2135
2137
  "cfg-if",
2136
2138
  "once_cell",
@@ -2141,9 +2143,9 @@ dependencies = [
2141
2143
 
2142
2144
  [[package]]
2143
2145
  name = "wasm-bindgen-macro"
2144
- version = "0.2.126"
2146
+ version = "0.2.127"
2145
2147
  source = "registry+https://github.com/rust-lang/crates.io-index"
2146
- checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
2148
+ checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
2147
2149
  dependencies = [
2148
2150
  "quote",
2149
2151
  "wasm-bindgen-macro-support",
@@ -2151,9 +2153,9 @@ dependencies = [
2151
2153
 
2152
2154
  [[package]]
2153
2155
  name = "wasm-bindgen-macro-support"
2154
- version = "0.2.126"
2156
+ version = "0.2.127"
2155
2157
  source = "registry+https://github.com/rust-lang/crates.io-index"
2156
- checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
2158
+ checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
2157
2159
  dependencies = [
2158
2160
  "bumpalo",
2159
2161
  "proc-macro2",
@@ -2164,9 +2166,9 @@ dependencies = [
2164
2166
 
2165
2167
  [[package]]
2166
2168
  name = "wasm-bindgen-shared"
2167
- version = "0.2.126"
2169
+ version = "0.2.127"
2168
2170
  source = "registry+https://github.com/rust-lang/crates.io-index"
2169
- checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
2171
+ checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
2170
2172
  dependencies = [
2171
2173
  "unicode-ident",
2172
2174
  ]
@@ -2191,9 +2193,9 @@ dependencies = [
2191
2193
 
2192
2194
  [[package]]
2193
2195
  name = "wincode"
2194
- version = "0.6.0"
2196
+ version = "0.6.1"
2195
2197
  source = "registry+https://github.com/rust-lang/crates.io-index"
2196
- checksum = "b5d39d1a984eb7ae37afa348f058216d62a6d5f71640f4113a8114386c2a812a"
2198
+ checksum = "bfc6339f1ba427bf7ad7c42403b28e524832ba2ddb5eef1bb2cc3b85db6b7b75"
2197
2199
  dependencies = [
2198
2200
  "pastey",
2199
2201
  "proc-macro2",
@@ -2204,9 +2206,9 @@ dependencies = [
2204
2206
 
2205
2207
  [[package]]
2206
2208
  name = "wincode-derive"
2207
- version = "0.5.0"
2209
+ version = "0.5.1"
2208
2210
  source = "registry+https://github.com/rust-lang/crates.io-index"
2209
- checksum = "4cb427b174d0f50b407f003623db1d892986e780651ee9d4231f3c9fe9ffcbb7"
2211
+ checksum = "11d582d9fc9d813264407a9e16bfa16846ccf15ef032f9bbcd700741bdc00255"
2210
2212
  dependencies = [
2211
2213
  "darling",
2212
2214
  "proc-macro2",
@@ -2252,9 +2254,9 @@ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2252
2254
 
2253
2255
  [[package]]
2254
2256
  name = "writeable"
2255
- version = "0.6.3"
2257
+ version = "0.6.4"
2256
2258
  source = "registry+https://github.com/rust-lang/crates.io-index"
2257
- checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2259
+ checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
2258
2260
 
2259
2261
  [[package]]
2260
2262
  name = "yaml_parser"
@@ -2332,9 +2334,9 @@ dependencies = [
2332
2334
 
2333
2335
  [[package]]
2334
2336
  name = "zerotrie"
2335
- version = "0.2.4"
2337
+ version = "0.2.5"
2336
2338
  source = "registry+https://github.com/rust-lang/crates.io-index"
2337
- checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2339
+ checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"
2338
2340
  dependencies = [
2339
2341
  "displaydoc",
2340
2342
  "yoke",
@@ -2343,9 +2345,9 @@ dependencies = [
2343
2345
 
2344
2346
  [[package]]
2345
2347
  name = "zerovec"
2346
- version = "0.11.6"
2348
+ version = "0.11.7"
2347
2349
  source = "registry+https://github.com/rust-lang/crates.io-index"
2348
- checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2350
+ checksum = "94b5c6b5976d66c1d703c4fd17d3f5e43c8cedaacf604961b171adc7130896d8"
2349
2351
  dependencies = [
2350
2352
  "yoke",
2351
2353
  "zerofrom",
@@ -2354,13 +2356,13 @@ dependencies = [
2354
2356
 
2355
2357
  [[package]]
2356
2358
  name = "zerovec-derive"
2357
- version = "0.11.3"
2359
+ version = "0.11.4"
2358
2360
  source = "registry+https://github.com/rust-lang/crates.io-index"
2359
- checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2361
+ checksum = "47402523226a02bfe5230160dc3ccc089aa6f6f19e7fcbb4e6f824bbb1b4aa62"
2360
2362
  dependencies = [
2361
2363
  "proc-macro2",
2362
2364
  "quote",
2363
- "syn 2.0.119",
2365
+ "syn 3.0.3",
2364
2366
  ]
2365
2367
 
2366
2368
  [[package]]
@@ -1,5 +1,8 @@
1
1
  [workspace.package]
2
2
  edition = "2024"
3
+ # Kept in lockstep with the pinned toolchain in `rust-toolchain.toml`, which is
4
+ # the only version CI builds. Bump both together.
5
+ rust-version = "1.94"
3
6
  license = "MIT"
4
7
  repository = "https://github.com/jolars/panache"
5
8
  homepage = "https://panache.bz"
@@ -7,8 +10,9 @@ authors = ["Johan Larsson <johan@jolars.co>"]
7
10
 
8
11
  [package]
9
12
  name = "panache"
10
- version = "3.3.0"
13
+ version = "3.5.0"
11
14
  edition.workspace = true
15
+ rust-version.workspace = true
12
16
  # `distill_quarto_schema` is a dev-only vendoring bin (src/bin/); keep bare
13
17
  # `cargo run` resolving to the CLI for tooling like the pre-commit format hook.
14
18
  default-run = "panache"
@@ -48,8 +52,8 @@ path = "src/main.rs"
48
52
  required-features = ["cli"]
49
53
 
50
54
  [dependencies]
51
- panache-formatter = { path = "crates/panache-formatter", version = "0.20.5" }
52
- panache-parser = { path = "crates/panache-parser", version = "0.25.0", features = [
55
+ panache-formatter = { path = "crates/panache-formatter", version = "0.21.1" }
56
+ panache-parser = { path = "crates/panache-parser", version = "0.27.0", features = [
53
57
  "serde",
54
58
  "schema",
55
59
  ] }
@@ -65,6 +69,7 @@ ignore = { version = "0.4.29", optional = true }
65
69
  log = { version = "0.4.31", features = ["release_max_level_debug"] }
66
70
  lsp-server = { version = "0.10.0", optional = true }
67
71
  lsp-types = { version = "0.97.0", optional = true }
72
+ memchr = "2.8.3"
68
73
  num_cpus = { version = "1.17.0", optional = true }
69
74
  percent-encoding = { version = "2.3.2", optional = true }
70
75
  regex = "1.12.2"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: panache-cli
3
- Version: 3.3.0
3
+ Version: 3.5.0
4
4
  Classifier: Development Status :: 5 - Production/Stable
5
5
  Classifier: Environment :: Console
6
6
  Classifier: Intended Audience :: Developers
@@ -47,7 +47,7 @@ linters on code blocks.
47
47
 
48
48
  Panache is available from several sources:
49
49
 
50
- - **crates.io**: `cargo install panache`
50
+ - **crates.io**: `cargo install --locked panache`
51
51
  - **Homebrew**: `brew install panache`
52
52
  - **npm**: `npm install -g @panache-cli/panache` (or `npx @panache-cli/panache`)
53
53
  - **PyPI**: `uv tool install panache-cli`/`pipx install panache-cli`
@@ -213,12 +213,12 @@ Panache looks for a configuration in:
213
213
  ```toml
214
214
  # Markdown flavor and line width
215
215
  flavor = "quarto"
216
- line-width = 80
217
- line-ending = "auto"
218
216
 
219
217
  # Formatting style
220
218
  [format]
221
219
  wrap = "reflow"
220
+ line-width = 80
221
+ line-ending = "auto"
222
222
 
223
223
  # External code formatters (opt-in)
224
224
  [formatters]
@@ -21,7 +21,7 @@ linters on code blocks.
21
21
 
22
22
  Panache is available from several sources:
23
23
 
24
- - **crates.io**: `cargo install panache`
24
+ - **crates.io**: `cargo install --locked panache`
25
25
  - **Homebrew**: `brew install panache`
26
26
  - **npm**: `npm install -g @panache-cli/panache` (or `npx @panache-cli/panache`)
27
27
  - **PyPI**: `uv tool install panache-cli`/`pipx install panache-cli`
@@ -187,12 +187,12 @@ Panache looks for a configuration in:
187
187
  ```toml
188
188
  # Markdown flavor and line width
189
189
  flavor = "quarto"
190
- line-width = 80
191
- line-ending = "auto"
192
190
 
193
191
  # Formatting style
194
192
  [format]
195
193
  wrap = "reflow"
194
+ line-width = 80
195
+ line-ending = "auto"
196
196
 
197
197
  # External code formatters (opt-in)
198
198
  [formatters]
@@ -1,5 +1,60 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.21.1](https://github.com/jolars/panache/compare/panache-formatter-v0.21.0...panache-formatter-v0.21.1) (2026-08-17)
4
+
5
+ ### Bug Fixes
6
+ - **parser:** anchor yaml metadata delimiters at column 0 ([`55e3999`](https://github.com/jolars/panache/commit/55e3999730d4987bc37f369733ed0f420d9e6c40))
7
+ - gate heading auto-ids on `auto_identifiers` ([`efd4ae0`](https://github.com/jolars/panache/commit/efd4ae053acdad06f0f559ffdff803fd77348bf8))
8
+ - **formatter:** stop trimming heading content hashes ([`cee2dbf`](https://github.com/jolars/panache/commit/cee2dbfe3efa3a240b838aa5dbd4e1f2dba3d1d6))
9
+ - **formatter:** keep a load-bearing heading `#` run ([`be48179`](https://github.com/jolars/panache/commit/be481798358fc2722da2a3dbb1241bdb4d27bb80))
10
+ - **parser:** fold whitespace into a backslash line break ([`eaf42a0`](https://github.com/jolars/panache/commit/eaf42a00e77fe3bfda14a01e1568605f5b9c2785))
11
+ - **formatter:** drop trailing whitespace under `wrap = preserve` ([`d3fdd9f`](https://github.com/jolars/panache/commit/d3fdd9fc1e259112462709cbad91e3135010eb63)), closes [#496](https://github.com/jolars/panache/issues/496)
12
+
13
+ ### Dependencies
14
+ - updated crates/panache-parser to v0.27.0
15
+
16
+ ## [0.21.0](https://github.com/jolars/panache/compare/panache-formatter-v0.20.5...panache-formatter-v0.21.0) (2026-08-14)
17
+
18
+ ### Features
19
+ - **parser:** tag container prefix as `LINE_PREFIX` ([`1d4ac7c`](https://github.com/jolars/panache/commit/1d4ac7c1720dd51328917b6747f84628d8637bcd))
20
+
21
+ ### Bug Fixes
22
+ - **formatter:** strip source container indent from code ([`b6304a5`](https://github.com/jolars/panache/commit/b6304a52959b12fa5bab958d626c66b14c395fc8)), closes [#498](https://github.com/jolars/panache/issues/498)
23
+ - **formatter:** collapse pipe-table cell whitespace ([`69c5282`](https://github.com/jolars/panache/commit/69c52825edeeb3a7fabfed0332d1ef53741b6d1b))
24
+ - **formatter:** collapse simple-table cell whitespace ([`840562c`](https://github.com/jolars/panache/commit/840562c6a3d9fe50bea4fb3cc52952b91da04d47))
25
+ - **parser:** split row bands at hybrid sep lines ([`712fee3`](https://github.com/jolars/panache/commit/712fee3fd3fc2fca3c3323fe66d10dd4e9ab1297))
26
+ - **formatter:** align simple tables like pandoc ([`488fa81`](https://github.com/jolars/panache/commit/488fa810f3dfa8c6bf751fe0f094c3b41f2b451c))
27
+ - **parser:** nest ordered marker at content column ([`0f50724`](https://github.com/jolars/panache/commit/0f507241a08fbb117d87e2014d4978a6c1cdcadc))
28
+ - **formatter:** keep literal `>` in quoted list items ([`d16000d`](https://github.com/jolars/panache/commit/d16000d4cdfc69f07668d7c58c81163e5ab562ee))
29
+ - **formatter:** stop quote depth at list item ([`54a6059`](https://github.com/jolars/panache/commit/54a6059cc58c9ed090c3603e9de74d0207bdaba8))
30
+ - **formatter:** keep nested list indent in quotes ([`d16845e`](https://github.com/jolars/panache/commit/d16845ef2d10d49b0627ca720ece4b2add1afc3b))
31
+ - **parser:** apply table footer rule at run ends ([`89bc3cd`](https://github.com/jolars/panache/commit/89bc3cdb7403fea2fcd53ae06a7abd8dfc1c0e9e))
32
+ - **parser:** keep rowspan grids whole in containers ([`2e5ac3b`](https://github.com/jolars/panache/commit/2e5ac3b1f5aec13e97b7a7d26358ee0f54a57124))
33
+ - **linter:** dedent code sent to external linters ([`9e374a6`](https://github.com/jolars/panache/commit/9e374a6811a89133c7cb8cb00c8b888e15169395))
34
+ - **formatter:** dedent table verbatim fallbacks ([`a5a026d`](https://github.com/jolars/panache/commit/a5a026da5b857e5c81f533e251f53d368374966c))
35
+ - **formatter:** lay out grid tables on dedented lines ([`ba20f86`](https://github.com/jolars/panache/commit/ba20f8605f6e942d3f5896cb2508646dd744a1bf))
36
+ - **parser:** take pipe table columns from the delimiter row ([`d194da2`](https://github.com/jolars/panache/commit/d194da21162ba97d4a98fec598e69a6d4f097849))
37
+ - **parser:** open a container body with a pipe table ([`0e11028`](https://github.com/jolars/panache/commit/0e11028bde7eb5ce82ca0c0fcfa3f32a56e079d7))
38
+ - **formatter:** measure table columns past quote prefix ([`2b9f223`](https://github.com/jolars/panache/commit/2b9f223f39b6e5c5e3049d4700165b21c923bef1))
39
+ - **formatter:** keep unhandled blocks inside the blockquote ([`82041d5`](https://github.com/jolars/panache/commit/82041d52ef586f45b45d5a8e4ba3e93093fda136))
40
+ - **formatter:** prefix `PLAIN` children in quotes ([`fb8b610`](https://github.com/jolars/panache/commit/fb8b61066aa42ccc36da5a5e9e4efa8b74ccaaeb))
41
+ - **formatter:** indent nested container tables ([`71d2df9`](https://github.com/jolars/panache/commit/71d2df955b18f5964d22a46b1e76b7d0034c10e2))
42
+ - **formatter:** guard definition markers in container bodies ([`8c1535d`](https://github.com/jolars/panache/commit/8c1535d2aa566ebda7d796a012d5fbd1adddd4df))
43
+ - **parser:** promote a one-line body to a term ([`952007e`](https://github.com/jolars/panache/commit/952007ecfff515f1ee111d68dc22900ca3c15f8e))
44
+ - **parser:** end a definition body block at a `:` marker ([`928af1a`](https://github.com/jolars/panache/commit/928af1a0c1f774995812c15069bcd09a166d0bc1))
45
+ - **parser:** end a list item block at a `:` marker ([`d2ed198`](https://github.com/jolars/panache/commit/d2ed1984203d5b8be1ba3fa033ef0b2607a3e4fb))
46
+ - **formatter:** drop over-broad citation reflow guard ([`531fb80`](https://github.com/jolars/panache/commit/531fb803841e8b9de334a0fe25e93814fc8b223e))
47
+ - **math:** keep `:=` glued as one relation ([`a65bb40`](https://github.com/jolars/panache/commit/a65bb4035a29a31d648f6d041763c60c53a5da47)), closes [#487](https://github.com/jolars/panache/issues/487)
48
+ - **formatter:** join a lazy fence run into its code span ([`7081c0c`](https://github.com/jolars/panache/commit/7081c0cd75904b390738be5f5b87a8ce1fa33ce9)), closes [#485](https://github.com/jolars/panache/issues/485)
49
+ - **parser:** support `-` as `.unnumbered` shorthand ([`f8f6e67`](https://github.com/jolars/panache/commit/f8f6e67515c4b10a3a4de16c8a8d54d7b8325a47)), closes [#467](https://github.com/jolars/panache/issues/467)
50
+ - **parser:** nest a definition list inside its list item ([`c143a96`](https://github.com/jolars/panache/commit/c143a96c9d2fd20292a6c663deca9c061e6aad14))
51
+ - **parser:** require a definition term to be a one-line block ([`9ff8596`](https://github.com/jolars/panache/commit/9ff85960fbdd8919e5c8f60acb4b76272ec88c91))
52
+ - **formatter:** keep blank after leading list-item block ([`3226741`](https://github.com/jolars/panache/commit/322674199284c19f3a7108b8afc9e2908a1baeab))
53
+ - **formatter:** expand code-span tabs from source column ([`ff7dafa`](https://github.com/jolars/panache/commit/ff7dafa924e80cc04e8b2c271151c0bbb7173e7d))
54
+
55
+ ### Dependencies
56
+ - updated crates/panache-parser to v0.26.0
57
+
3
58
  ## [0.20.5](https://github.com/jolars/panache/compare/panache-formatter-v0.20.4...panache-formatter-v0.20.5) (2026-08-07)
4
59
 
5
60
  ### Bug Fixes
@@ -1,7 +1,8 @@
1
1
  [package]
2
2
  name = "panache-formatter"
3
- version = "0.20.5"
3
+ version = "0.21.1"
4
4
  edition.workspace = true
5
+ rust-version.workspace = true
5
6
  include = [
6
7
  "/src/**/*",
7
8
  "/README.md",
@@ -18,7 +19,7 @@ keywords = ["quarto", "pandoc", "markdown", "formatter"]
18
19
  categories = ["text-processing"]
19
20
 
20
21
  [dependencies]
21
- panache-parser = { path = "../panache-parser", version = "0.25.0" }
22
+ panache-parser = { path = "../panache-parser", version = "0.27.0" }
22
23
  log = { version = "0.4.31", features = ["release_max_level_debug"] }
23
24
  rowan = "0.17.0"
24
25
  serde = { version = "1.0.228", features = ["derive"], optional = true }