panache-cli 2.55.0__tar.gz → 2.57.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 (270) hide show
  1. {panache_cli-2.55.0 → panache_cli-2.57.0}/Cargo.lock +72 -203
  2. {panache_cli-2.55.0 → panache_cli-2.57.0}/Cargo.toml +3 -11
  3. {panache_cli-2.55.0 → panache_cli-2.57.0}/PKG-INFO +1 -1
  4. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/CHANGELOG.md +27 -0
  5. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/Cargo.toml +10 -2
  6. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/config.rs +75 -0
  7. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/directives.rs +1 -0
  8. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/core.rs +5 -2
  9. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/indent_utils.rs +97 -0
  10. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/inline.rs +80 -64
  11. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/lists.rs +12 -4
  12. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/math/STYLE.md +48 -13
  13. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/math/linebreak.rs +159 -100
  14. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/math/operators.rs +1 -1
  15. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/math/render.rs +59 -22
  16. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/math.rs +4 -3
  17. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/tables.rs +375 -608
  18. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/yaml/document.rs +57 -39
  19. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter.rs +1 -0
  20. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/lib.rs +1 -0
  21. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/utils.rs +1 -0
  22. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/CHANGELOG.md +20 -0
  23. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/Cargo.toml +2 -1
  24. panache_cli-2.57.0/crates/panache-parser/src/grid_layout.rs +235 -0
  25. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/lib.rs +2 -0
  26. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/pandoc_ast.rs +229 -266
  27. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/block_dispatcher.rs +85 -35
  28. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/code_blocks.rs +14 -32
  29. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/html_blocks.rs +40 -3
  30. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/tables.rs +86 -13
  31. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/citations.rs +92 -0
  32. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/refdef_map.rs +1 -1
  33. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/utils/attributes.rs +84 -0
  34. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/utils/helpers.rs +125 -0
  35. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/utils/list_item_buffer.rs +2 -2
  36. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/headings.rs +23 -7
  37. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/kind.rs +16 -0
  38. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/config/types.rs +39 -0
  39. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/config.rs +33 -0
  40. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/directives.rs +1 -0
  41. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/formatter.rs +1 -0
  42. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/diagnostics.rs +1 -1
  43. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/rules/adjacent_footnote_refs.rs +11 -1
  44. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/rules/chunk_label_spaces.rs +11 -1
  45. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/rules/citation_keys.rs +62 -1
  46. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/rules/crossref_as_link_target.rs +11 -1
  47. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/rules/duplicate_references.rs +11 -1
  48. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/rules/emoji_aliases.rs +11 -1
  49. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/rules/empty_list_item.rs +11 -1
  50. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/rules/figure_crossref_captions.rs +11 -1
  51. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/rules/footnote_ref_in_footnote_def.rs +11 -1
  52. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/rules/heading_eaten_attrs.rs +11 -1
  53. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/rules/heading_hierarchy.rs +19 -1
  54. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/rules/heading_strip_comments_residue.rs +11 -1
  55. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/rules/html_entities.rs +12 -1
  56. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/rules/link_text_is_url.rs +11 -1
  57. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/rules/math_content.rs +19 -1
  58. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/rules/missing_chunk_labels.rs +11 -1
  59. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/rules/stray_fenced_div_markers.rs +11 -1
  60. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/rules/undefined_anchor.rs +11 -1
  61. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/rules/undefined_references.rs +16 -1
  62. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/rules/unused_definitions.rs +16 -1
  63. panache_cli-2.57.0/src/linter/rules.rs +233 -0
  64. panache_cli-2.57.0/src/linter.rs +120 -0
  65. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/dispatch.rs +307 -92
  66. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/documents.rs +53 -23
  67. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/global_state.rs +242 -48
  68. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/handlers/completion.rs +3 -19
  69. panache_cli-2.57.0/src/lsp/handlers/diagnostics.rs +400 -0
  70. panache_cli-2.57.0/src/lsp/handlers/file_operations.rs +94 -0
  71. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/handlers/file_rename.rs +146 -7
  72. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/handlers/file_watcher.rs +13 -11
  73. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/handlers/folding_ranges.rs +1 -1
  74. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/handlers/formatting.rs +49 -1
  75. panache_cli-2.57.0/src/lsp/handlers/semantic_tokens.rs +254 -0
  76. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/handlers/shortcode_args.rs +25 -0
  77. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/handlers.rs +2 -0
  78. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/testing.rs +212 -4
  79. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/main.rs +39 -3
  80. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/salsa.rs +19 -10
  81. panache_cli-2.55.0/src/linter/rules.rs +0 -119
  82. panache_cli-2.55.0/src/linter.rs +0 -159
  83. panache_cli-2.55.0/src/lsp/handlers/diagnostics.rs +0 -207
  84. {panache_cli-2.55.0 → panache_cli-2.57.0}/LICENSE +0 -0
  85. {panache_cli-2.55.0 → panache_cli-2.57.0}/README.md +0 -0
  86. {panache_cli-2.55.0 → panache_cli-2.57.0}/build.rs +0 -0
  87. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/README.md +0 -0
  88. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/blockquotes.rs +0 -0
  89. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/code_blocks.rs +0 -0
  90. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/fenced_divs.rs +0 -0
  91. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/hashpipe.rs +0 -0
  92. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/headings.rs +0 -0
  93. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/inline_layout.rs +0 -0
  94. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/metadata.rs +0 -0
  95. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/paragraphs.rs +0 -0
  96. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/sentence_wrap.rs +0 -0
  97. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/shortcodes.rs +0 -0
  98. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/smart.rs +0 -0
  99. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/utils.rs +0 -0
  100. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/yaml/STYLE.md +0 -0
  101. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/yaml/block_map.rs +0 -0
  102. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/yaml/block_sequence.rs +0 -0
  103. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/yaml/flow.rs +0 -0
  104. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/yaml/options.rs +0 -0
  105. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/yaml/scalar.rs +0 -0
  106. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/formatter/yaml.rs +0 -0
  107. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/parser.rs +0 -0
  108. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/syntax.rs +0 -0
  109. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-formatter/src/yaml_engine.rs +0 -0
  110. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/README.md +0 -0
  111. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/build.rs +0 -0
  112. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/options.rs +0 -0
  113. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/blockquotes.rs +0 -0
  114. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/container_prefix.rs +0 -0
  115. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/definition_lists.rs +0 -0
  116. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/fenced_divs.rs +0 -0
  117. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/figures.rs +0 -0
  118. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/headings.rs +0 -0
  119. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/horizontal_rules.rs +0 -0
  120. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/indented_code.rs +0 -0
  121. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/latex_envs.rs +0 -0
  122. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/line_blocks.rs +0 -0
  123. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/lists.rs +0 -0
  124. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/metadata.rs +0 -0
  125. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/paragraphs.rs +0 -0
  126. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/raw_blocks.rs +0 -0
  127. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/reference_links.rs +0 -0
  128. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/tests/blanklines.rs +0 -0
  129. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/tests/blockquotes.rs +0 -0
  130. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/tests/code_blocks.rs +0 -0
  131. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/tests/definition_lists.rs +0 -0
  132. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/tests/headings.rs +0 -0
  133. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/tests/helpers.rs +0 -0
  134. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/tests/lists.rs +0 -0
  135. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/tests/losslessness.rs +0 -0
  136. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks/tests/metadata_guards.rs +0 -0
  137. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/blocks.rs +0 -0
  138. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/core.rs +0 -0
  139. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/diagnostics.rs +0 -0
  140. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/bookdown.rs +0 -0
  141. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/bracketed_spans.rs +0 -0
  142. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/code_spans.rs +0 -0
  143. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/core.rs +0 -0
  144. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/emoji.rs +0 -0
  145. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/escapes.rs +0 -0
  146. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/inline_executable.rs +0 -0
  147. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/inline_footnotes.rs +0 -0
  148. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/inline_html.rs +0 -0
  149. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/inline_ir.rs +0 -0
  150. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/latex.rs +0 -0
  151. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/links.rs +0 -0
  152. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/mark.rs +0 -0
  153. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/math.rs +0 -0
  154. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/native_spans.rs +0 -0
  155. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/raw_inline.rs +0 -0
  156. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/shortcodes.rs +0 -0
  157. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/sink.rs +0 -0
  158. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/strikeout.rs +0 -0
  159. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/subscript.rs +0 -0
  160. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/superscript.rs +0 -0
  161. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/tests.rs +0 -0
  162. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/uri-schemes.csv +0 -0
  163. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines/wikilinks.rs +0 -0
  164. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/inlines.rs +0 -0
  165. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/math.rs +0 -0
  166. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/utils/chunk_options.rs +0 -0
  167. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/utils/container_stack.rs +0 -0
  168. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/utils/continuation.rs +0 -0
  169. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/utils/inline_emission.rs +0 -0
  170. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/utils/marker_utils.rs +0 -0
  171. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/utils/text_buffer.rs +0 -0
  172. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/utils/tree_copy.rs +0 -0
  173. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/utils/yaml_regions.rs +0 -0
  174. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/utils.rs +0 -0
  175. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/yaml/cooking.rs +0 -0
  176. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/yaml/events.rs +0 -0
  177. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/yaml/model.rs +0 -0
  178. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/yaml/parser.rs +0 -0
  179. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/yaml/profile.rs +0 -0
  180. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/yaml/scanner.rs +0 -0
  181. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/yaml/validator.rs +0 -0
  182. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser/yaml.rs +0 -0
  183. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/parser.rs +0 -0
  184. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/range_utils.rs +0 -0
  185. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/alerts.rs +0 -0
  186. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/ast.rs +0 -0
  187. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/attributes.rs +0 -0
  188. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/block_quotes.rs +0 -0
  189. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/blocks.rs +0 -0
  190. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/chunk_options.rs +0 -0
  191. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/citations.rs +0 -0
  192. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/code_blocks.rs +0 -0
  193. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/crossrefs.rs +0 -0
  194. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/definitions.rs +0 -0
  195. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/fenced_divs.rs +0 -0
  196. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/inlines.rs +0 -0
  197. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/links.rs +0 -0
  198. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/lists.rs +0 -0
  199. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/math.rs +0 -0
  200. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/raw_tex.rs +0 -0
  201. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/references.rs +0 -0
  202. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/shortcodes.rs +0 -0
  203. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/tables.rs +0 -0
  204. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/yaml.rs +0 -0
  205. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax/yaml_ast.rs +0 -0
  206. {panache_cli-2.55.0 → panache_cli-2.57.0}/crates/panache-parser/src/syntax.rs +0 -0
  207. {panache_cli-2.55.0 → panache_cli-2.57.0}/pyproject.toml +0 -0
  208. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/bib/bibtex.rs +0 -0
  209. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/bib/csl_json.rs +0 -0
  210. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/bib/csl_yaml.rs +0 -0
  211. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/bib/index.rs +0 -0
  212. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/bib/ris.rs +0 -0
  213. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/bib.rs +0 -0
  214. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/cache.rs +0 -0
  215. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/cli.rs +0 -0
  216. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/config/formatter_presets.rs +0 -0
  217. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/config/types/schema_helpers.rs +0 -0
  218. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/diagnostic_renderer.rs +0 -0
  219. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/external_formatters_common.rs +0 -0
  220. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/external_formatters_sync.rs +0 -0
  221. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/external_tools_common.rs +0 -0
  222. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/includes.rs +0 -0
  223. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lib.rs +0 -0
  224. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/code_block_collector.rs +0 -0
  225. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/external_linters/clippy.rs +0 -0
  226. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/external_linters/eslint.rs +0 -0
  227. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/external_linters/jarl.rs +0 -0
  228. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/external_linters/ruff.rs +0 -0
  229. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/external_linters/shellcheck.rs +0 -0
  230. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/external_linters/staticcheck.rs +0 -0
  231. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/external_linters.rs +0 -0
  232. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/external_linters_sync.rs +0 -0
  233. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/index.rs +0 -0
  234. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/metadata_diagnostics.rs +0 -0
  235. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/offsets.rs +0 -0
  236. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/linter/runner.rs +0 -0
  237. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/config.rs +0 -0
  238. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/context.rs +0 -0
  239. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/conversions.rs +0 -0
  240. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/handlers/code_actions.rs +0 -0
  241. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/handlers/document_links.rs +0 -0
  242. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/handlers/document_symbols.rs +0 -0
  243. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/handlers/footnote_conversion.rs +0 -0
  244. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/handlers/goto_definition.rs +0 -0
  245. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/handlers/heading_link_conversion.rs +0 -0
  246. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/handlers/hover.rs +0 -0
  247. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/handlers/link_conversion.rs +0 -0
  248. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/handlers/list_conversion.rs +0 -0
  249. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/handlers/prepare_rename.rs +0 -0
  250. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/handlers/references.rs +0 -0
  251. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/handlers/rename.rs +0 -0
  252. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/handlers/workspace_symbols.rs +0 -0
  253. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/helpers.rs +0 -0
  254. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/navigation.rs +0 -0
  255. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/symbols.rs +0 -0
  256. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/task_pool.rs +0 -0
  257. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp/uri_ext.rs +0 -0
  258. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/lsp.rs +0 -0
  259. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/metadata/bibliography.rs +0 -0
  260. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/metadata/citations.rs +0 -0
  261. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/metadata/project.rs +0 -0
  262. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/metadata/references.rs +0 -0
  263. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/metadata/yaml.rs +0 -0
  264. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/metadata.rs +0 -0
  265. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/parser.rs +0 -0
  266. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/range_utils.rs +0 -0
  267. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/syntax.rs +0 -0
  268. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/utils.rs +0 -0
  269. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/yaml_engine.rs +0 -0
  270. {panache_cli-2.55.0 → panache_cli-2.57.0}/src/yaml_regions.rs +0 -0
@@ -92,12 +92,6 @@ dependencies = [
92
92
  "windows-sys",
93
93
  ]
94
94
 
95
- [[package]]
96
- name = "anyhow"
97
- version = "1.0.102"
98
- source = "registry+https://github.com/rust-lang/crates.io-index"
99
- checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
100
-
101
95
  [[package]]
102
96
  name = "assert_cmd"
103
97
  version = "2.2.2"
@@ -361,6 +355,38 @@ version = "2.11.0"
361
355
  source = "registry+https://github.com/rust-lang/crates.io-index"
362
356
  checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
363
357
 
358
+ [[package]]
359
+ name = "defmt"
360
+ version = "1.1.0"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "a6e524506490a1953d237cb87b1cfc1e46f88c18f10a22dfe0f507dc6bfc7f7f"
363
+ dependencies = [
364
+ "bitflags 1.3.2",
365
+ "defmt-macros",
366
+ ]
367
+
368
+ [[package]]
369
+ name = "defmt-macros"
370
+ version = "1.1.0"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "f0a27770e9c8f719a79d8b638281f4d828f77d8fd61e0bd94451b9b85e576a0b"
373
+ dependencies = [
374
+ "defmt-parser",
375
+ "proc-macro-error2",
376
+ "proc-macro2",
377
+ "quote",
378
+ "syn",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "defmt-parser"
383
+ version = "1.0.0"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
386
+ dependencies = [
387
+ "thiserror",
388
+ ]
389
+
364
390
  [[package]]
365
391
  name = "difflib"
366
392
  version = "0.4.0"
@@ -526,12 +552,6 @@ dependencies = [
526
552
  "serde",
527
553
  ]
528
554
 
529
- [[package]]
530
- name = "foldhash"
531
- version = "0.1.5"
532
- source = "registry+https://github.com/rust-lang/crates.io-index"
533
- checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
534
-
535
555
  [[package]]
536
556
  name = "foldhash"
537
557
  version = "0.2.0"
@@ -599,15 +619,13 @@ dependencies = [
599
619
 
600
620
  [[package]]
601
621
  name = "getrandom"
602
- version = "0.4.2"
622
+ version = "0.4.3"
603
623
  source = "registry+https://github.com/rust-lang/crates.io-index"
604
- checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
624
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
605
625
  dependencies = [
606
626
  "cfg-if",
607
627
  "libc",
608
628
  "r-efi 6.0.0",
609
- "wasip2",
610
- "wasip3",
611
629
  ]
612
630
 
613
631
  [[package]]
@@ -629,15 +647,6 @@ version = "0.14.5"
629
647
  source = "registry+https://github.com/rust-lang/crates.io-index"
630
648
  checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
631
649
 
632
- [[package]]
633
- name = "hashbrown"
634
- version = "0.15.5"
635
- source = "registry+https://github.com/rust-lang/crates.io-index"
636
- checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
637
- dependencies = [
638
- "foldhash 0.1.5",
639
- ]
640
-
641
650
  [[package]]
642
651
  name = "hashbrown"
643
652
  version = "0.16.1"
@@ -646,7 +655,7 @@ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
646
655
  dependencies = [
647
656
  "allocator-api2",
648
657
  "equivalent",
649
- "foldhash 0.2.0",
658
+ "foldhash",
650
659
  ]
651
660
 
652
661
  [[package]]
@@ -657,7 +666,7 @@ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
657
666
  dependencies = [
658
667
  "allocator-api2",
659
668
  "equivalent",
660
- "foldhash 0.2.0",
669
+ "foldhash",
661
670
  ]
662
671
 
663
672
  [[package]]
@@ -763,12 +772,6 @@ dependencies = [
763
772
  "zerovec",
764
773
  ]
765
774
 
766
- [[package]]
767
- name = "id-arena"
768
- version = "2.3.0"
769
- source = "registry+https://github.com/rust-lang/crates.io-index"
770
- checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
771
-
772
775
  [[package]]
773
776
  name = "ident_case"
774
777
  version = "1.0.1"
@@ -820,8 +823,6 @@ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
820
823
  dependencies = [
821
824
  "equivalent",
822
825
  "hashbrown 0.17.1",
823
- "serde",
824
- "serde_core",
825
826
  ]
826
827
 
827
828
  [[package]]
@@ -869,10 +870,11 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
869
870
 
870
871
  [[package]]
871
872
  name = "jiff"
872
- version = "0.2.28"
873
+ version = "0.2.29"
873
874
  source = "registry+https://github.com/rust-lang/crates.io-index"
874
- checksum = "4603d3033e49e2b0e31229fcab20a5d40089c607d975cd9c80551dc69eed9102"
875
+ checksum = "34f877a98676d2fb664698d74cc6a51ce6c484ce8c770f05d0108ec9090aeb46"
875
876
  dependencies = [
877
+ "defmt",
876
878
  "jiff-static",
877
879
  "log",
878
880
  "portable-atomic",
@@ -882,9 +884,9 @@ dependencies = [
882
884
 
883
885
  [[package]]
884
886
  name = "jiff-static"
885
- version = "0.2.28"
887
+ version = "0.2.29"
886
888
  source = "registry+https://github.com/rust-lang/crates.io-index"
887
- checksum = "782d32378dddf207193ac91cefb848ad41abb58195c95168e1291227a0832b47"
889
+ checksum = "0666b5ab5ecaca213fc2a85b8c0083d9004e84ee2d5f9a7e0017aaf50986f25f"
888
890
  dependencies = [
889
891
  "proc-macro2",
890
892
  "quote",
@@ -935,12 +937,6 @@ version = "1.5.0"
935
937
  source = "registry+https://github.com/rust-lang/crates.io-index"
936
938
  checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
937
939
 
938
- [[package]]
939
- name = "leb128fmt"
940
- version = "0.1.0"
941
- source = "registry+https://github.com/rust-lang/crates.io-index"
942
- checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
943
-
944
940
  [[package]]
945
941
  name = "libc"
946
942
  version = "0.2.186"
@@ -979,9 +975,9 @@ dependencies = [
979
975
 
980
976
  [[package]]
981
977
  name = "log"
982
- version = "0.4.32"
978
+ version = "0.4.33"
983
979
  source = "registry+https://github.com/rust-lang/crates.io-index"
984
- checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
980
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
985
981
 
986
982
  [[package]]
987
983
  name = "lsp-server"
@@ -1151,7 +1147,7 @@ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
1151
1147
 
1152
1148
  [[package]]
1153
1149
  name = "panache"
1154
- version = "2.55.0"
1150
+ version = "2.57.0"
1155
1151
  dependencies = [
1156
1152
  "annotate-snippets",
1157
1153
  "assert_cmd",
@@ -1194,7 +1190,7 @@ dependencies = [
1194
1190
 
1195
1191
  [[package]]
1196
1192
  name = "panache-formatter"
1197
- version = "0.13.0"
1193
+ version = "0.15.0"
1198
1194
  dependencies = [
1199
1195
  "insta",
1200
1196
  "log",
@@ -1202,6 +1198,9 @@ dependencies = [
1202
1198
  "pretty_yaml",
1203
1199
  "pulldown-latex",
1204
1200
  "rowan",
1201
+ "schemars",
1202
+ "serde",
1203
+ "serde_json",
1205
1204
  "similar-asserts",
1206
1205
  "toml",
1207
1206
  "unicode-width",
@@ -1209,11 +1208,12 @@ dependencies = [
1209
1208
 
1210
1209
  [[package]]
1211
1210
  name = "panache-parser"
1212
- version = "0.17.1"
1211
+ version = "0.18.0"
1213
1212
  dependencies = [
1214
1213
  "entities",
1215
1214
  "insta",
1216
1215
  "log",
1216
+ "memchr",
1217
1217
  "rowan",
1218
1218
  "schemars",
1219
1219
  "serde",
@@ -1357,12 +1357,24 @@ dependencies = [
1357
1357
  ]
1358
1358
 
1359
1359
  [[package]]
1360
- name = "prettyplease"
1361
- version = "0.2.37"
1360
+ name = "proc-macro-error-attr2"
1361
+ version = "2.0.0"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
1364
+ dependencies = [
1365
+ "proc-macro2",
1366
+ "quote",
1367
+ ]
1368
+
1369
+ [[package]]
1370
+ name = "proc-macro-error2"
1371
+ version = "2.0.1"
1362
1372
  source = "registry+https://github.com/rust-lang/crates.io-index"
1363
- checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1373
+ checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
1364
1374
  dependencies = [
1375
+ "proc-macro-error-attr2",
1365
1376
  "proc-macro2",
1377
+ "quote",
1366
1378
  "syn",
1367
1379
  ]
1368
1380
 
@@ -1644,12 +1656,6 @@ version = "1.2.0"
1644
1656
  source = "registry+https://github.com/rust-lang/crates.io-index"
1645
1657
  checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1646
1658
 
1647
- [[package]]
1648
- name = "semver"
1649
- version = "1.0.28"
1650
- source = "registry+https://github.com/rust-lang/crates.io-index"
1651
- checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1652
-
1653
1659
  [[package]]
1654
1660
  name = "serde"
1655
1661
  version = "1.0.228"
@@ -1782,9 +1788,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1782
1788
 
1783
1789
  [[package]]
1784
1790
  name = "syn"
1785
- version = "2.0.117"
1791
+ version = "2.0.118"
1786
1792
  source = "registry+https://github.com/rust-lang/crates.io-index"
1787
- checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1793
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
1788
1794
  dependencies = [
1789
1795
  "proc-macro2",
1790
1796
  "quote",
@@ -1809,7 +1815,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1809
1815
  checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1810
1816
  dependencies = [
1811
1817
  "fastrand",
1812
- "getrandom 0.4.2",
1818
+ "getrandom 0.4.3",
1813
1819
  "once_cell",
1814
1820
  "rustix",
1815
1821
  "windows-sys",
@@ -1957,12 +1963,6 @@ version = "0.2.2"
1957
1963
  source = "registry+https://github.com/rust-lang/crates.io-index"
1958
1964
  checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1959
1965
 
1960
- [[package]]
1961
- name = "unicode-xid"
1962
- version = "0.2.6"
1963
- source = "registry+https://github.com/rust-lang/crates.io-index"
1964
- checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1965
-
1966
1966
  [[package]]
1967
1967
  name = "utf8_iter"
1968
1968
  version = "1.0.4"
@@ -1981,7 +1981,7 @@ version = "1.23.3"
1981
1981
  source = "registry+https://github.com/rust-lang/crates.io-index"
1982
1982
  checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
1983
1983
  dependencies = [
1984
- "getrandom 0.4.2",
1984
+ "getrandom 0.4.3",
1985
1985
  "js-sys",
1986
1986
  "wasm-bindgen",
1987
1987
  ]
@@ -2039,16 +2039,7 @@ version = "1.0.4+wasi-0.2.12"
2039
2039
  source = "registry+https://github.com/rust-lang/crates.io-index"
2040
2040
  checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
2041
2041
  dependencies = [
2042
- "wit-bindgen 0.57.1",
2043
- ]
2044
-
2045
- [[package]]
2046
- name = "wasip3"
2047
- version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2048
- source = "registry+https://github.com/rust-lang/crates.io-index"
2049
- checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2050
- dependencies = [
2051
- "wit-bindgen 0.51.0",
2042
+ "wit-bindgen",
2052
2043
  ]
2053
2044
 
2054
2045
  [[package]]
@@ -2096,45 +2087,11 @@ dependencies = [
2096
2087
  "unicode-ident",
2097
2088
  ]
2098
2089
 
2099
- [[package]]
2100
- name = "wasm-encoder"
2101
- version = "0.244.0"
2102
- source = "registry+https://github.com/rust-lang/crates.io-index"
2103
- checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2104
- dependencies = [
2105
- "leb128fmt",
2106
- "wasmparser",
2107
- ]
2108
-
2109
- [[package]]
2110
- name = "wasm-metadata"
2111
- version = "0.244.0"
2112
- source = "registry+https://github.com/rust-lang/crates.io-index"
2113
- checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2114
- dependencies = [
2115
- "anyhow",
2116
- "indexmap",
2117
- "wasm-encoder",
2118
- "wasmparser",
2119
- ]
2120
-
2121
- [[package]]
2122
- name = "wasmparser"
2123
- version = "0.244.0"
2124
- source = "registry+https://github.com/rust-lang/crates.io-index"
2125
- checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2126
- dependencies = [
2127
- "bitflags 2.13.0",
2128
- "hashbrown 0.15.5",
2129
- "indexmap",
2130
- "semver",
2131
- ]
2132
-
2133
2090
  [[package]]
2134
2091
  name = "which"
2135
- version = "8.0.3"
2092
+ version = "8.0.4"
2136
2093
  source = "registry+https://github.com/rust-lang/crates.io-index"
2137
- checksum = "c789537cf2f7f55be8e6192f92e464174ee55f91af622777f7f1ceb0dbccd03e"
2094
+ checksum = "48d7cd18d4acb58fb3cdfe9ea54e6cd96a4e7d4cc45c56338b236e82dad47248"
2138
2095
  dependencies = [
2139
2096
  "libc",
2140
2097
  ]
@@ -2203,100 +2160,12 @@ version = "1.0.3"
2203
2160
  source = "registry+https://github.com/rust-lang/crates.io-index"
2204
2161
  checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
2205
2162
 
2206
- [[package]]
2207
- name = "wit-bindgen"
2208
- version = "0.51.0"
2209
- source = "registry+https://github.com/rust-lang/crates.io-index"
2210
- checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2211
- dependencies = [
2212
- "wit-bindgen-rust-macro",
2213
- ]
2214
-
2215
2163
  [[package]]
2216
2164
  name = "wit-bindgen"
2217
2165
  version = "0.57.1"
2218
2166
  source = "registry+https://github.com/rust-lang/crates.io-index"
2219
2167
  checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2220
2168
 
2221
- [[package]]
2222
- name = "wit-bindgen-core"
2223
- version = "0.51.0"
2224
- source = "registry+https://github.com/rust-lang/crates.io-index"
2225
- checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2226
- dependencies = [
2227
- "anyhow",
2228
- "heck",
2229
- "wit-parser",
2230
- ]
2231
-
2232
- [[package]]
2233
- name = "wit-bindgen-rust"
2234
- version = "0.51.0"
2235
- source = "registry+https://github.com/rust-lang/crates.io-index"
2236
- checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2237
- dependencies = [
2238
- "anyhow",
2239
- "heck",
2240
- "indexmap",
2241
- "prettyplease",
2242
- "syn",
2243
- "wasm-metadata",
2244
- "wit-bindgen-core",
2245
- "wit-component",
2246
- ]
2247
-
2248
- [[package]]
2249
- name = "wit-bindgen-rust-macro"
2250
- version = "0.51.0"
2251
- source = "registry+https://github.com/rust-lang/crates.io-index"
2252
- checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2253
- dependencies = [
2254
- "anyhow",
2255
- "prettyplease",
2256
- "proc-macro2",
2257
- "quote",
2258
- "syn",
2259
- "wit-bindgen-core",
2260
- "wit-bindgen-rust",
2261
- ]
2262
-
2263
- [[package]]
2264
- name = "wit-component"
2265
- version = "0.244.0"
2266
- source = "registry+https://github.com/rust-lang/crates.io-index"
2267
- checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2268
- dependencies = [
2269
- "anyhow",
2270
- "bitflags 2.13.0",
2271
- "indexmap",
2272
- "log",
2273
- "serde",
2274
- "serde_derive",
2275
- "serde_json",
2276
- "wasm-encoder",
2277
- "wasm-metadata",
2278
- "wasmparser",
2279
- "wit-parser",
2280
- ]
2281
-
2282
- [[package]]
2283
- name = "wit-parser"
2284
- version = "0.244.0"
2285
- source = "registry+https://github.com/rust-lang/crates.io-index"
2286
- checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2287
- dependencies = [
2288
- "anyhow",
2289
- "id-arena",
2290
- "indexmap",
2291
- "log",
2292
- "semver",
2293
- "serde",
2294
- "serde_derive",
2295
- "serde_json",
2296
- "unicode-xid",
2297
- "wasmparser",
2298
- ]
2299
-
2300
2169
  [[package]]
2301
2170
  name = "writeable"
2302
2171
  version = "0.6.3"
@@ -7,7 +7,7 @@ authors = ["Johan Larsson <johan@jolars.co>"]
7
7
 
8
8
  [package]
9
9
  name = "panache"
10
- version = "2.55.0"
10
+ version = "2.57.0"
11
11
  edition.workspace = true
12
12
  readme = "README.md"
13
13
  description = "An LSP, formatter, and linter for Markdown, Quarto, and R Markdown"
@@ -31,14 +31,6 @@ authors.workspace = true
31
31
 
32
32
  [workspace]
33
33
  members = ["crates/panache-parser", "crates/panache-formatter"]
34
- # Excluded because this crate must be compiled to wasm32-unknown-unknown to work
35
- # (it relies on `dprint_core::generate_plugin_code!`, which is only defined on
36
- # that target). Build with:
37
- # cargo build --manifest-path crates/panache-dprint/Cargo.toml \
38
- # --release --target wasm32-unknown-unknown
39
- exclude = [
40
- "crates/panache-dprint",
41
- ]
42
34
 
43
35
  [lib]
44
36
  doctest = false
@@ -49,8 +41,8 @@ path = "src/main.rs"
49
41
  required-features = ["cli"]
50
42
 
51
43
  [dependencies]
52
- panache-formatter = { path = "crates/panache-formatter", version = "0.13.0" }
53
- panache-parser = { path = "crates/panache-parser", version = "0.17.1", features = [
44
+ panache-formatter = { path = "crates/panache-formatter", version = "0.15.0" }
45
+ panache-parser = { path = "crates/panache-parser", version = "0.18.0", features = [
54
46
  "serde",
55
47
  "schema",
56
48
  ] }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: panache-cli
3
- Version: 2.55.0
3
+ Version: 2.57.0
4
4
  Classifier: Development Status :: 5 - Production/Stable
5
5
  Classifier: Environment :: Console
6
6
  Classifier: Intended Audience :: Developers
@@ -1,5 +1,32 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.15.0](https://github.com/jolars/panache/compare/panache-formatter-v0.14.0...panache-formatter-v0.15.0) (2026-06-21)
4
+
5
+ ### Features
6
+ - **lsp:** on-type continuation indent for lists ([`3c9bc3a`](https://github.com/jolars/panache/commit/3c9bc3a827ee9dd0aad8b3dc63fc3f3e0263d41b))
7
+ - **parser:** retag comment/PI/verbatim as `HTML_BLOCK_RAW` ([`447d537`](https://github.com/jolars/panache/commit/447d537dcbd6bdff6f55d95cb04b17cd9fd17574))
8
+ - **parser:** tokenize table separator rows in the CST ([`3de91a6`](https://github.com/jolars/panache/commit/3de91a623762282b07ede9d249cf3872a5634a5f))
9
+
10
+ ### Bug Fixes
11
+ - **formatter:** keep indent on YAML value below its key ([`52d578a`](https://github.com/jolars/panache/commit/52d578a34e5b53b37e94e34a5effd979e2424c03))
12
+
13
+ ### Dependencies
14
+ - updated crates/panache-parser to v0.18.0
15
+
16
+ ## [0.14.0](https://github.com/jolars/panache/compare/panache-formatter-v0.13.0...panache-formatter-v0.14.0) (2026-06-17)
17
+
18
+ ### Features
19
+ - **formatter:** expose config-enum JsonSchema behind schema feature ([`5062bb5`](https://github.com/jolars/panache/commit/5062bb52db346572748752210e2c6ec22b97e37d))
20
+ - **formatter:** add `table-indent` config option ([`1365b80`](https://github.com/jolars/panache/commit/1365b801c48fbb8670ff8343884b20e5b427f1c7)), resolves [#344](https://github.com/jolars/panache/issues/344) and [#352](https://github.com/jolars/panache/issues/352)
21
+ - **formatter:** hang math binary continuations flush under the RHS ([`0fae430`](https://github.com/jolars/panache/commit/0fae4303b8a758a7ac3a218170dfc9fb7a0c4409))
22
+ - **formatter:** align assignment-led math chains under the RHS ([`e20d0d6`](https://github.com/jolars/panache/commit/e20d0d6c36b4fa7bae295ea41ddc27d770fa4755))
23
+
24
+ ### Bug Fixes
25
+ - **formatter:** collapse line breaks inside split citations ([`148f69f`](https://github.com/jolars/panache/commit/148f69fb2d97ba5c42eb0b92645163cdc7ee4602))
26
+
27
+ ### Dependencies
28
+ - updated crates/panache-parser to v0.17.2
29
+
3
30
  ## [0.13.0](https://github.com/jolars/panache/compare/panache-formatter-v0.12.0...panache-formatter-v0.13.0) (2026-06-15)
4
31
 
5
32
  ### Features
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "panache-formatter"
3
- version = "0.13.0"
3
+ version = "0.15.0"
4
4
  edition.workspace = true
5
5
  include = [
6
6
  "/src/**/*",
@@ -18,12 +18,20 @@ keywords = ["quarto", "pandoc", "markdown", "formatter"]
18
18
  categories = ["text-processing"]
19
19
 
20
20
  [dependencies]
21
- panache-parser = { path = "../panache-parser", version = "0.17.1" }
21
+ panache-parser = { path = "../panache-parser", version = "0.18.0" }
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 }
24
26
  unicode-width = "0.2"
25
27
 
28
+ [features]
29
+ default = []
30
+ serde = ["dep:serde", "panache-parser/serde"]
31
+ schema = ["serde", "dep:schemars", "panache-parser/schema"]
32
+
26
33
  [dev-dependencies]
34
+ serde_json = "1.0"
27
35
  insta = { version = "1.47.2", features = ["json"] }
28
36
  # TEMPORARY: cross-validation oracle only (tests/yaml_cross_validation.rs).
29
37
  # The in-tree formatter is the source of truth. Drop this dep (and re-base