panache-cli 2.61.0__tar.gz → 3.0.1__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.61.0 → panache_cli-3.0.1}/Cargo.lock +203 -157
  2. {panache_cli-2.61.0 → panache_cli-3.0.1}/Cargo.toml +20 -20
  3. {panache_cli-2.61.0 → panache_cli-3.0.1}/PKG-INFO +1 -1
  4. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/CHANGELOG.md +33 -0
  5. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/Cargo.toml +6 -6
  6. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/config.rs +35 -4
  7. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/core.rs +56 -21
  8. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/inline.rs +6 -1
  9. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/inline_layout.rs +8 -4
  10. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/math/linebreak.rs +10 -4
  11. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/math.rs +19 -0
  12. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/tables.rs +16 -34
  13. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/lib.rs +1 -0
  14. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/CHANGELOG.md +37 -0
  15. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/Cargo.toml +6 -6
  16. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/options.rs +6 -70
  17. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/pandoc_ast.rs +3 -31
  18. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/block_dispatcher.rs +93 -38
  19. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/html_blocks.rs +123 -29
  20. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/lists.rs +1 -1
  21. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/metadata.rs +207 -35
  22. panache_cli-3.0.1/crates/panache-parser/src/parser/blocks/paragraphs.rs +249 -0
  23. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/tables.rs +357 -29
  24. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/tests/code_blocks.rs +219 -1
  25. panache_cli-3.0.1/crates/panache-parser/src/parser/blocks/tests/headings.rs +475 -0
  26. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/tests/lists.rs +72 -1
  27. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/tests/metadata_guards.rs +38 -1
  28. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/core.rs +597 -17
  29. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/citations.rs +114 -0
  30. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/container_stack.rs +17 -1
  31. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/list_item_buffer.rs +108 -37
  32. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/bib/csl_json.rs +0 -105
  33. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/bib/csl_yaml.rs +0 -10
  34. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/bib/index.rs +0 -11
  35. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/bib/ris.rs +0 -53
  36. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/bib.rs +3 -3
  37. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/cli.rs +12 -26
  38. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/config/formatter_presets.rs +0 -1
  39. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/config/types.rs +53 -249
  40. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/config.rs +172 -149
  41. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/external_formatters_common.rs +105 -6
  42. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/external_formatters_sync.rs +3 -5
  43. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/formatter.rs +9 -1
  44. panache_cli-3.0.1/src/linter/rules/citation_nonbreaking_space.rs +267 -0
  45. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules.rs +1 -0
  46. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter.rs +1 -0
  47. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/dispatch.rs +101 -4
  48. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/documents.rs +22 -20
  49. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/global_state.rs +71 -5
  50. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/diagnostics.rs +36 -34
  51. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/testing.rs +40 -7
  52. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp.rs +47 -5
  53. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/main.rs +37 -97
  54. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/salsa.rs +19 -19
  55. panache_cli-2.61.0/crates/panache-parser/src/parser/blocks/paragraphs.rs +0 -167
  56. panache_cli-2.61.0/crates/panache-parser/src/parser/blocks/tests/headings.rs +0 -216
  57. {panache_cli-2.61.0 → panache_cli-3.0.1}/LICENSE +0 -0
  58. {panache_cli-2.61.0 → panache_cli-3.0.1}/README.md +0 -0
  59. {panache_cli-2.61.0 → panache_cli-3.0.1}/assets/quarto-schema/schema.json +0 -0
  60. {panache_cli-2.61.0 → panache_cli-3.0.1}/build.rs +0 -0
  61. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/README.md +0 -0
  62. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/directives.rs +0 -0
  63. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/blockquotes.rs +0 -0
  64. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/code_blocks.rs +0 -0
  65. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/fenced_divs.rs +0 -0
  66. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/hashpipe.rs +0 -0
  67. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/headings.rs +0 -0
  68. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/indent_utils.rs +0 -0
  69. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/lists.rs +0 -0
  70. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/math/STYLE.md +0 -0
  71. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/math/operators.rs +0 -0
  72. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/math/render.rs +0 -0
  73. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/metadata.rs +0 -0
  74. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/paragraphs.rs +0 -0
  75. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/sentence_wrap.rs +0 -0
  76. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/shortcodes.rs +0 -0
  77. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/smart.rs +0 -0
  78. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/utils.rs +0 -0
  79. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/yaml/STYLE.md +0 -0
  80. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/yaml/block_map.rs +0 -0
  81. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/yaml/block_sequence.rs +0 -0
  82. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/yaml/document.rs +0 -0
  83. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/yaml/flow.rs +0 -0
  84. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/yaml/options.rs +0 -0
  85. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/yaml/scalar.rs +0 -0
  86. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/yaml.rs +0 -0
  87. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter.rs +0 -0
  88. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/parser.rs +0 -0
  89. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/syntax.rs +0 -0
  90. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/utils.rs +0 -0
  91. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/yaml_engine.rs +0 -0
  92. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/README.md +0 -0
  93. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/build.rs +0 -0
  94. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/grid_layout.rs +0 -0
  95. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/lib.rs +0 -0
  96. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/admonitions.rs +0 -0
  97. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/blockquotes.rs +0 -0
  98. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/code_blocks.rs +0 -0
  99. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/container_prefix.rs +0 -0
  100. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/definition_lists.rs +0 -0
  101. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/fenced_divs.rs +0 -0
  102. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/figures.rs +0 -0
  103. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/headings.rs +0 -0
  104. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/horizontal_rules.rs +0 -0
  105. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/indented_code.rs +0 -0
  106. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/latex_envs.rs +0 -0
  107. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/line_blocks.rs +0 -0
  108. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/myst_directives.rs +0 -0
  109. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/myst_targets.rs +0 -0
  110. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/raw_blocks.rs +0 -0
  111. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/reference_links.rs +0 -0
  112. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/tests/blanklines.rs +0 -0
  113. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/tests/blockquotes.rs +0 -0
  114. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/tests/definition_lists.rs +0 -0
  115. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/tests/helpers.rs +0 -0
  116. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/tests/losslessness.rs +0 -0
  117. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks.rs +0 -0
  118. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/diagnostics.rs +0 -0
  119. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/bookdown.rs +0 -0
  120. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/bracketed_spans.rs +0 -0
  121. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/code_spans.rs +0 -0
  122. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/core.rs +0 -0
  123. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/emoji.rs +0 -0
  124. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/escapes.rs +0 -0
  125. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/inline_executable.rs +0 -0
  126. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/inline_footnotes.rs +0 -0
  127. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/inline_html.rs +0 -0
  128. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/inline_ir.rs +0 -0
  129. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/latex.rs +0 -0
  130. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/links.rs +0 -0
  131. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/mark.rs +0 -0
  132. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/math.rs +0 -0
  133. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/myst_roles.rs +0 -0
  134. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/myst_substitutions.rs +0 -0
  135. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/native_spans.rs +0 -0
  136. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/raw_inline.rs +0 -0
  137. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/refdef_map.rs +0 -0
  138. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/shortcodes.rs +0 -0
  139. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/sink.rs +0 -0
  140. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/strikeout.rs +0 -0
  141. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/subscript.rs +0 -0
  142. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/superscript.rs +0 -0
  143. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/svelte.rs +0 -0
  144. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/tests.rs +0 -0
  145. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/uri-schemes.csv +0 -0
  146. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/wikilinks.rs +0 -0
  147. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines.rs +0 -0
  148. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/math.rs +0 -0
  149. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/attributes.rs +0 -0
  150. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/chunk_options.rs +0 -0
  151. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/continuation.rs +0 -0
  152. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/helpers.rs +0 -0
  153. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/inline_emission.rs +0 -0
  154. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/marker_utils.rs +0 -0
  155. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/text_buffer.rs +0 -0
  156. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/tree_copy.rs +0 -0
  157. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/yaml_regions.rs +0 -0
  158. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils.rs +0 -0
  159. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/yaml/cooking.rs +0 -0
  160. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/yaml/events.rs +0 -0
  161. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/yaml/model.rs +0 -0
  162. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/yaml/parser.rs +0 -0
  163. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/yaml/profile.rs +0 -0
  164. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/yaml/scanner.rs +0 -0
  165. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/yaml/validator.rs +0 -0
  166. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/yaml.rs +0 -0
  167. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser.rs +0 -0
  168. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/range_utils.rs +0 -0
  169. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/alerts.rs +0 -0
  170. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/ast.rs +0 -0
  171. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/attributes.rs +0 -0
  172. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/block_quotes.rs +0 -0
  173. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/blocks.rs +0 -0
  174. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/chunk_options.rs +0 -0
  175. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/citations.rs +0 -0
  176. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/code_blocks.rs +0 -0
  177. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/crossrefs.rs +0 -0
  178. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/definitions.rs +0 -0
  179. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/fenced_divs.rs +0 -0
  180. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/headings.rs +0 -0
  181. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/inlines.rs +0 -0
  182. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/kind.rs +0 -0
  183. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/links.rs +0 -0
  184. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/lists.rs +0 -0
  185. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/math.rs +0 -0
  186. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/myst.rs +0 -0
  187. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/raw_tex.rs +0 -0
  188. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/references.rs +0 -0
  189. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/shortcodes.rs +0 -0
  190. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/tables.rs +0 -0
  191. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/yaml.rs +0 -0
  192. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/yaml_ast.rs +0 -0
  193. {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax.rs +0 -0
  194. {panache_cli-2.61.0 → panache_cli-3.0.1}/pyproject.toml +0 -0
  195. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/bib/bibtex.rs +0 -0
  196. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/bib/preview.rs +0 -0
  197. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/bin/distill_quarto_schema.rs +0 -0
  198. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/cache.rs +0 -0
  199. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/config/types/schema_helpers.rs +0 -0
  200. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/diagnostic_renderer.rs +0 -0
  201. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/directives.rs +0 -0
  202. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/external_tools_common.rs +0 -0
  203. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/includes.rs +0 -0
  204. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lib.rs +0 -0
  205. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/code_block_collector.rs +0 -0
  206. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/diagnostics.rs +0 -0
  207. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/external_linters/clippy.rs +0 -0
  208. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/external_linters/eslint.rs +0 -0
  209. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/external_linters/jarl.rs +0 -0
  210. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/external_linters/ruff.rs +0 -0
  211. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/external_linters/shellcheck.rs +0 -0
  212. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/external_linters/staticcheck.rs +0 -0
  213. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/external_linters.rs +0 -0
  214. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/external_linters_sync.rs +0 -0
  215. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/fuzzy.rs +0 -0
  216. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/index.rs +0 -0
  217. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/metadata_diagnostics.rs +0 -0
  218. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/offsets.rs +0 -0
  219. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/quarto_schema/distill.rs +0 -0
  220. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/quarto_schema/interp.rs +0 -0
  221. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/quarto_schema/model.rs +0 -0
  222. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/quarto_schema/report.rs +0 -0
  223. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/quarto_schema/value.rs +0 -0
  224. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/quarto_schema.rs +0 -0
  225. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/adjacent_footnote_refs.rs +0 -0
  226. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/chunk_label_spaces.rs +0 -0
  227. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/citation_keys.rs +0 -0
  228. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/consumer_divergence.rs +0 -0
  229. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/crossref_as_link_target.rs +0 -0
  230. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/duplicate_references.rs +0 -0
  231. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/emoji_aliases.rs +0 -0
  232. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/empty_list_item.rs +0 -0
  233. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/empty_values.rs +0 -0
  234. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/figure_crossref_captions.rs +0 -0
  235. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/footnote_ref_in_footnote_def.rs +0 -0
  236. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/heading_eaten_attrs.rs +0 -0
  237. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/heading_hierarchy.rs +0 -0
  238. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/heading_strip_comments_residue.rs +0 -0
  239. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/html_entities.rs +0 -0
  240. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/link_text_is_url.rs +0 -0
  241. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/math_content.rs +0 -0
  242. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/missing_chunk_labels.rs +0 -0
  243. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/quarto_schema.rs +0 -0
  244. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/stray_fenced_div_markers.rs +0 -0
  245. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/undefined_anchor.rs +0 -0
  246. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/undefined_references.rs +0 -0
  247. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/unused_definitions.rs +0 -0
  248. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/runner.rs +0 -0
  249. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/yaml_resolve.rs +0 -0
  250. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/config.rs +0 -0
  251. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/context.rs +0 -0
  252. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/conversions.rs +0 -0
  253. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/code_actions.rs +0 -0
  254. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/completion.rs +0 -0
  255. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/configuration.rs +0 -0
  256. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/document_highlight.rs +0 -0
  257. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/document_links.rs +0 -0
  258. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/document_symbols.rs +0 -0
  259. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/file_operations.rs +0 -0
  260. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/file_rename.rs +0 -0
  261. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/file_watcher.rs +0 -0
  262. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/folding_ranges.rs +0 -0
  263. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/footnote_conversion.rs +0 -0
  264. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/formatting.rs +0 -0
  265. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/goto_definition.rs +0 -0
  266. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/heading_link_conversion.rs +0 -0
  267. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/hover.rs +0 -0
  268. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/link_conversion.rs +0 -0
  269. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/linked_editing_range.rs +0 -0
  270. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/list_conversion.rs +0 -0
  271. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/prepare_rename.rs +0 -0
  272. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/references.rs +0 -0
  273. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/rename.rs +0 -0
  274. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/semantic_tokens.rs +0 -0
  275. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/shortcode_args.rs +0 -0
  276. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/workspace_folders.rs +0 -0
  277. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/workspace_symbols.rs +0 -0
  278. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers.rs +0 -0
  279. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/helpers.rs +0 -0
  280. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/navigation.rs +0 -0
  281. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/symbols.rs +0 -0
  282. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/task_pool.rs +0 -0
  283. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/uri_ext.rs +0 -0
  284. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/metadata/bibliography.rs +0 -0
  285. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/metadata/citations.rs +0 -0
  286. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/metadata/project.rs +0 -0
  287. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/metadata/references.rs +0 -0
  288. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/metadata/yaml.rs +0 -0
  289. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/metadata.rs +0 -0
  290. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/parser.rs +0 -0
  291. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/range_utils.rs +0 -0
  292. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/syntax.rs +0 -0
  293. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/utils.rs +0 -0
  294. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/yaml_engine.rs +0 -0
  295. {panache_cli-2.61.0 → panache_cli-3.0.1}/src/yaml_regions.rs +0 -0
@@ -142,9 +142,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
142
142
 
143
143
  [[package]]
144
144
  name = "bitflags"
145
- version = "2.13.0"
145
+ version = "2.13.1"
146
146
  source = "registry+https://github.com/rust-lang/crates.io-index"
147
- checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
147
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
148
148
 
149
149
  [[package]]
150
150
  name = "borrow-or-share"
@@ -160,9 +160,9 @@ checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
160
160
 
161
161
  [[package]]
162
162
  name = "bstr"
163
- version = "1.12.3"
163
+ version = "1.13.0"
164
164
  source = "registry+https://github.com/rust-lang/crates.io-index"
165
- checksum = "5cee35f73844aa3014bb606320a6c1f010249dbdf43342fe54b5a4f6a8ed4b79"
165
+ checksum = "1f7dc094d718f2e1c1559ad110e27eeaae14a5465d3d56dd6dbd793079fbd530"
166
166
  dependencies = [
167
167
  "memchr",
168
168
  "regex-automata",
@@ -189,9 +189,9 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
189
189
 
190
190
  [[package]]
191
191
  name = "clap"
192
- version = "4.6.1"
192
+ version = "4.6.4"
193
193
  source = "registry+https://github.com/rust-lang/crates.io-index"
194
- checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
194
+ checksum = "d91e0c145792ef73a6ad36d27c75ac09f1832222a3c209689d90f534685ee5b7"
195
195
  dependencies = [
196
196
  "clap_builder",
197
197
  "clap_derive",
@@ -208,9 +208,9 @@ dependencies = [
208
208
 
209
209
  [[package]]
210
210
  name = "clap_builder"
211
- version = "4.6.0"
211
+ version = "4.6.2"
212
212
  source = "registry+https://github.com/rust-lang/crates.io-index"
213
- checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
213
+ checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
214
214
  dependencies = [
215
215
  "anstream",
216
216
  "anstyle",
@@ -229,14 +229,14 @@ dependencies = [
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",
239
+ "syn 3.0.3",
240
240
  ]
241
241
 
242
242
  [[package]]
@@ -289,18 +289,18 @@ dependencies = [
289
289
 
290
290
  [[package]]
291
291
  name = "crossbeam-channel"
292
- version = "0.5.15"
292
+ version = "0.5.16"
293
293
  source = "registry+https://github.com/rust-lang/crates.io-index"
294
- checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
294
+ checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
295
295
  dependencies = [
296
296
  "crossbeam-utils",
297
297
  ]
298
298
 
299
299
  [[package]]
300
300
  name = "crossbeam-deque"
301
- version = "0.8.6"
301
+ version = "0.8.7"
302
302
  source = "registry+https://github.com/rust-lang/crates.io-index"
303
- checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
303
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
304
304
  dependencies = [
305
305
  "crossbeam-epoch",
306
306
  "crossbeam-utils",
@@ -308,27 +308,27 @@ dependencies = [
308
308
 
309
309
  [[package]]
310
310
  name = "crossbeam-epoch"
311
- version = "0.9.18"
311
+ version = "0.9.20"
312
312
  source = "registry+https://github.com/rust-lang/crates.io-index"
313
- checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
313
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
314
314
  dependencies = [
315
315
  "crossbeam-utils",
316
316
  ]
317
317
 
318
318
  [[package]]
319
319
  name = "crossbeam-queue"
320
- version = "0.3.12"
320
+ version = "0.3.13"
321
321
  source = "registry+https://github.com/rust-lang/crates.io-index"
322
- checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
322
+ checksum = "803d13fb3b09d88be9f4dbc29062c66b19bf7170867ceb746d2a8689bf6c7a26"
323
323
  dependencies = [
324
324
  "crossbeam-utils",
325
325
  ]
326
326
 
327
327
  [[package]]
328
328
  name = "crossbeam-utils"
329
- version = "0.8.21"
329
+ version = "0.8.22"
330
330
  source = "registry+https://github.com/rust-lang/crates.io-index"
331
- checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
331
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
332
332
 
333
333
  [[package]]
334
334
  name = "darling"
@@ -350,7 +350,7 @@ dependencies = [
350
350
  "proc-macro2",
351
351
  "quote",
352
352
  "strsim",
353
- "syn",
353
+ "syn 2.0.119",
354
354
  ]
355
355
 
356
356
  [[package]]
@@ -361,7 +361,7 @@ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
361
361
  dependencies = [
362
362
  "darling_core",
363
363
  "quote",
364
- "syn",
364
+ "syn 2.0.119",
365
365
  ]
366
366
 
367
367
  [[package]]
@@ -389,7 +389,7 @@ dependencies = [
389
389
  "defmt-parser",
390
390
  "proc-macro2",
391
391
  "quote",
392
- "syn",
392
+ "syn 2.0.119",
393
393
  ]
394
394
 
395
395
  [[package]]
@@ -436,7 +436,7 @@ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
436
436
  dependencies = [
437
437
  "proc-macro2",
438
438
  "quote",
439
- "syn",
439
+ "syn 2.0.119",
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"
@@ -533,9 +533,9 @@ dependencies = [
533
533
 
534
534
  [[package]]
535
535
  name = "fastrand"
536
- version = "2.4.1"
536
+ version = "2.5.0"
537
537
  source = "registry+https://github.com/rust-lang/crates.io-index"
538
- checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
538
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
539
539
 
540
540
  [[package]]
541
541
  name = "flate2"
@@ -594,21 +594,21 @@ dependencies = [
594
594
 
595
595
  [[package]]
596
596
  name = "futures-core"
597
- version = "0.3.32"
597
+ version = "0.3.33"
598
598
  source = "registry+https://github.com/rust-lang/crates.io-index"
599
- checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
599
+ checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
600
600
 
601
601
  [[package]]
602
602
  name = "futures-task"
603
- version = "0.3.32"
603
+ version = "0.3.33"
604
604
  source = "registry+https://github.com/rust-lang/crates.io-index"
605
- checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
605
+ checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
606
606
 
607
607
  [[package]]
608
608
  name = "futures-util"
609
- version = "0.3.32"
609
+ version = "0.3.33"
610
610
  source = "registry+https://github.com/rust-lang/crates.io-index"
611
- checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
611
+ checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
612
612
  dependencies = [
613
613
  "futures-core",
614
614
  "futures-task",
@@ -654,9 +654,9 @@ dependencies = [
654
654
 
655
655
  [[package]]
656
656
  name = "globset"
657
- version = "0.4.18"
657
+ version = "0.4.19"
658
658
  source = "registry+https://github.com/rust-lang/crates.io-index"
659
- checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
659
+ checksum = "e47d37d2ae4464254884b60ab7071be2b876a9c35b696bd018ddcc76847309cd"
660
660
  dependencies = [
661
661
  "aho-corasick",
662
662
  "bstr",
@@ -671,17 +671,6 @@ version = "0.14.5"
671
671
  source = "registry+https://github.com/rust-lang/crates.io-index"
672
672
  checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
673
673
 
674
- [[package]]
675
- name = "hashbrown"
676
- version = "0.16.1"
677
- source = "registry+https://github.com/rust-lang/crates.io-index"
678
- checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
679
- dependencies = [
680
- "allocator-api2",
681
- "equivalent",
682
- "foldhash",
683
- ]
684
-
685
674
  [[package]]
686
675
  name = "hashbrown"
687
676
  version = "0.17.1"
@@ -695,9 +684,9 @@ dependencies = [
695
684
 
696
685
  [[package]]
697
686
  name = "hashlink"
698
- version = "0.12.0"
687
+ version = "0.12.1"
699
688
  source = "registry+https://github.com/rust-lang/crates.io-index"
700
- checksum = "a5081f264ed7adee96ea4b4778b6bb9da0a7228b084587aa3bd3ff05da7c5a3b"
689
+ checksum = "32069d97bb81e38fa67eab65e3393bf804bb85969f2bc06bf13f64aef5aba248"
701
690
  dependencies = [
702
691
  "hashbrown 0.17.1",
703
692
  ]
@@ -825,9 +814,9 @@ dependencies = [
825
814
 
826
815
  [[package]]
827
816
  name = "ignore"
828
- version = "0.4.27"
817
+ version = "0.4.31"
829
818
  source = "registry+https://github.com/rust-lang/crates.io-index"
830
- checksum = "fe112b004901c62c2faa11f4f75e9864e0cc5af8da71c9115d184a3aa888749f"
819
+ checksum = "7f8a7b8211e695a1d0cd91cace480d4d0bd57667ab10277cc412c5f7f4884f83"
831
820
  dependencies = [
832
821
  "crossbeam-deque",
833
822
  "globset",
@@ -894,11 +883,12 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
894
883
 
895
884
  [[package]]
896
885
  name = "jiff"
897
- version = "0.2.31"
886
+ version = "0.2.34"
898
887
  source = "registry+https://github.com/rust-lang/crates.io-index"
899
- checksum = "ccfe6121cbe750cf81efa362d85c0bde7ea298ec43092d3a193baca59cdbd634"
888
+ checksum = "e184d09547b80eb7e20d141ba2fb1fbac843ca53f4cf1b31210adc4c1adc6e16"
900
889
  dependencies = [
901
890
  "defmt",
891
+ "jiff-core",
902
892
  "jiff-static",
903
893
  "log",
904
894
  "portable-atomic",
@@ -906,15 +896,25 @@ dependencies = [
906
896
  "serde_core",
907
897
  ]
908
898
 
899
+ [[package]]
900
+ name = "jiff-core"
901
+ version = "0.1.0"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "7feca88439efe53da3754500c1851dedf3cb36c524dd5cf8225cc0794de95d09"
904
+ dependencies = [
905
+ "defmt",
906
+ ]
907
+
909
908
  [[package]]
910
909
  name = "jiff-static"
911
- version = "0.2.31"
910
+ version = "0.2.34"
912
911
  source = "registry+https://github.com/rust-lang/crates.io-index"
913
- checksum = "e165e897f662d428f3cd3828a919dbe067c2d42bb1031eede74ef9d27ecdedd2"
912
+ checksum = "323da076b7a6faf914dc677cb05a4b907742ff7375c8322c9e7f5061e5e0e9de"
914
913
  dependencies = [
914
+ "jiff-core",
915
915
  "proc-macro2",
916
916
  "quote",
917
- "syn",
917
+ "syn 2.0.119",
918
918
  ]
919
919
 
920
920
  [[package]]
@@ -930,9 +930,9 @@ dependencies = [
930
930
 
931
931
  [[package]]
932
932
  name = "jsonschema"
933
- version = "0.46.9"
933
+ version = "0.48.5"
934
934
  source = "registry+https://github.com/rust-lang/crates.io-index"
935
- checksum = "1d865ca7ca04445fcaa1d751fda3dc43b0113ba2fcddc65d5a0fcb474a7c3bba"
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.46.9"
962
+ version = "0.48.5"
961
963
  source = "registry+https://github.com/rust-lang/crates.io-index"
962
- checksum = "4b7fc96cd6677cc81b00607d43477327d719419937ef1c44b3556a40f517d54c"
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"
@@ -1014,9 +1030,9 @@ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1014
1030
 
1015
1031
  [[package]]
1016
1032
  name = "lsp-server"
1017
- version = "0.8.0"
1033
+ version = "0.10.0"
1018
1034
  source = "registry+https://github.com/rust-lang/crates.io-index"
1019
- checksum = "0ad8be6fe0ca81b8298bfbbe8a77e9fcd8895ad6c84cd7794d5ebadcbb09ae43"
1035
+ checksum = "3ee25a31f2e571e426eef2896179450cafc7e2f5be00d8a93b1c2d21c0ff7656"
1020
1036
  dependencies = [
1021
1037
  "crossbeam-channel",
1022
1038
  "log",
@@ -1040,9 +1056,9 @@ dependencies = [
1040
1056
 
1041
1057
  [[package]]
1042
1058
  name = "memchr"
1043
- version = "2.8.2"
1059
+ version = "2.8.3"
1044
1060
  source = "registry+https://github.com/rust-lang/crates.io-index"
1045
- checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
1061
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
1046
1062
 
1047
1063
  [[package]]
1048
1064
  name = "memoffset"
@@ -1091,9 +1107,9 @@ dependencies = [
1091
1107
 
1092
1108
  [[package]]
1093
1109
  name = "num-bigint"
1094
- version = "0.4.7"
1110
+ version = "0.4.8"
1095
1111
  source = "registry+https://github.com/rust-lang/crates.io-index"
1096
- checksum = "c863e9ab5e7bf9c99ba75e1050f1e4d624ae87ed3532d6238ffbdc7b585dbbe6"
1112
+ checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
1097
1113
  dependencies = [
1098
1114
  "num-integer",
1099
1115
  "num-traits",
@@ -1125,11 +1141,10 @@ dependencies = [
1125
1141
 
1126
1142
  [[package]]
1127
1143
  name = "num-iter"
1128
- version = "0.1.45"
1144
+ version = "0.1.46"
1129
1145
  source = "registry+https://github.com/rust-lang/crates.io-index"
1130
- checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1146
+ checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b"
1131
1147
  dependencies = [
1132
- "autocfg",
1133
1148
  "num-integer",
1134
1149
  "num-traits",
1135
1150
  ]
@@ -1190,7 +1205,7 @@ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
1190
1205
 
1191
1206
  [[package]]
1192
1207
  name = "panache"
1193
- version = "2.61.0"
1208
+ version = "3.0.1"
1194
1209
  dependencies = [
1195
1210
  "annotate-snippets",
1196
1211
  "assert_cmd",
@@ -1234,7 +1249,7 @@ dependencies = [
1234
1249
 
1235
1250
  [[package]]
1236
1251
  name = "panache-formatter"
1237
- version = "0.19.0"
1252
+ version = "0.20.1"
1238
1253
  dependencies = [
1239
1254
  "insta",
1240
1255
  "log",
@@ -1252,7 +1267,7 @@ dependencies = [
1252
1267
 
1253
1268
  [[package]]
1254
1269
  name = "panache-parser"
1255
- version = "0.21.0"
1270
+ version = "0.22.1"
1256
1271
  dependencies = [
1257
1272
  "entities",
1258
1273
  "insta",
@@ -1337,9 +1352,9 @@ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1337
1352
 
1338
1353
  [[package]]
1339
1354
  name = "portable-atomic"
1340
- version = "1.13.1"
1355
+ version = "1.14.0"
1341
1356
  source = "registry+https://github.com/rust-lang/crates.io-index"
1342
- checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1357
+ checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
1343
1358
 
1344
1359
  [[package]]
1345
1360
  name = "portable-atomic-util"
@@ -1402,9 +1417,9 @@ dependencies = [
1402
1417
 
1403
1418
  [[package]]
1404
1419
  name = "proc-macro2"
1405
- version = "1.0.106"
1420
+ version = "1.0.107"
1406
1421
  source = "registry+https://github.com/rust-lang/crates.io-index"
1407
- checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1422
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
1408
1423
  dependencies = [
1409
1424
  "unicode-ident",
1410
1425
  ]
@@ -1420,9 +1435,9 @@ dependencies = [
1420
1435
 
1421
1436
  [[package]]
1422
1437
  name = "quote"
1423
- version = "1.0.46"
1438
+ version = "1.0.47"
1424
1439
  source = "registry+https://github.com/rust-lang/crates.io-index"
1425
- checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
1440
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
1426
1441
  dependencies = [
1427
1442
  "proc-macro2",
1428
1443
  ]
@@ -1465,7 +1480,7 @@ version = "0.5.18"
1465
1480
  source = "registry+https://github.com/rust-lang/crates.io-index"
1466
1481
  checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1467
1482
  dependencies = [
1468
- "bitflags 2.13.0",
1483
+ "bitflags 2.13.1",
1469
1484
  ]
1470
1485
 
1471
1486
  [[package]]
@@ -1481,34 +1496,34 @@ dependencies = [
1481
1496
 
1482
1497
  [[package]]
1483
1498
  name = "ref-cast"
1484
- version = "1.0.25"
1499
+ version = "1.0.26"
1485
1500
  source = "registry+https://github.com/rust-lang/crates.io-index"
1486
- checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
1501
+ checksum = "216e8f773d7923bcba9ceb86a86c93cabb3903a11872fc3f138c49630e50b96d"
1487
1502
  dependencies = [
1488
1503
  "ref-cast-impl",
1489
1504
  ]
1490
1505
 
1491
1506
  [[package]]
1492
1507
  name = "ref-cast-impl"
1493
- version = "1.0.25"
1508
+ version = "1.0.26"
1494
1509
  source = "registry+https://github.com/rust-lang/crates.io-index"
1495
- checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
1510
+ checksum = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c"
1496
1511
  dependencies = [
1497
1512
  "proc-macro2",
1498
1513
  "quote",
1499
- "syn",
1514
+ "syn 3.0.3",
1500
1515
  ]
1501
1516
 
1502
1517
  [[package]]
1503
1518
  name = "referencing"
1504
- version = "0.46.9"
1519
+ version = "0.48.5"
1505
1520
  source = "registry+https://github.com/rust-lang/crates.io-index"
1506
- checksum = "77954d81b2e1c5e8ab889f9f597a92f852ab073255de9e37ee3fb443efd57051"
1521
+ checksum = "980e77f5cfffc592c0e7dfb6d20770a0b96a6ab94d403de7454ed9799505e4ba"
1507
1522
  dependencies = [
1508
1523
  "ahash",
1509
1524
  "fluent-uri 0.4.1",
1510
1525
  "getrandom 0.3.4",
1511
- "hashbrown 0.16.1",
1526
+ "hashbrown 0.17.1",
1512
1527
  "itoa",
1513
1528
  "micromap",
1514
1529
  "parking_lot",
@@ -1518,9 +1533,9 @@ dependencies = [
1518
1533
 
1519
1534
  [[package]]
1520
1535
  name = "regex"
1521
- version = "1.12.4"
1536
+ version = "1.13.1"
1522
1537
  source = "registry+https://github.com/rust-lang/crates.io-index"
1523
- checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
1538
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1524
1539
  dependencies = [
1525
1540
  "aho-corasick",
1526
1541
  "memchr",
@@ -1530,9 +1545,9 @@ dependencies = [
1530
1545
 
1531
1546
  [[package]]
1532
1547
  name = "regex-automata"
1533
- version = "0.4.14"
1548
+ version = "0.4.16"
1534
1549
  source = "registry+https://github.com/rust-lang/crates.io-index"
1535
- checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1550
+ checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
1536
1551
  dependencies = [
1537
1552
  "aho-corasick",
1538
1553
  "memchr",
@@ -1581,7 +1596,7 @@ version = "1.1.4"
1581
1596
  source = "registry+https://github.com/rust-lang/crates.io-index"
1582
1597
  checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1583
1598
  dependencies = [
1584
- "bitflags 2.13.0",
1599
+ "bitflags 2.13.1",
1585
1600
  "errno",
1586
1601
  "libc",
1587
1602
  "linux-raw-sys",
@@ -1590,15 +1605,15 @@ dependencies = [
1590
1605
 
1591
1606
  [[package]]
1592
1607
  name = "rustversion"
1593
- version = "1.0.22"
1608
+ version = "1.0.23"
1594
1609
  source = "registry+https://github.com/rust-lang/crates.io-index"
1595
- checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1610
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1596
1611
 
1597
1612
  [[package]]
1598
1613
  name = "salsa"
1599
- version = "0.27.2"
1614
+ version = "0.28.1"
1600
1615
  source = "registry+https://github.com/rust-lang/crates.io-index"
1601
- checksum = "ffbaab832e2ea754afda4a738f987dd1e8bd30c9e5d8c981ee6a3934386095e2"
1616
+ checksum = "a14fdadbf856222e731756d7fdbdf193a7abf8fdab009bb45f48671a42719a84"
1602
1617
  dependencies = [
1603
1618
  "boxcar",
1604
1619
  "crossbeam-queue",
@@ -1622,20 +1637,19 @@ dependencies = [
1622
1637
 
1623
1638
  [[package]]
1624
1639
  name = "salsa-macro-rules"
1625
- version = "0.27.2"
1640
+ version = "0.28.1"
1626
1641
  source = "registry+https://github.com/rust-lang/crates.io-index"
1627
- checksum = "de6872462ac73d39969a836273c24163e6a26a4e08f5114fcd80e25af30ea9c6"
1642
+ checksum = "50d7dc08ba69b9aedfa61dfc4d65548ae42c0d8b90bbd62cd121776920841bcf"
1628
1643
 
1629
1644
  [[package]]
1630
1645
  name = "salsa-macros"
1631
- version = "0.27.2"
1646
+ version = "0.28.1"
1632
1647
  source = "registry+https://github.com/rust-lang/crates.io-index"
1633
- checksum = "76bc78ffaf65b1a9175818592c5130aa10b1bb245a905722fd4db87cea8a8457"
1648
+ checksum = "ec5c48c5a4a53a6e2be9762f56566f1325d4394c011c00b3ea86ba2d13411e71"
1634
1649
  dependencies = [
1635
1650
  "proc-macro2",
1636
1651
  "quote",
1637
- "syn",
1638
- "synstructure",
1652
+ "syn 2.0.119",
1639
1653
  ]
1640
1654
 
1641
1655
  [[package]]
@@ -1669,7 +1683,7 @@ dependencies = [
1669
1683
  "proc-macro2",
1670
1684
  "quote",
1671
1685
  "serde_derive_internals",
1672
- "syn",
1686
+ "syn 2.0.119",
1673
1687
  ]
1674
1688
 
1675
1689
  [[package]]
@@ -1680,9 +1694,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1680
1694
 
1681
1695
  [[package]]
1682
1696
  name = "serde"
1683
- version = "1.0.228"
1697
+ version = "1.0.229"
1684
1698
  source = "registry+https://github.com/rust-lang/crates.io-index"
1685
- checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1699
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1686
1700
  dependencies = [
1687
1701
  "serde_core",
1688
1702
  "serde_derive",
@@ -1690,22 +1704,22 @@ dependencies = [
1690
1704
 
1691
1705
  [[package]]
1692
1706
  name = "serde_core"
1693
- version = "1.0.228"
1707
+ version = "1.0.229"
1694
1708
  source = "registry+https://github.com/rust-lang/crates.io-index"
1695
- checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1709
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1696
1710
  dependencies = [
1697
1711
  "serde_derive",
1698
1712
  ]
1699
1713
 
1700
1714
  [[package]]
1701
1715
  name = "serde_derive"
1702
- version = "1.0.228"
1716
+ version = "1.0.229"
1703
1717
  source = "registry+https://github.com/rust-lang/crates.io-index"
1704
- checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1718
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1705
1719
  dependencies = [
1706
1720
  "proc-macro2",
1707
1721
  "quote",
1708
- "syn",
1722
+ "syn 3.0.3",
1709
1723
  ]
1710
1724
 
1711
1725
  [[package]]
@@ -1716,14 +1730,14 @@ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
1716
1730
  dependencies = [
1717
1731
  "proc-macro2",
1718
1732
  "quote",
1719
- "syn",
1733
+ "syn 2.0.119",
1720
1734
  ]
1721
1735
 
1722
1736
  [[package]]
1723
1737
  name = "serde_json"
1724
- version = "1.0.150"
1738
+ version = "1.0.151"
1725
1739
  source = "registry+https://github.com/rust-lang/crates.io-index"
1726
- checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1740
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1727
1741
  dependencies = [
1728
1742
  "itoa",
1729
1743
  "memchr",
@@ -1734,13 +1748,13 @@ dependencies = [
1734
1748
 
1735
1749
  [[package]]
1736
1750
  name = "serde_repr"
1737
- version = "0.1.20"
1751
+ version = "0.1.21"
1738
1752
  source = "registry+https://github.com/rust-lang/crates.io-index"
1739
- checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
1753
+ checksum = "8d3b1629de253c70a0508c3899572da79ca359fdab27c7920ff00406df418906"
1740
1754
  dependencies = [
1741
1755
  "proc-macro2",
1742
1756
  "quote",
1743
- "syn",
1757
+ "syn 3.0.3",
1744
1758
  ]
1745
1759
 
1746
1760
  [[package]]
@@ -1754,9 +1768,9 @@ dependencies = [
1754
1768
 
1755
1769
  [[package]]
1756
1770
  name = "simd-adler32"
1757
- version = "0.3.9"
1771
+ version = "0.3.10"
1758
1772
  source = "registry+https://github.com/rust-lang/crates.io-index"
1759
- checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1773
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
1760
1774
 
1761
1775
  [[package]]
1762
1776
  name = "similar"
@@ -1814,11 +1828,43 @@ version = "0.11.1"
1814
1828
  source = "registry+https://github.com/rust-lang/crates.io-index"
1815
1829
  checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1816
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
+
1852
+ [[package]]
1853
+ name = "syn"
1854
+ version = "2.0.119"
1855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1856
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1857
+ dependencies = [
1858
+ "proc-macro2",
1859
+ "quote",
1860
+ "unicode-ident",
1861
+ ]
1862
+
1817
1863
  [[package]]
1818
1864
  name = "syn"
1819
- version = "2.0.118"
1865
+ version = "3.0.3"
1820
1866
  source = "registry+https://github.com/rust-lang/crates.io-index"
1821
- checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
1867
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
1822
1868
  dependencies = [
1823
1869
  "proc-macro2",
1824
1870
  "quote",
@@ -1833,7 +1879,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1833
1879
  dependencies = [
1834
1880
  "proc-macro2",
1835
1881
  "quote",
1836
- "syn",
1882
+ "syn 2.0.119",
1837
1883
  ]
1838
1884
 
1839
1885
  [[package]]
@@ -1869,22 +1915,22 @@ checksum = "b0f7e269b48f0a7dd0146680fa24b50cc67fc0373f086a5b2f99bd084639b482"
1869
1915
 
1870
1916
  [[package]]
1871
1917
  name = "thiserror"
1872
- version = "2.0.18"
1918
+ version = "2.0.19"
1873
1919
  source = "registry+https://github.com/rust-lang/crates.io-index"
1874
- checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1920
+ checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
1875
1921
  dependencies = [
1876
1922
  "thiserror-impl",
1877
1923
  ]
1878
1924
 
1879
1925
  [[package]]
1880
1926
  name = "thiserror-impl"
1881
- version = "2.0.18"
1927
+ version = "2.0.19"
1882
1928
  source = "registry+https://github.com/rust-lang/crates.io-index"
1883
- checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1929
+ checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
1884
1930
  dependencies = [
1885
1931
  "proc-macro2",
1886
1932
  "quote",
1887
- "syn",
1933
+ "syn 3.0.3",
1888
1934
  ]
1889
1935
 
1890
1936
  [[package]]
@@ -1905,9 +1951,9 @@ dependencies = [
1905
1951
 
1906
1952
  [[package]]
1907
1953
  name = "toml"
1908
- version = "1.1.2+spec-1.1.0"
1954
+ version = "1.1.3+spec-1.1.0"
1909
1955
  source = "registry+https://github.com/rust-lang/crates.io-index"
1910
- checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
1956
+ checksum = "53c96ecdfa941c8fc4fcaed14f99ada8ebed502eef533015095a07e3301d4c3c"
1911
1957
  dependencies = [
1912
1958
  "indexmap",
1913
1959
  "serde_core",
@@ -1915,7 +1961,7 @@ dependencies = [
1915
1961
  "toml_datetime",
1916
1962
  "toml_parser",
1917
1963
  "toml_writer",
1918
- "winnow 1.0.3",
1964
+ "winnow 1.0.4",
1919
1965
  ]
1920
1966
 
1921
1967
  [[package]]
@@ -1933,14 +1979,14 @@ version = "1.1.2+spec-1.1.0"
1933
1979
  source = "registry+https://github.com/rust-lang/crates.io-index"
1934
1980
  checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
1935
1981
  dependencies = [
1936
- "winnow 1.0.3",
1982
+ "winnow 1.0.4",
1937
1983
  ]
1938
1984
 
1939
1985
  [[package]]
1940
1986
  name = "toml_writer"
1941
- version = "1.1.1+spec-1.1.0"
1987
+ version = "1.1.2+spec-1.1.0"
1942
1988
  source = "registry+https://github.com/rust-lang/crates.io-index"
1943
- checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
1989
+ checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
1944
1990
 
1945
1991
  [[package]]
1946
1992
  name = "tracing"
@@ -2005,9 +2051,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2005
2051
 
2006
2052
  [[package]]
2007
2053
  name = "uuid"
2008
- version = "1.23.4"
2054
+ version = "1.24.0"
2009
2055
  source = "registry+https://github.com/rust-lang/crates.io-index"
2010
- checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
2056
+ checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
2011
2057
  dependencies = [
2012
2058
  "getrandom 0.4.3",
2013
2059
  "js-sys",
@@ -2102,7 +2148,7 @@ dependencies = [
2102
2148
  "bumpalo",
2103
2149
  "proc-macro2",
2104
2150
  "quote",
2105
- "syn",
2151
+ "syn 2.0.119",
2106
2152
  "wasm-bindgen-shared",
2107
2153
  ]
2108
2154
 
@@ -2117,9 +2163,9 @@ dependencies = [
2117
2163
 
2118
2164
  [[package]]
2119
2165
  name = "which"
2120
- version = "8.0.4"
2166
+ version = "8.0.5"
2121
2167
  source = "registry+https://github.com/rust-lang/crates.io-index"
2122
- checksum = "48d7cd18d4acb58fb3cdfe9ea54e6cd96a4e7d4cc45c56338b236e82dad47248"
2168
+ checksum = "8f3ef584124b911bcc3875c2f1472e80f24361ceb789bd1c62b3e9a3df9ff43c"
2123
2169
  dependencies = [
2124
2170
  "libc",
2125
2171
  ]
@@ -2135,9 +2181,9 @@ dependencies = [
2135
2181
 
2136
2182
  [[package]]
2137
2183
  name = "wincode"
2138
- version = "0.5.5"
2184
+ version = "0.6.0"
2139
2185
  source = "registry+https://github.com/rust-lang/crates.io-index"
2140
- checksum = "66d967db7705dc29120bb6e8ce5b5a2e27734ed5976d1c904e95bd238d1c3c5a"
2186
+ checksum = "b5d39d1a984eb7ae37afa348f058216d62a6d5f71640f4113a8114386c2a812a"
2141
2187
  dependencies = [
2142
2188
  "pastey",
2143
2189
  "proc-macro2",
@@ -2148,14 +2194,14 @@ dependencies = [
2148
2194
 
2149
2195
  [[package]]
2150
2196
  name = "wincode-derive"
2151
- version = "0.4.6"
2197
+ version = "0.5.0"
2152
2198
  source = "registry+https://github.com/rust-lang/crates.io-index"
2153
- checksum = "15ab90b719560d0fda79c74550ad1c948d17b118765942838055ebaf34d67071"
2199
+ checksum = "4cb427b174d0f50b407f003623db1d892986e780651ee9d4231f3c9fe9ffcbb7"
2154
2200
  dependencies = [
2155
2201
  "darling",
2156
2202
  "proc-macro2",
2157
2203
  "quote",
2158
- "syn",
2204
+ "syn 2.0.119",
2159
2205
  ]
2160
2206
 
2161
2207
  [[package]]
@@ -2184,9 +2230,9 @@ dependencies = [
2184
2230
 
2185
2231
  [[package]]
2186
2232
  name = "winnow"
2187
- version = "1.0.3"
2233
+ version = "1.0.4"
2188
2234
  source = "registry+https://github.com/rust-lang/crates.io-index"
2189
- checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
2235
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
2190
2236
 
2191
2237
  [[package]]
2192
2238
  name = "wit-bindgen"
@@ -2229,28 +2275,28 @@ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2229
2275
  dependencies = [
2230
2276
  "proc-macro2",
2231
2277
  "quote",
2232
- "syn",
2278
+ "syn 2.0.119",
2233
2279
  "synstructure",
2234
2280
  ]
2235
2281
 
2236
2282
  [[package]]
2237
2283
  name = "zerocopy"
2238
- version = "0.8.52"
2284
+ version = "0.8.55"
2239
2285
  source = "registry+https://github.com/rust-lang/crates.io-index"
2240
- checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
2286
+ checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
2241
2287
  dependencies = [
2242
2288
  "zerocopy-derive",
2243
2289
  ]
2244
2290
 
2245
2291
  [[package]]
2246
2292
  name = "zerocopy-derive"
2247
- version = "0.8.52"
2293
+ version = "0.8.55"
2248
2294
  source = "registry+https://github.com/rust-lang/crates.io-index"
2249
- checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
2295
+ checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
2250
2296
  dependencies = [
2251
2297
  "proc-macro2",
2252
2298
  "quote",
2253
- "syn",
2299
+ "syn 2.0.119",
2254
2300
  ]
2255
2301
 
2256
2302
  [[package]]
@@ -2270,7 +2316,7 @@ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2270
2316
  dependencies = [
2271
2317
  "proc-macro2",
2272
2318
  "quote",
2273
- "syn",
2319
+ "syn 2.0.119",
2274
2320
  "synstructure",
2275
2321
  ]
2276
2322
 
@@ -2304,11 +2350,11 @@ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2304
2350
  dependencies = [
2305
2351
  "proc-macro2",
2306
2352
  "quote",
2307
- "syn",
2353
+ "syn 2.0.119",
2308
2354
  ]
2309
2355
 
2310
2356
  [[package]]
2311
2357
  name = "zmij"
2312
- version = "1.0.21"
2358
+ version = "1.0.23"
2313
2359
  source = "registry+https://github.com/rust-lang/crates.io-index"
2314
- checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
2360
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"