panache-cli 2.58.0__tar.gz → 2.60.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (295) hide show
  1. {panache_cli-2.58.0 → panache_cli-2.60.0}/Cargo.lock +51 -51
  2. {panache_cli-2.58.0 → panache_cli-2.60.0}/Cargo.toml +9 -5
  3. {panache_cli-2.58.0 → panache_cli-2.60.0}/PKG-INFO +2 -3
  4. {panache_cli-2.58.0 → panache_cli-2.60.0}/README.md +1 -2
  5. panache_cli-2.60.0/assets/quarto-schema/schema.json +56040 -0
  6. {panache_cli-2.58.0 → panache_cli-2.60.0}/build.rs +1 -1
  7. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/CHANGELOG.md +35 -0
  8. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/Cargo.toml +2 -2
  9. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/code_blocks.rs +45 -0
  10. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/core.rs +253 -0
  11. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/inline_layout.rs +107 -15
  12. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/tables.rs +191 -294
  13. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/yaml/STYLE.md +63 -17
  14. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/yaml/document.rs +120 -25
  15. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/yaml.rs +14 -6
  16. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/CHANGELOG.md +30 -0
  17. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/Cargo.toml +1 -1
  18. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/options.rs +282 -3
  19. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/pandoc_ast.rs +36 -3
  20. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/block_dispatcher.rs +882 -13
  21. panache_cli-2.60.0/crates/panache-parser/src/parser/blocks/admonitions.rs +282 -0
  22. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/code_blocks.rs +34 -5
  23. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/container_prefix.rs +7 -1
  24. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/html_blocks.rs +161 -0
  25. panache_cli-2.60.0/crates/panache-parser/src/parser/blocks/myst_directives.rs +348 -0
  26. panache_cli-2.60.0/crates/panache-parser/src/parser/blocks/myst_targets.rs +212 -0
  27. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/tables.rs +39 -8
  28. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/tests/blockquotes.rs +7 -0
  29. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks.rs +6 -0
  30. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/core.rs +157 -0
  31. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/core.rs +170 -4
  32. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/inline_ir.rs +6 -4
  33. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/links.rs +15 -18
  34. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/math.rs +92 -39
  35. panache_cli-2.60.0/crates/panache-parser/src/parser/inlines/myst_roles.rs +153 -0
  36. panache_cli-2.60.0/crates/panache-parser/src/parser/inlines/myst_substitutions.rs +76 -0
  37. panache_cli-2.60.0/crates/panache-parser/src/parser/inlines/svelte.rs +182 -0
  38. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines.rs +6 -0
  39. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/container_stack.rs +15 -0
  40. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/continuation.rs +8 -0
  41. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/yaml/profile.rs +14 -5
  42. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/yaml/validator.rs +203 -20
  43. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/kind.rs +54 -0
  44. panache_cli-2.60.0/crates/panache-parser/src/syntax/myst.rs +316 -0
  45. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/yaml.rs +16 -0
  46. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/yaml_ast.rs +51 -1
  47. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax.rs +2 -0
  48. panache_cli-2.60.0/src/bib/preview.rs +192 -0
  49. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/bib.rs +2 -0
  50. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/cli.rs +10 -4
  51. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/config/formatter_presets.rs +14 -2
  52. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/config/types/schema_helpers.rs +2 -0
  53. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/config/types.rs +56 -5
  54. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/config.rs +638 -51
  55. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/external_formatters_common.rs +2 -1
  56. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lib.rs +1 -0
  57. panache_cli-2.60.0/src/linter/fuzzy.rs +106 -0
  58. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/metadata_diagnostics.rs +92 -0
  59. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/quarto_schema/interp.rs +10 -44
  60. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/quarto_schema/report.rs +101 -14
  61. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/quarto_schema/value.rs +4 -4
  62. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/quarto_schema.rs +1 -1
  63. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/citation_keys.rs +135 -4
  64. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/html_entities.rs +31 -54
  65. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/link_text_is_url.rs +14 -0
  66. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/missing_chunk_labels.rs +30 -1
  67. panache_cli-2.60.0/src/linter/rules/quarto_schema.rs +358 -0
  68. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter.rs +2 -0
  69. panache_cli-2.60.0/src/lsp/config.rs +251 -0
  70. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/dispatch.rs +40 -7
  71. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/documents.rs +32 -5
  72. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/global_state.rs +69 -18
  73. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/completion.rs +67 -1
  74. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/diagnostics.rs +109 -36
  75. panache_cli-2.60.0/src/lsp/handlers/document_highlight.rs +67 -0
  76. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/file_rename.rs +3 -1
  77. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/file_watcher.rs +8 -3
  78. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/formatting.rs +22 -2
  79. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/hover.rs +1 -103
  80. panache_cli-2.60.0/src/lsp/handlers/linked_editing_range.rs +86 -0
  81. panache_cli-2.60.0/src/lsp/handlers/workspace_folders.rs +39 -0
  82. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers.rs +2 -0
  83. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/symbols.rs +116 -1
  84. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/testing.rs +69 -0
  85. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/main.rs +112 -15
  86. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/metadata/project.rs +131 -21
  87. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/metadata.rs +9 -0
  88. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/salsa.rs +154 -4
  89. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/utils.rs +52 -3
  90. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/yaml_engine.rs +20 -0
  91. panache_cli-2.58.0/src/linter/rules/quarto_schema.rs +0 -233
  92. panache_cli-2.58.0/src/lsp/config.rs +0 -74
  93. panache_cli-2.58.0/src/lsp/handlers/linked_editing_range.rs +0 -196
  94. {panache_cli-2.58.0 → panache_cli-2.60.0}/LICENSE +0 -0
  95. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/README.md +0 -0
  96. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/config.rs +0 -0
  97. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/directives.rs +0 -0
  98. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/blockquotes.rs +0 -0
  99. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/fenced_divs.rs +0 -0
  100. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/hashpipe.rs +0 -0
  101. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/headings.rs +0 -0
  102. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/indent_utils.rs +0 -0
  103. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/inline.rs +0 -0
  104. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/lists.rs +0 -0
  105. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/math/STYLE.md +0 -0
  106. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/math/linebreak.rs +0 -0
  107. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/math/operators.rs +0 -0
  108. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/math/render.rs +0 -0
  109. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/math.rs +0 -0
  110. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/metadata.rs +0 -0
  111. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/paragraphs.rs +0 -0
  112. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/sentence_wrap.rs +0 -0
  113. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/shortcodes.rs +0 -0
  114. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/smart.rs +0 -0
  115. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/utils.rs +0 -0
  116. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/yaml/block_map.rs +0 -0
  117. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/yaml/block_sequence.rs +0 -0
  118. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/yaml/flow.rs +0 -0
  119. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/yaml/options.rs +0 -0
  120. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter/yaml/scalar.rs +0 -0
  121. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/formatter.rs +0 -0
  122. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/lib.rs +0 -0
  123. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/parser.rs +0 -0
  124. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/syntax.rs +0 -0
  125. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/utils.rs +0 -0
  126. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-formatter/src/yaml_engine.rs +0 -0
  127. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/README.md +0 -0
  128. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/build.rs +0 -0
  129. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/grid_layout.rs +0 -0
  130. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/lib.rs +0 -0
  131. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/blockquotes.rs +0 -0
  132. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/definition_lists.rs +0 -0
  133. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/fenced_divs.rs +0 -0
  134. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/figures.rs +0 -0
  135. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/headings.rs +0 -0
  136. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/horizontal_rules.rs +0 -0
  137. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/indented_code.rs +0 -0
  138. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/latex_envs.rs +0 -0
  139. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/line_blocks.rs +0 -0
  140. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/lists.rs +0 -0
  141. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/metadata.rs +0 -0
  142. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/paragraphs.rs +0 -0
  143. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/raw_blocks.rs +0 -0
  144. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/reference_links.rs +0 -0
  145. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/tests/blanklines.rs +0 -0
  146. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/tests/code_blocks.rs +0 -0
  147. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/tests/definition_lists.rs +0 -0
  148. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/tests/headings.rs +0 -0
  149. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/tests/helpers.rs +0 -0
  150. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/tests/lists.rs +0 -0
  151. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/tests/losslessness.rs +0 -0
  152. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/blocks/tests/metadata_guards.rs +0 -0
  153. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/diagnostics.rs +0 -0
  154. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/bookdown.rs +0 -0
  155. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/bracketed_spans.rs +0 -0
  156. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/citations.rs +0 -0
  157. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/code_spans.rs +0 -0
  158. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/emoji.rs +0 -0
  159. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/escapes.rs +0 -0
  160. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/inline_executable.rs +0 -0
  161. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/inline_footnotes.rs +0 -0
  162. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/inline_html.rs +0 -0
  163. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/latex.rs +0 -0
  164. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/mark.rs +0 -0
  165. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/native_spans.rs +0 -0
  166. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/raw_inline.rs +0 -0
  167. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/refdef_map.rs +0 -0
  168. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/shortcodes.rs +0 -0
  169. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/sink.rs +0 -0
  170. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/strikeout.rs +0 -0
  171. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/subscript.rs +0 -0
  172. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/superscript.rs +0 -0
  173. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/tests.rs +0 -0
  174. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/uri-schemes.csv +0 -0
  175. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/inlines/wikilinks.rs +0 -0
  176. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/math.rs +0 -0
  177. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/attributes.rs +0 -0
  178. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/chunk_options.rs +0 -0
  179. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/helpers.rs +0 -0
  180. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/inline_emission.rs +0 -0
  181. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/list_item_buffer.rs +0 -0
  182. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/marker_utils.rs +0 -0
  183. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/text_buffer.rs +0 -0
  184. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/tree_copy.rs +0 -0
  185. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils/yaml_regions.rs +0 -0
  186. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/utils.rs +0 -0
  187. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/yaml/cooking.rs +0 -0
  188. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/yaml/events.rs +0 -0
  189. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/yaml/model.rs +0 -0
  190. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/yaml/parser.rs +0 -0
  191. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/yaml/scanner.rs +0 -0
  192. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser/yaml.rs +0 -0
  193. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/parser.rs +0 -0
  194. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/range_utils.rs +0 -0
  195. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/alerts.rs +0 -0
  196. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/ast.rs +0 -0
  197. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/attributes.rs +0 -0
  198. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/block_quotes.rs +0 -0
  199. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/blocks.rs +0 -0
  200. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/chunk_options.rs +0 -0
  201. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/citations.rs +0 -0
  202. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/code_blocks.rs +0 -0
  203. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/crossrefs.rs +0 -0
  204. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/definitions.rs +0 -0
  205. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/fenced_divs.rs +0 -0
  206. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/headings.rs +0 -0
  207. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/inlines.rs +0 -0
  208. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/links.rs +0 -0
  209. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/lists.rs +0 -0
  210. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/math.rs +0 -0
  211. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/raw_tex.rs +0 -0
  212. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/references.rs +0 -0
  213. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/shortcodes.rs +0 -0
  214. {panache_cli-2.58.0 → panache_cli-2.60.0}/crates/panache-parser/src/syntax/tables.rs +0 -0
  215. {panache_cli-2.58.0 → panache_cli-2.60.0}/pyproject.toml +0 -0
  216. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/bib/bibtex.rs +0 -0
  217. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/bib/csl_json.rs +0 -0
  218. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/bib/csl_yaml.rs +0 -0
  219. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/bib/index.rs +0 -0
  220. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/bib/ris.rs +0 -0
  221. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/bin/distill_quarto_schema.rs +0 -0
  222. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/cache.rs +0 -0
  223. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/diagnostic_renderer.rs +0 -0
  224. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/directives.rs +0 -0
  225. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/external_formatters_sync.rs +0 -0
  226. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/external_tools_common.rs +0 -0
  227. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/formatter.rs +0 -0
  228. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/includes.rs +0 -0
  229. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/code_block_collector.rs +0 -0
  230. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/diagnostics.rs +0 -0
  231. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/external_linters/clippy.rs +0 -0
  232. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/external_linters/eslint.rs +0 -0
  233. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/external_linters/jarl.rs +0 -0
  234. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/external_linters/ruff.rs +0 -0
  235. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/external_linters/shellcheck.rs +0 -0
  236. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/external_linters/staticcheck.rs +0 -0
  237. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/external_linters.rs +0 -0
  238. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/external_linters_sync.rs +0 -0
  239. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/index.rs +0 -0
  240. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/offsets.rs +0 -0
  241. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/quarto_schema/distill.rs +0 -0
  242. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/quarto_schema/model.rs +0 -0
  243. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/adjacent_footnote_refs.rs +0 -0
  244. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/chunk_label_spaces.rs +0 -0
  245. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/consumer_divergence.rs +0 -0
  246. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/crossref_as_link_target.rs +0 -0
  247. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/duplicate_references.rs +0 -0
  248. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/emoji_aliases.rs +0 -0
  249. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/empty_list_item.rs +0 -0
  250. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/empty_values.rs +0 -0
  251. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/figure_crossref_captions.rs +0 -0
  252. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/footnote_ref_in_footnote_def.rs +0 -0
  253. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/heading_eaten_attrs.rs +0 -0
  254. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/heading_hierarchy.rs +0 -0
  255. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/heading_strip_comments_residue.rs +0 -0
  256. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/math_content.rs +0 -0
  257. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/stray_fenced_div_markers.rs +0 -0
  258. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/undefined_anchor.rs +0 -0
  259. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/undefined_references.rs +0 -0
  260. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules/unused_definitions.rs +0 -0
  261. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/rules.rs +0 -0
  262. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/runner.rs +0 -0
  263. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/linter/yaml_resolve.rs +0 -0
  264. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/context.rs +0 -0
  265. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/conversions.rs +0 -0
  266. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/code_actions.rs +0 -0
  267. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/configuration.rs +0 -0
  268. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/document_links.rs +0 -0
  269. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/document_symbols.rs +0 -0
  270. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/file_operations.rs +0 -0
  271. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/folding_ranges.rs +0 -0
  272. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/footnote_conversion.rs +0 -0
  273. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/goto_definition.rs +0 -0
  274. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/heading_link_conversion.rs +0 -0
  275. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/link_conversion.rs +0 -0
  276. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/list_conversion.rs +0 -0
  277. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/prepare_rename.rs +0 -0
  278. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/references.rs +0 -0
  279. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/rename.rs +0 -0
  280. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/semantic_tokens.rs +0 -0
  281. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/shortcode_args.rs +0 -0
  282. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/handlers/workspace_symbols.rs +0 -0
  283. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/helpers.rs +0 -0
  284. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/navigation.rs +0 -0
  285. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/task_pool.rs +0 -0
  286. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp/uri_ext.rs +0 -0
  287. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/lsp.rs +0 -0
  288. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/metadata/bibliography.rs +0 -0
  289. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/metadata/citations.rs +0 -0
  290. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/metadata/references.rs +0 -0
  291. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/metadata/yaml.rs +0 -0
  292. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/parser.rs +0 -0
  293. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/range_utils.rs +0 -0
  294. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/syntax.rs +0 -0
  295. {panache_cli-2.58.0 → panache_cli-2.60.0}/src/yaml_regions.rs +0 -0
@@ -160,13 +160,13 @@ checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
160
160
 
161
161
  [[package]]
162
162
  name = "bstr"
163
- version = "1.12.1"
163
+ version = "1.12.3"
164
164
  source = "registry+https://github.com/rust-lang/crates.io-index"
165
- checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
165
+ checksum = "5cee35f73844aa3014bb606320a6c1f010249dbdf43342fe54b5a4f6a8ed4b79"
166
166
  dependencies = [
167
167
  "memchr",
168
168
  "regex-automata",
169
- "serde",
169
+ "serde_core",
170
170
  ]
171
171
 
172
172
  [[package]]
@@ -220,9 +220,9 @@ dependencies = [
220
220
 
221
221
  [[package]]
222
222
  name = "clap_complete"
223
- version = "4.6.5"
223
+ version = "4.6.7"
224
224
  source = "registry+https://github.com/rust-lang/crates.io-index"
225
- checksum = "e0a7a9bfdb35811f9e59832f0f05975114d2251b415fb534108e6f34060fd772"
225
+ checksum = "db8b397918185f0161ff3d6fcaa9e4bfc09b8367caf6e1d4a2848e5477ed027b"
226
226
  dependencies = [
227
227
  "clap",
228
228
  ]
@@ -263,9 +263,9 @@ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
263
263
 
264
264
  [[package]]
265
265
  name = "console"
266
- version = "0.16.3"
266
+ version = "0.16.4"
267
267
  source = "registry+https://github.com/rust-lang/crates.io-index"
268
- checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
268
+ checksum = "4fe5f465a4f6fee88fad41b85d990f84c835335e85b5d9e6e63e0d06d28cba7c"
269
269
  dependencies = [
270
270
  "encode_unicode",
271
271
  "libc",
@@ -463,9 +463,9 @@ dependencies = [
463
463
 
464
464
  [[package]]
465
465
  name = "emojis"
466
- version = "0.8.2"
466
+ version = "0.9.0"
467
467
  source = "registry+https://github.com/rust-lang/crates.io-index"
468
- checksum = "0a4d5d50b0b58df5173d8ff1192b4d1422ceae5d981b30d4b6f8ed1d673a2bc4"
468
+ checksum = "0b1514ced566c94991ed9563258ecf61e311fd773bf0a3f20606830386bf66e3"
469
469
  dependencies = [
470
470
  "phf",
471
471
  ]
@@ -484,9 +484,9 @@ checksum = "a6ff9a251416ff2d42d7be09d6ed9c88d23e965b0f5163e2fc9b361fe47967c0"
484
484
 
485
485
  [[package]]
486
486
  name = "env_filter"
487
- version = "1.0.1"
487
+ version = "2.0.0"
488
488
  source = "registry+https://github.com/rust-lang/crates.io-index"
489
- checksum = "32e90c2accc4b07a8456ea0debdc2e7587bdd890680d71173a15d4ae604f6eef"
489
+ checksum = "900d271a03799a1ee8d1ca9b19893b48ca674a9284fefcfb85f05e74ed314217"
490
490
  dependencies = [
491
491
  "log",
492
492
  "regex",
@@ -494,9 +494,9 @@ dependencies = [
494
494
 
495
495
  [[package]]
496
496
  name = "env_logger"
497
- version = "0.11.10"
497
+ version = "0.11.11"
498
498
  source = "registry+https://github.com/rust-lang/crates.io-index"
499
- checksum = "0621c04f2196ac3f488dd583365b9c09be011a4ab8b9f37248ffcc8f6198b56a"
499
+ checksum = "de671bd27a75a797dc9ae289ba1e77276e75e2026408aab65185384e2d5cd3f6"
500
500
  dependencies = [
501
501
  "anstream",
502
502
  "anstyle",
@@ -696,11 +696,11 @@ dependencies = [
696
696
 
697
697
  [[package]]
698
698
  name = "hashlink"
699
- version = "0.11.1"
699
+ version = "0.12.0"
700
700
  source = "registry+https://github.com/rust-lang/crates.io-index"
701
- checksum = "824e001ac4f3012dd16a264bec811403a67ca9deb6c102fc5049b32c4574b35f"
701
+ checksum = "a5081f264ed7adee96ea4b4778b6bb9da0a7228b084587aa3bd3ff05da7c5a3b"
702
702
  dependencies = [
703
- "hashbrown 0.16.1",
703
+ "hashbrown 0.17.1",
704
704
  ]
705
705
 
706
706
  [[package]]
@@ -826,9 +826,9 @@ dependencies = [
826
826
 
827
827
  [[package]]
828
828
  name = "ignore"
829
- version = "0.4.26"
829
+ version = "0.4.27"
830
830
  source = "registry+https://github.com/rust-lang/crates.io-index"
831
- checksum = "b915661dd01db3f05050265b2477bcc6527b3792388e2749b41623cc592be67d"
831
+ checksum = "fe112b004901c62c2faa11f4f75e9864e0cc5af8da71c9115d184a3aa888749f"
832
832
  dependencies = [
833
833
  "crossbeam-deque",
834
834
  "globset",
@@ -895,9 +895,9 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
895
895
 
896
896
  [[package]]
897
897
  name = "jiff"
898
- version = "0.2.29"
898
+ version = "0.2.31"
899
899
  source = "registry+https://github.com/rust-lang/crates.io-index"
900
- checksum = "34f877a98676d2fb664698d74cc6a51ce6c484ce8c770f05d0108ec9090aeb46"
900
+ checksum = "ccfe6121cbe750cf81efa362d85c0bde7ea298ec43092d3a193baca59cdbd634"
901
901
  dependencies = [
902
902
  "defmt",
903
903
  "jiff-static",
@@ -909,9 +909,9 @@ dependencies = [
909
909
 
910
910
  [[package]]
911
911
  name = "jiff-static"
912
- version = "0.2.29"
912
+ version = "0.2.31"
913
913
  source = "registry+https://github.com/rust-lang/crates.io-index"
914
- checksum = "0666b5ab5ecaca213fc2a85b8c0083d9004e84ee2d5f9a7e0017aaf50986f25f"
914
+ checksum = "e165e897f662d428f3cd3828a919dbe067c2d42bb1031eede74ef9d27ecdedd2"
915
915
  dependencies = [
916
916
  "proc-macro2",
917
917
  "quote",
@@ -920,9 +920,9 @@ dependencies = [
920
920
 
921
921
  [[package]]
922
922
  name = "js-sys"
923
- version = "0.3.102"
923
+ version = "0.3.103"
924
924
  source = "registry+https://github.com/rust-lang/crates.io-index"
925
- checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
925
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
926
926
  dependencies = [
927
927
  "cfg-if",
928
928
  "futures-util",
@@ -931,9 +931,9 @@ dependencies = [
931
931
 
932
932
  [[package]]
933
933
  name = "jsonschema"
934
- version = "0.46.5"
934
+ version = "0.46.8"
935
935
  source = "registry+https://github.com/rust-lang/crates.io-index"
936
- checksum = "6a5fe5206f06e589caf25e79fc05ccdf91fca745685fe9fe1a13bbdfb479a631"
936
+ checksum = "24fc8535da347b994f6d2fab0a84b74e3b31ad08ebe4204d95f3e755db7af49b"
937
937
  dependencies = [
938
938
  "ahash",
939
939
  "bytecount",
@@ -970,9 +970,9 @@ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
970
970
 
971
971
  [[package]]
972
972
  name = "libredox"
973
- version = "0.1.17"
973
+ version = "0.1.18"
974
974
  source = "registry+https://github.com/rust-lang/crates.io-index"
975
- checksum = "f02ab6bace2054fb888a3c16f990117b579d14a3088e472d63c6011fa185c9d3"
975
+ checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652"
976
976
  dependencies = [
977
977
  "libc",
978
978
  ]
@@ -1006,9 +1006,9 @@ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1006
1006
 
1007
1007
  [[package]]
1008
1008
  name = "lsp-server"
1009
- version = "0.7.9"
1009
+ version = "0.8.0"
1010
1010
  source = "registry+https://github.com/rust-lang/crates.io-index"
1011
- checksum = "7d6ada348dbc2703cbe7637b2dda05cff84d3da2819c24abcb305dd613e0ba2e"
1011
+ checksum = "0ad8be6fe0ca81b8298bfbbe8a77e9fcd8895ad6c84cd7794d5ebadcbb09ae43"
1012
1012
  dependencies = [
1013
1013
  "crossbeam-channel",
1014
1014
  "log",
@@ -1182,7 +1182,7 @@ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
1182
1182
 
1183
1183
  [[package]]
1184
1184
  name = "panache"
1185
- version = "2.58.0"
1185
+ version = "2.60.0"
1186
1186
  dependencies = [
1187
1187
  "annotate-snippets",
1188
1188
  "assert_cmd",
@@ -1226,7 +1226,7 @@ dependencies = [
1226
1226
 
1227
1227
  [[package]]
1228
1228
  name = "panache-formatter"
1229
- version = "0.16.0"
1229
+ version = "0.18.0"
1230
1230
  dependencies = [
1231
1231
  "insta",
1232
1232
  "log",
@@ -1244,7 +1244,7 @@ dependencies = [
1244
1244
 
1245
1245
  [[package]]
1246
1246
  name = "panache-parser"
1247
- version = "0.19.0"
1247
+ version = "0.20.0"
1248
1248
  dependencies = [
1249
1249
  "entities",
1250
1250
  "insta",
@@ -1515,9 +1515,9 @@ dependencies = [
1515
1515
 
1516
1516
  [[package]]
1517
1517
  name = "referencing"
1518
- version = "0.46.5"
1518
+ version = "0.46.8"
1519
1519
  source = "registry+https://github.com/rust-lang/crates.io-index"
1520
- checksum = "69e4e17ef386c5383591d07623d3de49cbc601156e7582973e6db98d66a57de2"
1520
+ checksum = "1c8dceb372b46fecd006be48ca335468b49ad887a7f0150cabd6098fa4fc500f"
1521
1521
  dependencies = [
1522
1522
  "ahash",
1523
1523
  "fluent-uri 0.4.1",
@@ -1610,9 +1610,9 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1610
1610
 
1611
1611
  [[package]]
1612
1612
  name = "salsa"
1613
- version = "0.27.0"
1613
+ version = "0.27.2"
1614
1614
  source = "registry+https://github.com/rust-lang/crates.io-index"
1615
- checksum = "adfc1e32b8d1a486e3a45a5480fb5dca7912f49262a8916a67378064da4fe1ab"
1615
+ checksum = "ffbaab832e2ea754afda4a738f987dd1e8bd30c9e5d8c981ee6a3934386095e2"
1616
1616
  dependencies = [
1617
1617
  "boxcar",
1618
1618
  "crossbeam-queue",
@@ -1636,15 +1636,15 @@ dependencies = [
1636
1636
 
1637
1637
  [[package]]
1638
1638
  name = "salsa-macro-rules"
1639
- version = "0.27.0"
1639
+ version = "0.27.2"
1640
1640
  source = "registry+https://github.com/rust-lang/crates.io-index"
1641
- checksum = "67dad477a3e3a484a7c2311c1d25160fb270214981be24022de7de8a206a3300"
1641
+ checksum = "de6872462ac73d39969a836273c24163e6a26a4e08f5114fcd80e25af30ea9c6"
1642
1642
 
1643
1643
  [[package]]
1644
1644
  name = "salsa-macros"
1645
- version = "0.27.0"
1645
+ version = "0.27.2"
1646
1646
  source = "registry+https://github.com/rust-lang/crates.io-index"
1647
- checksum = "943f70e101fb3bd599960e79e719e70d85142730e5b45f3269246086ed218562"
1647
+ checksum = "76bc78ffaf65b1a9175818592c5130aa10b1bb245a905722fd4db87cea8a8457"
1648
1648
  dependencies = [
1649
1649
  "proc-macro2",
1650
1650
  "quote",
@@ -2019,9 +2019,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2019
2019
 
2020
2020
  [[package]]
2021
2021
  name = "uuid"
2022
- version = "1.23.3"
2022
+ version = "1.23.4"
2023
2023
  source = "registry+https://github.com/rust-lang/crates.io-index"
2024
- checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
2024
+ checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
2025
2025
  dependencies = [
2026
2026
  "getrandom 0.4.3",
2027
2027
  "js-sys",
@@ -2086,9 +2086,9 @@ dependencies = [
2086
2086
 
2087
2087
  [[package]]
2088
2088
  name = "wasm-bindgen"
2089
- version = "0.2.125"
2089
+ version = "0.2.126"
2090
2090
  source = "registry+https://github.com/rust-lang/crates.io-index"
2091
- checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
2091
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
2092
2092
  dependencies = [
2093
2093
  "cfg-if",
2094
2094
  "once_cell",
@@ -2099,9 +2099,9 @@ dependencies = [
2099
2099
 
2100
2100
  [[package]]
2101
2101
  name = "wasm-bindgen-macro"
2102
- version = "0.2.125"
2102
+ version = "0.2.126"
2103
2103
  source = "registry+https://github.com/rust-lang/crates.io-index"
2104
- checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
2104
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
2105
2105
  dependencies = [
2106
2106
  "quote",
2107
2107
  "wasm-bindgen-macro-support",
@@ -2109,9 +2109,9 @@ dependencies = [
2109
2109
 
2110
2110
  [[package]]
2111
2111
  name = "wasm-bindgen-macro-support"
2112
- version = "0.2.125"
2112
+ version = "0.2.126"
2113
2113
  source = "registry+https://github.com/rust-lang/crates.io-index"
2114
- checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
2114
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
2115
2115
  dependencies = [
2116
2116
  "bumpalo",
2117
2117
  "proc-macro2",
@@ -2122,9 +2122,9 @@ dependencies = [
2122
2122
 
2123
2123
  [[package]]
2124
2124
  name = "wasm-bindgen-shared"
2125
- version = "0.2.125"
2125
+ version = "0.2.126"
2126
2126
  source = "registry+https://github.com/rust-lang/crates.io-index"
2127
- checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
2127
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
2128
2128
  dependencies = [
2129
2129
  "unicode-ident",
2130
2130
  ]
@@ -7,7 +7,7 @@ authors = ["Johan Larsson <johan@jolars.co>"]
7
7
 
8
8
  [package]
9
9
  name = "panache"
10
- version = "2.58.0"
10
+ version = "2.60.0"
11
11
  edition.workspace = true
12
12
  # `distill_quarto_schema` is a dev-only vendoring bin (src/bin/); keep bare
13
13
  # `cargo run` resolving to the CLI for tooling like the pre-commit format hook.
@@ -22,6 +22,10 @@ include = [
22
22
  "/build.rs",
23
23
  "/README.md",
24
24
  "/LICENSE",
25
+ # Read by build.rs (`compress_quarto_schema`) and embedded via
26
+ # `include_bytes!`; must be packaged or `cargo install` fails in the
27
+ # build script with `NotFound`.
28
+ "/assets/quarto-schema/schema.json",
25
29
  ]
26
30
  keywords = ["quarto", "pandoc", "markdown", "formatter", "language-server"]
27
31
  categories = [
@@ -44,8 +48,8 @@ path = "src/main.rs"
44
48
  required-features = ["cli"]
45
49
 
46
50
  [dependencies]
47
- panache-formatter = { path = "crates/panache-formatter", version = "0.16.0" }
48
- panache-parser = { path = "crates/panache-parser", version = "0.19.0", features = [
51
+ panache-formatter = { path = "crates/panache-formatter", version = "0.18.0" }
52
+ panache-parser = { path = "crates/panache-parser", version = "0.20.0", features = [
49
53
  "serde",
50
54
  "schema",
51
55
  ] }
@@ -53,13 +57,13 @@ annotate-snippets = "0.12.15"
53
57
  clap = { version = "4.6.1", features = ["derive", "env"], optional = true }
54
58
  dirs = "6.0.0"
55
59
  env_logger = "0.11.10"
56
- emojis = "0.8.0"
60
+ emojis = "0.9.0"
57
61
  flate2 = "1.0"
58
62
  crossbeam-channel = { version = "0.5.15", optional = true }
59
63
  globset = "0.4"
60
64
  ignore = { version = "0.4", optional = true }
61
65
  log = { version = "0.4.31", features = ["release_max_level_debug"] }
62
- lsp-server = { version = "0.7.9", optional = true }
66
+ lsp-server = { version = "0.8.0", optional = true }
63
67
  lsp-types = { version = "0.97.0", optional = true }
64
68
  num_cpus = { version = "1.16", optional = true }
65
69
  percent-encoding = { version = "2.3.2", optional = true }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: panache-cli
3
- Version: 2.58.0
3
+ Version: 2.60.0
4
4
  Classifier: Development Status :: 5 - Production/Stable
5
5
  Classifier: Environment :: Console
6
6
  Classifier: Intended Audience :: Developers
@@ -35,8 +35,7 @@ VSX](https://img.shields.io/open-vsx/v/jolars/panache?logo=vsix)](https://open-v
35
35
  Code](https://vsmarketplacebadges.dev/version-short/jolars.panache.svg?logo=vsix)](https://marketplace.visualstudio.com/items?itemName=jolars.panache)
36
36
  [![PyPI
37
37
  version](https://badge.fury.io/py/panache-cli.svg?icon=si%3Apython)](https://badge.fury.io/py/panache-cli)
38
- [![npm
39
- version](https://badge.fury.io/js/@panache-cli%2Fpanache.svg?icon=si%3Anpm)](https://badge.fury.io/js/@panache-cli%2Fpanache)
38
+ [![npm version](https://badge.fury.io/js/@panache-cli%2Fpanache.svg?icon=si%3Anpm)](https://badge.fury.io/js/@panache-cli%2Fpanache)
40
39
  [![codecov](https://codecov.io/gh/jolars/panache/graph/badge.svg?token=uaBVOBfILv)](https://codecov.io/gh/jolars/panache)
41
40
 
42
41
  A language server, formatter, and linter for Markdown, Quarto, and R Markdown,
@@ -9,8 +9,7 @@ VSX](https://img.shields.io/open-vsx/v/jolars/panache?logo=vsix)](https://open-v
9
9
  Code](https://vsmarketplacebadges.dev/version-short/jolars.panache.svg?logo=vsix)](https://marketplace.visualstudio.com/items?itemName=jolars.panache)
10
10
  [![PyPI
11
11
  version](https://badge.fury.io/py/panache-cli.svg?icon=si%3Apython)](https://badge.fury.io/py/panache-cli)
12
- [![npm
13
- version](https://badge.fury.io/js/@panache-cli%2Fpanache.svg?icon=si%3Anpm)](https://badge.fury.io/js/@panache-cli%2Fpanache)
12
+ [![npm version](https://badge.fury.io/js/@panache-cli%2Fpanache.svg?icon=si%3Anpm)](https://badge.fury.io/js/@panache-cli%2Fpanache)
14
13
  [![codecov](https://codecov.io/gh/jolars/panache/graph/badge.svg?token=uaBVOBfILv)](https://codecov.io/gh/jolars/panache)
15
14
 
16
15
  A language server, formatter, and linter for Markdown, Quarto, and R Markdown,