panache-cli 3.0.0__tar.gz → 3.0.2__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-3.0.0 → panache_cli-3.0.2}/Cargo.lock +100 -63
  2. {panache_cli-3.0.0 → panache_cli-3.0.2}/Cargo.toml +18 -18
  3. {panache_cli-3.0.0 → panache_cli-3.0.2}/PKG-INFO +1 -1
  4. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/CHANGELOG.md +19 -0
  5. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/Cargo.toml +6 -6
  6. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/core.rs +1 -1
  7. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/inline_layout.rs +7 -3
  8. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/lists.rs +117 -0
  9. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/tables.rs +16 -34
  10. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/CHANGELOG.md +18 -0
  11. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/Cargo.toml +6 -6
  12. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/pandoc_ast.rs +3 -31
  13. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/block_dispatcher.rs +27 -1
  14. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/lists.rs +1 -1
  15. panache_cli-3.0.2/crates/panache-parser/src/parser/blocks/paragraphs.rs +249 -0
  16. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/tables.rs +269 -29
  17. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/tests/blockquotes.rs +7 -0
  18. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/tests/code_blocks.rs +219 -1
  19. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/core.rs +72 -5
  20. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/citations.rs +114 -0
  21. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/utils/container_stack.rs +17 -1
  22. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/utils/list_item_buffer.rs +49 -9
  23. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/config.rs +18 -0
  24. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/citation_nonbreaking_space.rs +10 -0
  25. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/main.rs +1 -1
  26. panache_cli-3.0.0/crates/panache-parser/src/parser/blocks/paragraphs.rs +0 -167
  27. {panache_cli-3.0.0 → panache_cli-3.0.2}/LICENSE +0 -0
  28. {panache_cli-3.0.0 → panache_cli-3.0.2}/README.md +0 -0
  29. {panache_cli-3.0.0 → panache_cli-3.0.2}/assets/quarto-schema/schema.json +0 -0
  30. {panache_cli-3.0.0 → panache_cli-3.0.2}/build.rs +0 -0
  31. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/README.md +0 -0
  32. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/config.rs +0 -0
  33. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/directives.rs +0 -0
  34. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/blockquotes.rs +0 -0
  35. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/code_blocks.rs +0 -0
  36. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/fenced_divs.rs +0 -0
  37. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/hashpipe.rs +0 -0
  38. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/headings.rs +0 -0
  39. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/indent_utils.rs +0 -0
  40. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/inline.rs +0 -0
  41. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/math/STYLE.md +0 -0
  42. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/math/linebreak.rs +0 -0
  43. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/math/operators.rs +0 -0
  44. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/math/render.rs +0 -0
  45. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/math.rs +0 -0
  46. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/metadata.rs +0 -0
  47. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/paragraphs.rs +0 -0
  48. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/sentence_wrap.rs +0 -0
  49. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/shortcodes.rs +0 -0
  50. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/smart.rs +0 -0
  51. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/utils.rs +0 -0
  52. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/yaml/STYLE.md +0 -0
  53. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/yaml/block_map.rs +0 -0
  54. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/yaml/block_sequence.rs +0 -0
  55. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/yaml/document.rs +0 -0
  56. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/yaml/flow.rs +0 -0
  57. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/yaml/options.rs +0 -0
  58. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/yaml/scalar.rs +0 -0
  59. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter/yaml.rs +0 -0
  60. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/formatter.rs +0 -0
  61. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/lib.rs +0 -0
  62. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/parser.rs +0 -0
  63. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/syntax.rs +0 -0
  64. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/utils.rs +0 -0
  65. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-formatter/src/yaml_engine.rs +0 -0
  66. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/README.md +0 -0
  67. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/build.rs +0 -0
  68. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/grid_layout.rs +0 -0
  69. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/lib.rs +0 -0
  70. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/options.rs +0 -0
  71. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/admonitions.rs +0 -0
  72. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/blockquotes.rs +0 -0
  73. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/code_blocks.rs +0 -0
  74. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/container_prefix.rs +0 -0
  75. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/definition_lists.rs +0 -0
  76. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/fenced_divs.rs +0 -0
  77. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/figures.rs +0 -0
  78. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/headings.rs +0 -0
  79. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/horizontal_rules.rs +0 -0
  80. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/html_blocks.rs +0 -0
  81. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/indented_code.rs +0 -0
  82. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/latex_envs.rs +0 -0
  83. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/line_blocks.rs +0 -0
  84. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/metadata.rs +0 -0
  85. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/myst_directives.rs +0 -0
  86. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/myst_targets.rs +0 -0
  87. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/raw_blocks.rs +0 -0
  88. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/reference_links.rs +0 -0
  89. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/tests/blanklines.rs +0 -0
  90. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/tests/definition_lists.rs +0 -0
  91. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/tests/headings.rs +0 -0
  92. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/tests/helpers.rs +0 -0
  93. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/tests/lists.rs +0 -0
  94. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/tests/losslessness.rs +0 -0
  95. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks/tests/metadata_guards.rs +0 -0
  96. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/blocks.rs +0 -0
  97. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/diagnostics.rs +0 -0
  98. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/bookdown.rs +0 -0
  99. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/bracketed_spans.rs +0 -0
  100. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/code_spans.rs +0 -0
  101. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/core.rs +0 -0
  102. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/emoji.rs +0 -0
  103. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/escapes.rs +0 -0
  104. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/inline_executable.rs +0 -0
  105. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/inline_footnotes.rs +0 -0
  106. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/inline_html.rs +0 -0
  107. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/inline_ir.rs +0 -0
  108. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/latex.rs +0 -0
  109. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/links.rs +0 -0
  110. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/mark.rs +0 -0
  111. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/math.rs +0 -0
  112. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/myst_roles.rs +0 -0
  113. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/myst_substitutions.rs +0 -0
  114. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/native_spans.rs +0 -0
  115. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/raw_inline.rs +0 -0
  116. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/refdef_map.rs +0 -0
  117. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/shortcodes.rs +0 -0
  118. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/sink.rs +0 -0
  119. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/strikeout.rs +0 -0
  120. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/subscript.rs +0 -0
  121. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/superscript.rs +0 -0
  122. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/svelte.rs +0 -0
  123. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/tests.rs +0 -0
  124. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/uri-schemes.csv +0 -0
  125. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines/wikilinks.rs +0 -0
  126. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/inlines.rs +0 -0
  127. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/math.rs +0 -0
  128. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/utils/attributes.rs +0 -0
  129. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/utils/chunk_options.rs +0 -0
  130. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/utils/continuation.rs +0 -0
  131. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/utils/helpers.rs +0 -0
  132. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/utils/inline_emission.rs +0 -0
  133. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/utils/marker_utils.rs +0 -0
  134. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/utils/text_buffer.rs +0 -0
  135. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/utils/tree_copy.rs +0 -0
  136. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/utils/yaml_regions.rs +0 -0
  137. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/utils.rs +0 -0
  138. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/yaml/cooking.rs +0 -0
  139. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/yaml/events.rs +0 -0
  140. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/yaml/model.rs +0 -0
  141. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/yaml/parser.rs +0 -0
  142. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/yaml/profile.rs +0 -0
  143. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/yaml/scanner.rs +0 -0
  144. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/yaml/validator.rs +0 -0
  145. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser/yaml.rs +0 -0
  146. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/parser.rs +0 -0
  147. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/range_utils.rs +0 -0
  148. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/alerts.rs +0 -0
  149. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/ast.rs +0 -0
  150. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/attributes.rs +0 -0
  151. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/block_quotes.rs +0 -0
  152. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/blocks.rs +0 -0
  153. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/chunk_options.rs +0 -0
  154. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/citations.rs +0 -0
  155. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/code_blocks.rs +0 -0
  156. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/crossrefs.rs +0 -0
  157. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/definitions.rs +0 -0
  158. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/fenced_divs.rs +0 -0
  159. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/headings.rs +0 -0
  160. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/inlines.rs +0 -0
  161. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/kind.rs +0 -0
  162. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/links.rs +0 -0
  163. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/lists.rs +0 -0
  164. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/math.rs +0 -0
  165. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/myst.rs +0 -0
  166. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/raw_tex.rs +0 -0
  167. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/references.rs +0 -0
  168. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/shortcodes.rs +0 -0
  169. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/tables.rs +0 -0
  170. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/yaml.rs +0 -0
  171. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax/yaml_ast.rs +0 -0
  172. {panache_cli-3.0.0 → panache_cli-3.0.2}/crates/panache-parser/src/syntax.rs +0 -0
  173. {panache_cli-3.0.0 → panache_cli-3.0.2}/pyproject.toml +0 -0
  174. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/bib/bibtex.rs +0 -0
  175. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/bib/csl_json.rs +0 -0
  176. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/bib/csl_yaml.rs +0 -0
  177. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/bib/index.rs +0 -0
  178. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/bib/preview.rs +0 -0
  179. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/bib/ris.rs +0 -0
  180. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/bib.rs +0 -0
  181. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/bin/distill_quarto_schema.rs +0 -0
  182. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/cache.rs +0 -0
  183. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/cli.rs +0 -0
  184. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/config/formatter_presets.rs +0 -0
  185. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/config/types/schema_helpers.rs +0 -0
  186. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/config/types.rs +0 -0
  187. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/diagnostic_renderer.rs +0 -0
  188. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/directives.rs +0 -0
  189. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/external_formatters_common.rs +0 -0
  190. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/external_formatters_sync.rs +0 -0
  191. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/external_tools_common.rs +0 -0
  192. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/formatter.rs +0 -0
  193. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/includes.rs +0 -0
  194. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lib.rs +0 -0
  195. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/code_block_collector.rs +0 -0
  196. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/diagnostics.rs +0 -0
  197. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/external_linters/clippy.rs +0 -0
  198. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/external_linters/eslint.rs +0 -0
  199. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/external_linters/jarl.rs +0 -0
  200. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/external_linters/ruff.rs +0 -0
  201. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/external_linters/shellcheck.rs +0 -0
  202. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/external_linters/staticcheck.rs +0 -0
  203. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/external_linters.rs +0 -0
  204. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/external_linters_sync.rs +0 -0
  205. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/fuzzy.rs +0 -0
  206. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/index.rs +0 -0
  207. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/metadata_diagnostics.rs +0 -0
  208. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/offsets.rs +0 -0
  209. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/quarto_schema/distill.rs +0 -0
  210. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/quarto_schema/interp.rs +0 -0
  211. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/quarto_schema/model.rs +0 -0
  212. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/quarto_schema/report.rs +0 -0
  213. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/quarto_schema/value.rs +0 -0
  214. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/quarto_schema.rs +0 -0
  215. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/adjacent_footnote_refs.rs +0 -0
  216. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/chunk_label_spaces.rs +0 -0
  217. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/citation_keys.rs +0 -0
  218. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/consumer_divergence.rs +0 -0
  219. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/crossref_as_link_target.rs +0 -0
  220. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/duplicate_references.rs +0 -0
  221. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/emoji_aliases.rs +0 -0
  222. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/empty_list_item.rs +0 -0
  223. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/empty_values.rs +0 -0
  224. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/figure_crossref_captions.rs +0 -0
  225. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/footnote_ref_in_footnote_def.rs +0 -0
  226. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/heading_eaten_attrs.rs +0 -0
  227. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/heading_hierarchy.rs +0 -0
  228. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/heading_strip_comments_residue.rs +0 -0
  229. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/html_entities.rs +0 -0
  230. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/link_text_is_url.rs +0 -0
  231. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/math_content.rs +0 -0
  232. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/missing_chunk_labels.rs +0 -0
  233. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/quarto_schema.rs +0 -0
  234. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/stray_fenced_div_markers.rs +0 -0
  235. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/undefined_anchor.rs +0 -0
  236. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/undefined_references.rs +0 -0
  237. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules/unused_definitions.rs +0 -0
  238. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/rules.rs +0 -0
  239. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/runner.rs +0 -0
  240. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter/yaml_resolve.rs +0 -0
  241. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/linter.rs +0 -0
  242. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/config.rs +0 -0
  243. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/context.rs +0 -0
  244. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/conversions.rs +0 -0
  245. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/dispatch.rs +0 -0
  246. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/documents.rs +0 -0
  247. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/global_state.rs +0 -0
  248. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/code_actions.rs +0 -0
  249. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/completion.rs +0 -0
  250. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/configuration.rs +0 -0
  251. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/diagnostics.rs +0 -0
  252. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/document_highlight.rs +0 -0
  253. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/document_links.rs +0 -0
  254. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/document_symbols.rs +0 -0
  255. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/file_operations.rs +0 -0
  256. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/file_rename.rs +0 -0
  257. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/file_watcher.rs +0 -0
  258. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/folding_ranges.rs +0 -0
  259. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/footnote_conversion.rs +0 -0
  260. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/formatting.rs +0 -0
  261. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/goto_definition.rs +0 -0
  262. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/heading_link_conversion.rs +0 -0
  263. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/hover.rs +0 -0
  264. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/link_conversion.rs +0 -0
  265. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/linked_editing_range.rs +0 -0
  266. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/list_conversion.rs +0 -0
  267. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/prepare_rename.rs +0 -0
  268. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/references.rs +0 -0
  269. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/rename.rs +0 -0
  270. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/semantic_tokens.rs +0 -0
  271. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/shortcode_args.rs +0 -0
  272. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/workspace_folders.rs +0 -0
  273. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers/workspace_symbols.rs +0 -0
  274. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/handlers.rs +0 -0
  275. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/helpers.rs +0 -0
  276. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/navigation.rs +0 -0
  277. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/symbols.rs +0 -0
  278. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/task_pool.rs +0 -0
  279. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/testing.rs +0 -0
  280. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp/uri_ext.rs +0 -0
  281. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/lsp.rs +0 -0
  282. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/metadata/bibliography.rs +0 -0
  283. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/metadata/citations.rs +0 -0
  284. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/metadata/project.rs +0 -0
  285. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/metadata/references.rs +0 -0
  286. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/metadata/yaml.rs +0 -0
  287. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/metadata.rs +0 -0
  288. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/parser.rs +0 -0
  289. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/range_utils.rs +0 -0
  290. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/salsa.rs +0 -0
  291. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/syntax.rs +0 -0
  292. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/utils.rs +0 -0
  293. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/yaml_engine.rs +0 -0
  294. {panache_cli-3.0.0 → panache_cli-3.0.2}/src/yaml_regions.rs +0 -0
@@ -189,9 +189,9 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
189
189
 
190
190
  [[package]]
191
191
  name = "clap"
192
- version = "4.6.2"
192
+ version = "4.6.4"
193
193
  source = "registry+https://github.com/rust-lang/crates.io-index"
194
- checksum = "dd059f9da4f5c36b3787f65d38ccaab1cc315f07b01f89abc8359ee6a8205011"
194
+ checksum = "d91e0c145792ef73a6ad36d27c75ac09f1832222a3c209689d90f534685ee5b7"
195
195
  dependencies = [
196
196
  "clap_builder",
197
197
  "clap_derive",
@@ -220,23 +220,23 @@ dependencies = [
220
220
 
221
221
  [[package]]
222
222
  name = "clap_complete"
223
- version = "4.6.7"
223
+ version = "4.6.8"
224
224
  source = "registry+https://github.com/rust-lang/crates.io-index"
225
- checksum = "db8b397918185f0161ff3d6fcaa9e4bfc09b8367caf6e1d4a2848e5477ed027b"
225
+ checksum = "b1f84a88507dbd05c695f2cb5e8558e747179134005e9893882dec964190ed89"
226
226
  dependencies = [
227
227
  "clap",
228
228
  ]
229
229
 
230
230
  [[package]]
231
231
  name = "clap_derive"
232
- version = "4.6.1"
232
+ version = "4.6.4"
233
233
  source = "registry+https://github.com/rust-lang/crates.io-index"
234
- checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
234
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
235
235
  dependencies = [
236
236
  "heck",
237
237
  "proc-macro2",
238
238
  "quote",
239
- "syn 2.0.119",
239
+ "syn 3.0.3",
240
240
  ]
241
241
 
242
242
  [[package]]
@@ -430,13 +430,13 @@ dependencies = [
430
430
 
431
431
  [[package]]
432
432
  name = "displaydoc"
433
- version = "0.2.6"
433
+ version = "0.2.7"
434
434
  source = "registry+https://github.com/rust-lang/crates.io-index"
435
- checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
435
+ checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
436
436
  dependencies = [
437
437
  "proc-macro2",
438
438
  "quote",
439
- "syn 2.0.119",
439
+ "syn 3.0.3",
440
440
  ]
441
441
 
442
442
  [[package]]
@@ -447,9 +447,9 @@ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
447
447
 
448
448
  [[package]]
449
449
  name = "either"
450
- version = "1.16.0"
450
+ version = "1.17.0"
451
451
  source = "registry+https://github.com/rust-lang/crates.io-index"
452
- checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
452
+ checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
453
453
 
454
454
  [[package]]
455
455
  name = "email_address"
@@ -814,9 +814,9 @@ dependencies = [
814
814
 
815
815
  [[package]]
816
816
  name = "ignore"
817
- version = "0.4.30"
817
+ version = "0.4.31"
818
818
  source = "registry+https://github.com/rust-lang/crates.io-index"
819
- checksum = "7b009b6744c1445efd7244084e25e498636412effb6760b55067553baa925cc7"
819
+ checksum = "7f8a7b8211e695a1d0cd91cace480d4d0bd57667ab10277cc412c5f7f4884f83"
820
820
  dependencies = [
821
821
  "crossbeam-deque",
822
822
  "globset",
@@ -883,9 +883,9 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
883
883
 
884
884
  [[package]]
885
885
  name = "jiff"
886
- version = "0.2.34"
886
+ version = "0.2.35"
887
887
  source = "registry+https://github.com/rust-lang/crates.io-index"
888
- checksum = "e184d09547b80eb7e20d141ba2fb1fbac843ca53f4cf1b31210adc4c1adc6e16"
888
+ checksum = "668b7183bd07af9a4885f5c35b0cc5c83c4607a913c16b7e17291832910d2dcc"
889
889
  dependencies = [
890
890
  "defmt",
891
891
  "jiff-core",
@@ -907,9 +907,9 @@ dependencies = [
907
907
 
908
908
  [[package]]
909
909
  name = "jiff-static"
910
- version = "0.2.34"
910
+ version = "0.2.35"
911
911
  source = "registry+https://github.com/rust-lang/crates.io-index"
912
- checksum = "323da076b7a6faf914dc677cb05a4b907742ff7375c8322c9e7f5061e5e0e9de"
912
+ checksum = "3a69dcb3a21cfb32ce1cd056169337ca284af0766dd766e7878819b251a49204"
913
913
  dependencies = [
914
914
  "jiff-core",
915
915
  "proc-macro2",
@@ -930,9 +930,9 @@ dependencies = [
930
930
 
931
931
  [[package]]
932
932
  name = "jsonschema"
933
- version = "0.47.0"
933
+ version = "0.48.5"
934
934
  source = "registry+https://github.com/rust-lang/crates.io-index"
935
- checksum = "281c43ff06dcb331e9356d30e38853d559ce3d0a3f693e0b0e102667dec14fb1"
935
+ checksum = "f05a6cff806294a7699d48761d4ae2bdebab7fa2eef05e4a0b83320f0ff46901"
936
936
  dependencies = [
937
937
  "ahash",
938
938
  "bytecount",
@@ -944,6 +944,7 @@ dependencies = [
944
944
  "idna",
945
945
  "itoa",
946
946
  "jsonschema-regex",
947
+ "jsonschema-value",
947
948
  "num-cmp",
948
949
  "num-traits",
949
950
  "percent-encoding",
@@ -951,19 +952,34 @@ dependencies = [
951
952
  "regex",
952
953
  "serde",
953
954
  "serde_json",
955
+ "strum",
954
956
  "unicode-general-category",
955
957
  "uuid-simd",
956
958
  ]
957
959
 
958
960
  [[package]]
959
961
  name = "jsonschema-regex"
960
- version = "0.47.0"
962
+ version = "0.48.5"
961
963
  source = "registry+https://github.com/rust-lang/crates.io-index"
962
- checksum = "ee0b351864e7ffbc5db9273daf7fa1b4d5177b0946713d667ca571b83c0b4045"
964
+ checksum = "84708dd3f6c5327478a96f37378adb27deed6a626cf84d19de780d9e8ae84b17"
963
965
  dependencies = [
964
966
  "regex-syntax",
965
967
  ]
966
968
 
969
+ [[package]]
970
+ name = "jsonschema-value"
971
+ version = "0.48.5"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "fd8c04ab4ce60e42c4e302d3bd9d184652bb56f212495d2eea23573bcbf72556"
974
+ dependencies = [
975
+ "ahash",
976
+ "bytecount",
977
+ "fraction",
978
+ "num-cmp",
979
+ "num-traits",
980
+ "serde_json",
981
+ ]
982
+
967
983
  [[package]]
968
984
  name = "lazy_static"
969
985
  version = "1.5.0"
@@ -972,9 +988,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
972
988
 
973
989
  [[package]]
974
990
  name = "libc"
975
- version = "0.2.186"
991
+ version = "0.2.189"
976
992
  source = "registry+https://github.com/rust-lang/crates.io-index"
977
- checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
993
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
978
994
 
979
995
  [[package]]
980
996
  name = "libredox"
@@ -1189,7 +1205,7 @@ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
1189
1205
 
1190
1206
  [[package]]
1191
1207
  name = "panache"
1192
- version = "3.0.0"
1208
+ version = "3.0.2"
1193
1209
  dependencies = [
1194
1210
  "annotate-snippets",
1195
1211
  "assert_cmd",
@@ -1233,7 +1249,7 @@ dependencies = [
1233
1249
 
1234
1250
  [[package]]
1235
1251
  name = "panache-formatter"
1236
- version = "0.20.0"
1252
+ version = "0.20.2"
1237
1253
  dependencies = [
1238
1254
  "insta",
1239
1255
  "log",
@@ -1251,7 +1267,7 @@ dependencies = [
1251
1267
 
1252
1268
  [[package]]
1253
1269
  name = "panache-parser"
1254
- version = "0.22.0"
1270
+ version = "0.22.2"
1255
1271
  dependencies = [
1256
1272
  "entities",
1257
1273
  "insta",
@@ -1495,14 +1511,14 @@ checksum = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c"
1495
1511
  dependencies = [
1496
1512
  "proc-macro2",
1497
1513
  "quote",
1498
- "syn 3.0.2",
1514
+ "syn 3.0.3",
1499
1515
  ]
1500
1516
 
1501
1517
  [[package]]
1502
1518
  name = "referencing"
1503
- version = "0.47.0"
1519
+ version = "0.48.5"
1504
1520
  source = "registry+https://github.com/rust-lang/crates.io-index"
1505
- checksum = "348e860aeb0b7bd035778fd11dd9cd5290d32e4aed3b8f2274a00287a9fd362b"
1521
+ checksum = "980e77f5cfffc592c0e7dfb6d20770a0b96a6ab94d403de7454ed9799505e4ba"
1506
1522
  dependencies = [
1507
1523
  "ahash",
1508
1524
  "fluent-uri 0.4.1",
@@ -1595,9 +1611,9 @@ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1595
1611
 
1596
1612
  [[package]]
1597
1613
  name = "salsa"
1598
- version = "0.28.0"
1614
+ version = "0.28.1"
1599
1615
  source = "registry+https://github.com/rust-lang/crates.io-index"
1600
- checksum = "63ad5919b18c2deaf18921fffd5c84d6e41416d1ef80b6b541d629aa30ce8556"
1616
+ checksum = "a14fdadbf856222e731756d7fdbdf193a7abf8fdab009bb45f48671a42719a84"
1601
1617
  dependencies = [
1602
1618
  "boxcar",
1603
1619
  "crossbeam-queue",
@@ -1621,15 +1637,15 @@ dependencies = [
1621
1637
 
1622
1638
  [[package]]
1623
1639
  name = "salsa-macro-rules"
1624
- version = "0.28.0"
1640
+ version = "0.28.1"
1625
1641
  source = "registry+https://github.com/rust-lang/crates.io-index"
1626
- checksum = "d50068b1f8b1ac7567a4a70eb6cc15daa9dc997b73a6b5aa3248dd960755cddb"
1642
+ checksum = "50d7dc08ba69b9aedfa61dfc4d65548ae42c0d8b90bbd62cd121776920841bcf"
1627
1643
 
1628
1644
  [[package]]
1629
1645
  name = "salsa-macros"
1630
- version = "0.28.0"
1646
+ version = "0.28.1"
1631
1647
  source = "registry+https://github.com/rust-lang/crates.io-index"
1632
- checksum = "8b26cb1c61fc424f7ff36e0606491429f58d1738bb0917cd999d680baae0c52c"
1648
+ checksum = "ec5c48c5a4a53a6e2be9762f56566f1325d4394c011c00b3ea86ba2d13411e71"
1633
1649
  dependencies = [
1634
1650
  "proc-macro2",
1635
1651
  "quote",
@@ -1647,9 +1663,9 @@ dependencies = [
1647
1663
 
1648
1664
  [[package]]
1649
1665
  name = "schemars"
1650
- version = "1.2.1"
1666
+ version = "1.2.2"
1651
1667
  source = "registry+https://github.com/rust-lang/crates.io-index"
1652
- checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
1668
+ checksum = "687274d293b6cdc6e73e0fee520bf2049650090d7164f87672d212a3c530cf4a"
1653
1669
  dependencies = [
1654
1670
  "dyn-clone",
1655
1671
  "ref-cast",
@@ -1660,14 +1676,14 @@ dependencies = [
1660
1676
 
1661
1677
  [[package]]
1662
1678
  name = "schemars_derive"
1663
- version = "1.2.1"
1679
+ version = "1.2.2"
1664
1680
  source = "registry+https://github.com/rust-lang/crates.io-index"
1665
- checksum = "7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f"
1681
+ checksum = "d98c67716b46af2f0b8cf752abc930f6f9aecfbf671ecfb531db8a31dbe4e2ba"
1666
1682
  dependencies = [
1667
1683
  "proc-macro2",
1668
1684
  "quote",
1669
1685
  "serde_derive_internals",
1670
- "syn 2.0.119",
1686
+ "syn 3.0.3",
1671
1687
  ]
1672
1688
 
1673
1689
  [[package]]
@@ -1703,18 +1719,18 @@ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1703
1719
  dependencies = [
1704
1720
  "proc-macro2",
1705
1721
  "quote",
1706
- "syn 3.0.2",
1722
+ "syn 3.0.3",
1707
1723
  ]
1708
1724
 
1709
1725
  [[package]]
1710
1726
  name = "serde_derive_internals"
1711
- version = "0.29.1"
1727
+ version = "0.30.0"
1712
1728
  source = "registry+https://github.com/rust-lang/crates.io-index"
1713
- checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
1729
+ checksum = "f852137cce035d6a4df67ccce505ff6b3e9fd3a10e3e52b24dc71e650bb1a9bd"
1714
1730
  dependencies = [
1715
1731
  "proc-macro2",
1716
1732
  "quote",
1717
- "syn 2.0.119",
1733
+ "syn 3.0.3",
1718
1734
  ]
1719
1735
 
1720
1736
  [[package]]
@@ -1738,7 +1754,7 @@ checksum = "8d3b1629de253c70a0508c3899572da79ca359fdab27c7920ff00406df418906"
1738
1754
  dependencies = [
1739
1755
  "proc-macro2",
1740
1756
  "quote",
1741
- "syn 3.0.2",
1757
+ "syn 3.0.3",
1742
1758
  ]
1743
1759
 
1744
1760
  [[package]]
@@ -1812,6 +1828,27 @@ version = "0.11.1"
1812
1828
  source = "registry+https://github.com/rust-lang/crates.io-index"
1813
1829
  checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1814
1830
 
1831
+ [[package]]
1832
+ name = "strum"
1833
+ version = "0.28.0"
1834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1835
+ checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
1836
+ dependencies = [
1837
+ "strum_macros",
1838
+ ]
1839
+
1840
+ [[package]]
1841
+ name = "strum_macros"
1842
+ version = "0.28.0"
1843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1844
+ checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
1845
+ dependencies = [
1846
+ "heck",
1847
+ "proc-macro2",
1848
+ "quote",
1849
+ "syn 2.0.119",
1850
+ ]
1851
+
1815
1852
  [[package]]
1816
1853
  name = "syn"
1817
1854
  version = "2.0.119"
@@ -1825,9 +1862,9 @@ dependencies = [
1825
1862
 
1826
1863
  [[package]]
1827
1864
  name = "syn"
1828
- version = "3.0.2"
1865
+ version = "3.0.3"
1829
1866
  source = "registry+https://github.com/rust-lang/crates.io-index"
1830
- checksum = "a207d6d6a2b7fc470b80443726053f18a2481b7e1eee970597051596567987a3"
1867
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
1831
1868
  dependencies = [
1832
1869
  "proc-macro2",
1833
1870
  "quote",
@@ -1872,9 +1909,9 @@ checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
1872
1909
 
1873
1910
  [[package]]
1874
1911
  name = "thin-vec"
1875
- version = "0.2.18"
1912
+ version = "0.2.19"
1876
1913
  source = "registry+https://github.com/rust-lang/crates.io-index"
1877
- checksum = "b0f7e269b48f0a7dd0146680fa24b50cc67fc0373f086a5b2f99bd084639b482"
1914
+ checksum = "79def32ffcd477db1ff26f76dab9e3a91f0bd42a85ca96577089b24623056f9d"
1878
1915
 
1879
1916
  [[package]]
1880
1917
  name = "thiserror"
@@ -1893,7 +1930,7 @@ checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
1893
1930
  dependencies = [
1894
1931
  "proc-macro2",
1895
1932
  "quote",
1896
- "syn 3.0.2",
1933
+ "syn 3.0.3",
1897
1934
  ]
1898
1935
 
1899
1936
  [[package]]
@@ -1914,9 +1951,9 @@ dependencies = [
1914
1951
 
1915
1952
  [[package]]
1916
1953
  name = "toml"
1917
- version = "1.1.3+spec-1.1.0"
1954
+ version = "1.1.4+spec-1.1.0"
1918
1955
  source = "registry+https://github.com/rust-lang/crates.io-index"
1919
- checksum = "53c96ecdfa941c8fc4fcaed14f99ada8ebed502eef533015095a07e3301d4c3c"
1956
+ checksum = "3aace63f4bbcdfc2c965b059de67119c89c4017a70d633be6c104910f67056f5"
1920
1957
  dependencies = [
1921
1958
  "indexmap",
1922
1959
  "serde_core",
@@ -1938,9 +1975,9 @@ dependencies = [
1938
1975
 
1939
1976
  [[package]]
1940
1977
  name = "toml_parser"
1941
- version = "1.1.2+spec-1.1.0"
1978
+ version = "1.1.3+spec-1.1.0"
1942
1979
  source = "registry+https://github.com/rust-lang/crates.io-index"
1943
- checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
1980
+ checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
1944
1981
  dependencies = [
1945
1982
  "winnow 1.0.4",
1946
1983
  ]
@@ -2144,9 +2181,9 @@ dependencies = [
2144
2181
 
2145
2182
  [[package]]
2146
2183
  name = "wincode"
2147
- version = "0.5.5"
2184
+ version = "0.6.0"
2148
2185
  source = "registry+https://github.com/rust-lang/crates.io-index"
2149
- checksum = "66d967db7705dc29120bb6e8ce5b5a2e27734ed5976d1c904e95bd238d1c3c5a"
2186
+ checksum = "b5d39d1a984eb7ae37afa348f058216d62a6d5f71640f4113a8114386c2a812a"
2150
2187
  dependencies = [
2151
2188
  "pastey",
2152
2189
  "proc-macro2",
@@ -2157,9 +2194,9 @@ dependencies = [
2157
2194
 
2158
2195
  [[package]]
2159
2196
  name = "wincode-derive"
2160
- version = "0.4.6"
2197
+ version = "0.5.0"
2161
2198
  source = "registry+https://github.com/rust-lang/crates.io-index"
2162
- checksum = "15ab90b719560d0fda79c74550ad1c948d17b118765942838055ebaf34d67071"
2199
+ checksum = "4cb427b174d0f50b407f003623db1d892986e780651ee9d4231f3c9fe9ffcbb7"
2163
2200
  dependencies = [
2164
2201
  "darling",
2165
2202
  "proc-macro2",
@@ -2244,18 +2281,18 @@ dependencies = [
2244
2281
 
2245
2282
  [[package]]
2246
2283
  name = "zerocopy"
2247
- version = "0.8.54"
2284
+ version = "0.8.55"
2248
2285
  source = "registry+https://github.com/rust-lang/crates.io-index"
2249
- checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
2286
+ checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
2250
2287
  dependencies = [
2251
2288
  "zerocopy-derive",
2252
2289
  ]
2253
2290
 
2254
2291
  [[package]]
2255
2292
  name = "zerocopy-derive"
2256
- version = "0.8.54"
2293
+ version = "0.8.55"
2257
2294
  source = "registry+https://github.com/rust-lang/crates.io-index"
2258
- checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
2295
+ checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
2259
2296
  dependencies = [
2260
2297
  "proc-macro2",
2261
2298
  "quote",
@@ -7,13 +7,13 @@ authors = ["Johan Larsson <johan@jolars.co>"]
7
7
 
8
8
  [package]
9
9
  name = "panache"
10
- version = "3.0.0"
10
+ version = "3.0.2"
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.
14
14
  default-run = "panache"
15
15
  readme = "README.md"
16
- description = "An LSP, formatter, and linter for Markdown, Quarto, and R Markdown"
16
+ description = "Language server, formatter, and linter for Markdown, Quarto, and R Markdown"
17
17
  license.workspace = true
18
18
  repository.workspace = true
19
19
  homepage = "https://panache.bz"
@@ -48,8 +48,8 @@ path = "src/main.rs"
48
48
  required-features = ["cli"]
49
49
 
50
50
  [dependencies]
51
- panache-formatter = { path = "crates/panache-formatter", version = "0.20.0" }
52
- panache-parser = { path = "crates/panache-parser", version = "0.22.0", features = [
51
+ panache-formatter = { path = "crates/panache-formatter", version = "0.20.2" }
52
+ panache-parser = { path = "crates/panache-parser", version = "0.22.2", features = [
53
53
  "serde",
54
54
  "schema",
55
55
  ] }
@@ -58,37 +58,37 @@ clap = { version = "4.6.1", features = ["derive", "env"], optional = true }
58
58
  dirs = "6.0.0"
59
59
  env_logger = "0.11.10"
60
60
  emojis = "0.9.0"
61
- flate2 = "1.0"
61
+ flate2 = "1.1.9"
62
62
  crossbeam-channel = { version = "0.5.15", optional = true }
63
- globset = "0.4"
64
- ignore = { version = "0.4", optional = true }
63
+ globset = "0.4.19"
64
+ ignore = { version = "0.4.29", optional = true }
65
65
  log = { version = "0.4.31", features = ["release_max_level_debug"] }
66
66
  lsp-server = { version = "0.10.0", optional = true }
67
67
  lsp-types = { version = "0.97.0", optional = true }
68
- num_cpus = { version = "1.16", optional = true }
68
+ num_cpus = { version = "1.17.0", optional = true }
69
69
  percent-encoding = { version = "2.3.2", optional = true }
70
70
  regex = "1.12.2"
71
71
  rowan = "0.16.1"
72
72
  salsa = "0.28.0"
73
73
  serde = { version = "1.0.228", features = ["derive"] }
74
- serde_json = "1.0"
75
- schemars = "1.0"
76
- wincode = { version = "0.5.5", features = ["derive"] }
74
+ serde_json = "1.0.150"
75
+ schemars = "1.2.1"
76
+ wincode = { version = "0.6.0", features = ["derive"] }
77
77
  similar = { version = "3.0.0", features = ["text"] }
78
- tempfile = "3.26"
78
+ tempfile = "3.27.0"
79
79
  toml = "1.1.2"
80
- unicode-width = "0.2"
80
+ unicode-width = "0.2.2"
81
81
 
82
82
  [dev-dependencies]
83
83
  similar-asserts = "2.0.0"
84
84
  insta = { version = "1.47.2", features = ["json"] }
85
- assert_cmd = "2.0"
86
- predicates = "3.0"
87
- jsonschema = { version = "0.47", default-features = false }
85
+ assert_cmd = "2.2.2"
86
+ predicates = "3.1.4"
87
+ jsonschema = { version = "0.48.5", default-features = false }
88
88
 
89
89
  [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
90
90
  rayon = "1.10.0"
91
- which = "8.0"
91
+ which = "8.0.5"
92
92
  uuid = { version = "1.23.0", features = ["v4"] }
93
93
 
94
94
  [features]
@@ -107,7 +107,7 @@ clap = { version = "4.6.1", features = ["derive", "env"] }
107
107
  clap_complete = "4.6.0"
108
108
  clap_mangen = "0.3.0"
109
109
  clap-markdown = "0.1.5"
110
- flate2 = "1.0"
110
+ flate2 = "1.1.9"
111
111
 
112
112
  [package.metadata.deb]
113
113
  maintainer = "Johan Larsson <johan@jolars.co>"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: panache-cli
3
- Version: 3.0.0
3
+ Version: 3.0.2
4
4
  Classifier: Development Status :: 5 - Production/Stable
5
5
  Classifier: Environment :: Console
6
6
  Classifier: Intended Audience :: Developers
@@ -1,5 +1,24 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.20.2](https://github.com/jolars/panache/compare/panache-formatter-v0.20.1...panache-formatter-v0.20.2) (2026-07-28)
4
+
5
+ ### Bug Fixes
6
+ - stabilize divs and code blocks in list items ([`3c47658`](https://github.com/jolars/panache/commit/3c476588af1cbdcf1e9f002a5dc904373fbc800e)), closes [#439](https://github.com/jolars/panache/issues/439)
7
+
8
+ ### Dependencies
9
+ - updated crates/panache-parser to v0.22.2
10
+
11
+ ## [0.20.1](https://github.com/jolars/panache/compare/panache-formatter-v0.20.0...panache-formatter-v0.20.1) (2026-07-25)
12
+
13
+ ### Bug Fixes
14
+ - **parser:** emit simple table closer as separator ([`0db2620`](https://github.com/jolars/panache/commit/0db2620eb1e34ac86c7e2c0eae070f4d9f39be30))
15
+ - **formatter:** guard heading markers in reflow wrap ([`ad8b1a0`](https://github.com/jolars/panache/commit/ad8b1a01278510188faeff0e14e9d8b77b030a91))
16
+ - **parser:** track display math inside list items ([`6708303`](https://github.com/jolars/panache/commit/67083031fa8f89429510ae5164b22c9ffc769152))
17
+ - **parser:** track bracket display math across lines ([`cb6b70b`](https://github.com/jolars/panache/commit/cb6b70b55c25036415e29dfc4ab27c8e8c2c3f98)), closes [#437](https://github.com/jolars/panache/issues/437)
18
+
19
+ ### Dependencies
20
+ - updated crates/panache-parser to v0.22.1
21
+
3
22
  ## [0.20.0](https://github.com/jolars/panache/compare/panache-formatter-v0.19.0...panache-formatter-v0.20.0) (2026-07-20)
4
23
 
5
24
  ### Breaking changes
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "panache-formatter"
3
- version = "0.20.0"
3
+ version = "0.20.2"
4
4
  edition.workspace = true
5
5
  include = [
6
6
  "/src/**/*",
@@ -18,12 +18,12 @@ keywords = ["quarto", "pandoc", "markdown", "formatter"]
18
18
  categories = ["text-processing"]
19
19
 
20
20
  [dependencies]
21
- panache-parser = { path = "../panache-parser", version = "0.22.0" }
21
+ panache-parser = { path = "../panache-parser", version = "0.22.2" }
22
22
  log = { version = "0.4.31", features = ["release_max_level_debug"] }
23
23
  rowan = "0.16.1"
24
- serde = { version = "1.0", features = ["derive"], optional = true }
25
- schemars = { version = "1.0", optional = true }
26
- unicode-width = "0.2"
24
+ serde = { version = "1.0.228", features = ["derive"], optional = true }
25
+ schemars = { version = "1.2.1", optional = true }
26
+ unicode-width = "0.2.2"
27
27
 
28
28
  [features]
29
29
  default = []
@@ -31,7 +31,7 @@ serde = ["dep:serde", "panache-parser/serde"]
31
31
  schema = ["serde", "dep:schemars", "panache-parser/schema"]
32
32
 
33
33
  [dev-dependencies]
34
- serde_json = "1.0"
34
+ serde_json = "1.0.150"
35
35
  insta = { version = "1.47.2", features = ["json"] }
36
36
  # TEMPORARY: cross-validation oracle only (tests/yaml_cross_validation.rs).
37
37
  # The in-tree formatter is the source of truth. Drop this dep (and re-base
@@ -278,7 +278,7 @@ impl Formatter {
278
278
  code_blocks::format_code_block(node, &self.config, &self.formatted_code, &mut self.output);
279
279
  }
280
280
 
281
- fn format_code_block_to_string(&mut self, node: &SyntaxNode) -> String {
281
+ pub(super) fn format_code_block_to_string(&mut self, node: &SyntaxNode) -> String {
282
282
  let saved_output = self.output.clone();
283
283
  self.output.clear();
284
284
  self.format_code_block(node);
@@ -241,8 +241,8 @@ pub(super) struct NodeWrapOptions<'a> {
241
241
  pub avoid_unsafe_line_start: bool,
242
242
  pub avoid_blockquote_line_start: bool,
243
243
  /// Avoid starting a wrapped line with an ATX heading (`#`) or setext/thematic
244
- /// (`---`/`===`) marker. Set by the sentence/semantic modes; left off for
245
- /// reflow, whose width-driven breaks rarely land on such a marker.
244
+ /// (`---`/`===`) marker. Set by every mode: a `=`/`-` run pushed to its own
245
+ /// line promotes the paragraph into a setext heading in every flavor.
246
246
  pub avoid_heading_line_start: bool,
247
247
  /// Force a line break at every existing soft break (`NEWLINE`) in addition
248
248
  /// to the breaks `mode` produces. Set by the `Semantic` wrap mode, which
@@ -252,6 +252,10 @@ pub(super) struct NodeWrapOptions<'a> {
252
252
 
253
253
  impl<'a> NodeWrapOptions<'a> {
254
254
  pub(super) fn reflow(widths: &'a [usize]) -> Self {
255
+ // Unlike the flavor-gated list/blockquote guards, the heading guard is
256
+ // unconditional: a `=`/`-` run at a line start turns the paragraph
257
+ // into a setext heading even under `blank-before-header`, so a width
258
+ // break before one is never safe in any flavor.
255
259
  Self {
256
260
  widths,
257
261
  mode: NodeWrapMode::Reflow,
@@ -259,7 +263,7 @@ impl<'a> NodeWrapOptions<'a> {
259
263
  strip_standalone_blockquote_markers: false,
260
264
  avoid_unsafe_line_start: false,
261
265
  avoid_blockquote_line_start: false,
262
- avoid_heading_line_start: false,
266
+ avoid_heading_line_start: true,
263
267
  preserve_newlines: false,
264
268
  }
265
269
  }