panache-cli 2.61.0__tar.gz → 3.0.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 (294) hide show
  1. {panache_cli-2.61.0 → panache_cli-3.0.0}/Cargo.lock +156 -147
  2. {panache_cli-2.61.0 → panache_cli-3.0.0}/Cargo.toml +6 -6
  3. {panache_cli-2.61.0 → panache_cli-3.0.0}/PKG-INFO +1 -1
  4. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/CHANGELOG.md +22 -0
  5. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/Cargo.toml +2 -2
  6. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/config.rs +35 -4
  7. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/core.rs +56 -21
  8. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/inline.rs +6 -1
  9. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/inline_layout.rs +1 -1
  10. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/math/linebreak.rs +10 -4
  11. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/math.rs +19 -0
  12. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/lib.rs +1 -0
  13. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/CHANGELOG.md +25 -0
  14. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/Cargo.toml +1 -1
  15. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/options.rs +6 -70
  16. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/block_dispatcher.rs +93 -38
  17. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/html_blocks.rs +123 -29
  18. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/metadata.rs +207 -35
  19. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tables.rs +138 -7
  20. panache_cli-3.0.0/crates/panache-parser/src/parser/blocks/tests/headings.rs +475 -0
  21. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/lists.rs +72 -1
  22. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/metadata_guards.rs +38 -1
  23. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/core.rs +550 -12
  24. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/list_item_buffer.rs +59 -28
  25. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/bib/csl_json.rs +0 -105
  26. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/bib/csl_yaml.rs +0 -10
  27. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/bib/index.rs +0 -11
  28. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/bib/ris.rs +0 -53
  29. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/bib.rs +3 -3
  30. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/cli.rs +12 -26
  31. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/config/formatter_presets.rs +0 -1
  32. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/config/types.rs +53 -249
  33. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/config.rs +172 -149
  34. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/external_formatters_common.rs +105 -6
  35. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/external_formatters_sync.rs +3 -5
  36. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/formatter.rs +9 -1
  37. panache_cli-3.0.0/src/linter/rules/citation_nonbreaking_space.rs +257 -0
  38. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules.rs +1 -0
  39. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter.rs +1 -0
  40. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/dispatch.rs +101 -4
  41. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/documents.rs +22 -20
  42. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/global_state.rs +71 -5
  43. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/diagnostics.rs +36 -34
  44. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/testing.rs +40 -7
  45. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp.rs +47 -5
  46. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/main.rs +37 -97
  47. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/salsa.rs +19 -19
  48. panache_cli-2.61.0/crates/panache-parser/src/parser/blocks/tests/headings.rs +0 -216
  49. {panache_cli-2.61.0 → panache_cli-3.0.0}/LICENSE +0 -0
  50. {panache_cli-2.61.0 → panache_cli-3.0.0}/README.md +0 -0
  51. {panache_cli-2.61.0 → panache_cli-3.0.0}/assets/quarto-schema/schema.json +0 -0
  52. {panache_cli-2.61.0 → panache_cli-3.0.0}/build.rs +0 -0
  53. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/README.md +0 -0
  54. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/directives.rs +0 -0
  55. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/blockquotes.rs +0 -0
  56. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/code_blocks.rs +0 -0
  57. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/fenced_divs.rs +0 -0
  58. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/hashpipe.rs +0 -0
  59. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/headings.rs +0 -0
  60. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/indent_utils.rs +0 -0
  61. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/lists.rs +0 -0
  62. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/math/STYLE.md +0 -0
  63. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/math/operators.rs +0 -0
  64. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/math/render.rs +0 -0
  65. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/metadata.rs +0 -0
  66. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/paragraphs.rs +0 -0
  67. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/sentence_wrap.rs +0 -0
  68. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/shortcodes.rs +0 -0
  69. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/smart.rs +0 -0
  70. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/tables.rs +0 -0
  71. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/utils.rs +0 -0
  72. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml/STYLE.md +0 -0
  73. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml/block_map.rs +0 -0
  74. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml/block_sequence.rs +0 -0
  75. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml/document.rs +0 -0
  76. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml/flow.rs +0 -0
  77. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml/options.rs +0 -0
  78. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml/scalar.rs +0 -0
  79. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter/yaml.rs +0 -0
  80. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/formatter.rs +0 -0
  81. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/parser.rs +0 -0
  82. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/syntax.rs +0 -0
  83. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/utils.rs +0 -0
  84. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-formatter/src/yaml_engine.rs +0 -0
  85. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/README.md +0 -0
  86. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/build.rs +0 -0
  87. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/grid_layout.rs +0 -0
  88. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/lib.rs +0 -0
  89. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/pandoc_ast.rs +0 -0
  90. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/admonitions.rs +0 -0
  91. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/blockquotes.rs +0 -0
  92. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/code_blocks.rs +0 -0
  93. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/container_prefix.rs +0 -0
  94. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/definition_lists.rs +0 -0
  95. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/fenced_divs.rs +0 -0
  96. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/figures.rs +0 -0
  97. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/headings.rs +0 -0
  98. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/horizontal_rules.rs +0 -0
  99. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/indented_code.rs +0 -0
  100. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/latex_envs.rs +0 -0
  101. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/line_blocks.rs +0 -0
  102. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/lists.rs +0 -0
  103. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/myst_directives.rs +0 -0
  104. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/myst_targets.rs +0 -0
  105. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/paragraphs.rs +0 -0
  106. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/raw_blocks.rs +0 -0
  107. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/reference_links.rs +0 -0
  108. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/blanklines.rs +0 -0
  109. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/blockquotes.rs +0 -0
  110. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/code_blocks.rs +0 -0
  111. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/definition_lists.rs +0 -0
  112. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/helpers.rs +0 -0
  113. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks/tests/losslessness.rs +0 -0
  114. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/blocks.rs +0 -0
  115. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/diagnostics.rs +0 -0
  116. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/bookdown.rs +0 -0
  117. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/bracketed_spans.rs +0 -0
  118. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/citations.rs +0 -0
  119. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/code_spans.rs +0 -0
  120. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/core.rs +0 -0
  121. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/emoji.rs +0 -0
  122. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/escapes.rs +0 -0
  123. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/inline_executable.rs +0 -0
  124. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/inline_footnotes.rs +0 -0
  125. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/inline_html.rs +0 -0
  126. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/inline_ir.rs +0 -0
  127. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/latex.rs +0 -0
  128. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/links.rs +0 -0
  129. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/mark.rs +0 -0
  130. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/math.rs +0 -0
  131. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/myst_roles.rs +0 -0
  132. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/myst_substitutions.rs +0 -0
  133. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/native_spans.rs +0 -0
  134. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/raw_inline.rs +0 -0
  135. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/refdef_map.rs +0 -0
  136. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/shortcodes.rs +0 -0
  137. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/sink.rs +0 -0
  138. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/strikeout.rs +0 -0
  139. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/subscript.rs +0 -0
  140. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/superscript.rs +0 -0
  141. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/svelte.rs +0 -0
  142. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/tests.rs +0 -0
  143. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/uri-schemes.csv +0 -0
  144. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines/wikilinks.rs +0 -0
  145. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/inlines.rs +0 -0
  146. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/math.rs +0 -0
  147. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/attributes.rs +0 -0
  148. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/chunk_options.rs +0 -0
  149. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/container_stack.rs +0 -0
  150. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/continuation.rs +0 -0
  151. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/helpers.rs +0 -0
  152. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/inline_emission.rs +0 -0
  153. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/marker_utils.rs +0 -0
  154. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/text_buffer.rs +0 -0
  155. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/tree_copy.rs +0 -0
  156. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils/yaml_regions.rs +0 -0
  157. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/utils.rs +0 -0
  158. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml/cooking.rs +0 -0
  159. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml/events.rs +0 -0
  160. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml/model.rs +0 -0
  161. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml/parser.rs +0 -0
  162. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml/profile.rs +0 -0
  163. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml/scanner.rs +0 -0
  164. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml/validator.rs +0 -0
  165. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser/yaml.rs +0 -0
  166. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/parser.rs +0 -0
  167. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/range_utils.rs +0 -0
  168. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/alerts.rs +0 -0
  169. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/ast.rs +0 -0
  170. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/attributes.rs +0 -0
  171. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/block_quotes.rs +0 -0
  172. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/blocks.rs +0 -0
  173. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/chunk_options.rs +0 -0
  174. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/citations.rs +0 -0
  175. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/code_blocks.rs +0 -0
  176. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/crossrefs.rs +0 -0
  177. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/definitions.rs +0 -0
  178. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/fenced_divs.rs +0 -0
  179. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/headings.rs +0 -0
  180. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/inlines.rs +0 -0
  181. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/kind.rs +0 -0
  182. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/links.rs +0 -0
  183. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/lists.rs +0 -0
  184. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/math.rs +0 -0
  185. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/myst.rs +0 -0
  186. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/raw_tex.rs +0 -0
  187. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/references.rs +0 -0
  188. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/shortcodes.rs +0 -0
  189. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/tables.rs +0 -0
  190. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/yaml.rs +0 -0
  191. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax/yaml_ast.rs +0 -0
  192. {panache_cli-2.61.0 → panache_cli-3.0.0}/crates/panache-parser/src/syntax.rs +0 -0
  193. {panache_cli-2.61.0 → panache_cli-3.0.0}/pyproject.toml +0 -0
  194. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/bib/bibtex.rs +0 -0
  195. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/bib/preview.rs +0 -0
  196. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/bin/distill_quarto_schema.rs +0 -0
  197. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/cache.rs +0 -0
  198. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/config/types/schema_helpers.rs +0 -0
  199. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/diagnostic_renderer.rs +0 -0
  200. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/directives.rs +0 -0
  201. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/external_tools_common.rs +0 -0
  202. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/includes.rs +0 -0
  203. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lib.rs +0 -0
  204. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/code_block_collector.rs +0 -0
  205. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/diagnostics.rs +0 -0
  206. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/external_linters/clippy.rs +0 -0
  207. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/external_linters/eslint.rs +0 -0
  208. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/external_linters/jarl.rs +0 -0
  209. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/external_linters/ruff.rs +0 -0
  210. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/external_linters/shellcheck.rs +0 -0
  211. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/external_linters/staticcheck.rs +0 -0
  212. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/external_linters.rs +0 -0
  213. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/external_linters_sync.rs +0 -0
  214. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/fuzzy.rs +0 -0
  215. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/index.rs +0 -0
  216. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/metadata_diagnostics.rs +0 -0
  217. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/offsets.rs +0 -0
  218. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/quarto_schema/distill.rs +0 -0
  219. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/quarto_schema/interp.rs +0 -0
  220. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/quarto_schema/model.rs +0 -0
  221. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/quarto_schema/report.rs +0 -0
  222. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/quarto_schema/value.rs +0 -0
  223. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/quarto_schema.rs +0 -0
  224. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/adjacent_footnote_refs.rs +0 -0
  225. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/chunk_label_spaces.rs +0 -0
  226. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/citation_keys.rs +0 -0
  227. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/consumer_divergence.rs +0 -0
  228. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/crossref_as_link_target.rs +0 -0
  229. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/duplicate_references.rs +0 -0
  230. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/emoji_aliases.rs +0 -0
  231. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/empty_list_item.rs +0 -0
  232. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/empty_values.rs +0 -0
  233. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/figure_crossref_captions.rs +0 -0
  234. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/footnote_ref_in_footnote_def.rs +0 -0
  235. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/heading_eaten_attrs.rs +0 -0
  236. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/heading_hierarchy.rs +0 -0
  237. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/heading_strip_comments_residue.rs +0 -0
  238. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/html_entities.rs +0 -0
  239. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/link_text_is_url.rs +0 -0
  240. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/math_content.rs +0 -0
  241. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/missing_chunk_labels.rs +0 -0
  242. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/quarto_schema.rs +0 -0
  243. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/stray_fenced_div_markers.rs +0 -0
  244. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/undefined_anchor.rs +0 -0
  245. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/undefined_references.rs +0 -0
  246. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/rules/unused_definitions.rs +0 -0
  247. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/runner.rs +0 -0
  248. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/linter/yaml_resolve.rs +0 -0
  249. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/config.rs +0 -0
  250. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/context.rs +0 -0
  251. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/conversions.rs +0 -0
  252. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/code_actions.rs +0 -0
  253. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/completion.rs +0 -0
  254. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/configuration.rs +0 -0
  255. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/document_highlight.rs +0 -0
  256. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/document_links.rs +0 -0
  257. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/document_symbols.rs +0 -0
  258. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/file_operations.rs +0 -0
  259. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/file_rename.rs +0 -0
  260. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/file_watcher.rs +0 -0
  261. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/folding_ranges.rs +0 -0
  262. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/footnote_conversion.rs +0 -0
  263. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/formatting.rs +0 -0
  264. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/goto_definition.rs +0 -0
  265. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/heading_link_conversion.rs +0 -0
  266. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/hover.rs +0 -0
  267. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/link_conversion.rs +0 -0
  268. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/linked_editing_range.rs +0 -0
  269. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/list_conversion.rs +0 -0
  270. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/prepare_rename.rs +0 -0
  271. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/references.rs +0 -0
  272. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/rename.rs +0 -0
  273. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/semantic_tokens.rs +0 -0
  274. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/shortcode_args.rs +0 -0
  275. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/workspace_folders.rs +0 -0
  276. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers/workspace_symbols.rs +0 -0
  277. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/handlers.rs +0 -0
  278. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/helpers.rs +0 -0
  279. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/navigation.rs +0 -0
  280. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/symbols.rs +0 -0
  281. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/task_pool.rs +0 -0
  282. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/lsp/uri_ext.rs +0 -0
  283. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/metadata/bibliography.rs +0 -0
  284. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/metadata/citations.rs +0 -0
  285. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/metadata/project.rs +0 -0
  286. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/metadata/references.rs +0 -0
  287. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/metadata/yaml.rs +0 -0
  288. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/metadata.rs +0 -0
  289. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/parser.rs +0 -0
  290. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/range_utils.rs +0 -0
  291. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/syntax.rs +0 -0
  292. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/utils.rs +0 -0
  293. {panache_cli-2.61.0 → panache_cli-3.0.0}/src/yaml_engine.rs +0 -0
  294. {panache_cli-2.61.0 → panache_cli-3.0.0}/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.2"
193
193
  source = "registry+https://github.com/rust-lang/crates.io-index"
194
- checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
194
+ checksum = "dd059f9da4f5c36b3787f65d38ccaab1cc315f07b01f89abc8359ee6a8205011"
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",
@@ -236,7 +236,7 @@ dependencies = [
236
236
  "heck",
237
237
  "proc-macro2",
238
238
  "quote",
239
- "syn",
239
+ "syn 2.0.119",
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]]
@@ -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.30"
829
818
  source = "registry+https://github.com/rust-lang/crates.io-index"
830
- checksum = "fe112b004901c62c2faa11f4f75e9864e0cc5af8da71c9115d184a3aa888749f"
819
+ checksum = "7b009b6744c1445efd7244084e25e498636412effb6760b55067553baa925cc7"
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.47.0"
934
934
  source = "registry+https://github.com/rust-lang/crates.io-index"
935
- checksum = "1d865ca7ca04445fcaa1d751fda3dc43b0113ba2fcddc65d5a0fcb474a7c3bba"
935
+ checksum = "281c43ff06dcb331e9356d30e38853d559ce3d0a3f693e0b0e102667dec14fb1"
936
936
  dependencies = [
937
937
  "ahash",
938
938
  "bytecount",
@@ -957,9 +957,9 @@ dependencies = [
957
957
 
958
958
  [[package]]
959
959
  name = "jsonschema-regex"
960
- version = "0.46.9"
960
+ version = "0.47.0"
961
961
  source = "registry+https://github.com/rust-lang/crates.io-index"
962
- checksum = "4b7fc96cd6677cc81b00607d43477327d719419937ef1c44b3556a40f517d54c"
962
+ checksum = "ee0b351864e7ffbc5db9273daf7fa1b4d5177b0946713d667ca571b83c0b4045"
963
963
  dependencies = [
964
964
  "regex-syntax",
965
965
  ]
@@ -1014,9 +1014,9 @@ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1014
1014
 
1015
1015
  [[package]]
1016
1016
  name = "lsp-server"
1017
- version = "0.8.0"
1017
+ version = "0.10.0"
1018
1018
  source = "registry+https://github.com/rust-lang/crates.io-index"
1019
- checksum = "0ad8be6fe0ca81b8298bfbbe8a77e9fcd8895ad6c84cd7794d5ebadcbb09ae43"
1019
+ checksum = "3ee25a31f2e571e426eef2896179450cafc7e2f5be00d8a93b1c2d21c0ff7656"
1020
1020
  dependencies = [
1021
1021
  "crossbeam-channel",
1022
1022
  "log",
@@ -1040,9 +1040,9 @@ dependencies = [
1040
1040
 
1041
1041
  [[package]]
1042
1042
  name = "memchr"
1043
- version = "2.8.2"
1043
+ version = "2.8.3"
1044
1044
  source = "registry+https://github.com/rust-lang/crates.io-index"
1045
- checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
1045
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
1046
1046
 
1047
1047
  [[package]]
1048
1048
  name = "memoffset"
@@ -1091,9 +1091,9 @@ dependencies = [
1091
1091
 
1092
1092
  [[package]]
1093
1093
  name = "num-bigint"
1094
- version = "0.4.7"
1094
+ version = "0.4.8"
1095
1095
  source = "registry+https://github.com/rust-lang/crates.io-index"
1096
- checksum = "c863e9ab5e7bf9c99ba75e1050f1e4d624ae87ed3532d6238ffbdc7b585dbbe6"
1096
+ checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
1097
1097
  dependencies = [
1098
1098
  "num-integer",
1099
1099
  "num-traits",
@@ -1125,11 +1125,10 @@ dependencies = [
1125
1125
 
1126
1126
  [[package]]
1127
1127
  name = "num-iter"
1128
- version = "0.1.45"
1128
+ version = "0.1.46"
1129
1129
  source = "registry+https://github.com/rust-lang/crates.io-index"
1130
- checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1130
+ checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b"
1131
1131
  dependencies = [
1132
- "autocfg",
1133
1132
  "num-integer",
1134
1133
  "num-traits",
1135
1134
  ]
@@ -1190,7 +1189,7 @@ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
1190
1189
 
1191
1190
  [[package]]
1192
1191
  name = "panache"
1193
- version = "2.61.0"
1192
+ version = "3.0.0"
1194
1193
  dependencies = [
1195
1194
  "annotate-snippets",
1196
1195
  "assert_cmd",
@@ -1234,7 +1233,7 @@ dependencies = [
1234
1233
 
1235
1234
  [[package]]
1236
1235
  name = "panache-formatter"
1237
- version = "0.19.0"
1236
+ version = "0.20.0"
1238
1237
  dependencies = [
1239
1238
  "insta",
1240
1239
  "log",
@@ -1252,7 +1251,7 @@ dependencies = [
1252
1251
 
1253
1252
  [[package]]
1254
1253
  name = "panache-parser"
1255
- version = "0.21.0"
1254
+ version = "0.22.0"
1256
1255
  dependencies = [
1257
1256
  "entities",
1258
1257
  "insta",
@@ -1337,9 +1336,9 @@ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1337
1336
 
1338
1337
  [[package]]
1339
1338
  name = "portable-atomic"
1340
- version = "1.13.1"
1339
+ version = "1.14.0"
1341
1340
  source = "registry+https://github.com/rust-lang/crates.io-index"
1342
- checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1341
+ checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
1343
1342
 
1344
1343
  [[package]]
1345
1344
  name = "portable-atomic-util"
@@ -1402,9 +1401,9 @@ dependencies = [
1402
1401
 
1403
1402
  [[package]]
1404
1403
  name = "proc-macro2"
1405
- version = "1.0.106"
1404
+ version = "1.0.107"
1406
1405
  source = "registry+https://github.com/rust-lang/crates.io-index"
1407
- checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1406
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
1408
1407
  dependencies = [
1409
1408
  "unicode-ident",
1410
1409
  ]
@@ -1420,9 +1419,9 @@ dependencies = [
1420
1419
 
1421
1420
  [[package]]
1422
1421
  name = "quote"
1423
- version = "1.0.46"
1422
+ version = "1.0.47"
1424
1423
  source = "registry+https://github.com/rust-lang/crates.io-index"
1425
- checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
1424
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
1426
1425
  dependencies = [
1427
1426
  "proc-macro2",
1428
1427
  ]
@@ -1465,7 +1464,7 @@ version = "0.5.18"
1465
1464
  source = "registry+https://github.com/rust-lang/crates.io-index"
1466
1465
  checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1467
1466
  dependencies = [
1468
- "bitflags 2.13.0",
1467
+ "bitflags 2.13.1",
1469
1468
  ]
1470
1469
 
1471
1470
  [[package]]
@@ -1481,34 +1480,34 @@ dependencies = [
1481
1480
 
1482
1481
  [[package]]
1483
1482
  name = "ref-cast"
1484
- version = "1.0.25"
1483
+ version = "1.0.26"
1485
1484
  source = "registry+https://github.com/rust-lang/crates.io-index"
1486
- checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
1485
+ checksum = "216e8f773d7923bcba9ceb86a86c93cabb3903a11872fc3f138c49630e50b96d"
1487
1486
  dependencies = [
1488
1487
  "ref-cast-impl",
1489
1488
  ]
1490
1489
 
1491
1490
  [[package]]
1492
1491
  name = "ref-cast-impl"
1493
- version = "1.0.25"
1492
+ version = "1.0.26"
1494
1493
  source = "registry+https://github.com/rust-lang/crates.io-index"
1495
- checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
1494
+ checksum = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c"
1496
1495
  dependencies = [
1497
1496
  "proc-macro2",
1498
1497
  "quote",
1499
- "syn",
1498
+ "syn 3.0.2",
1500
1499
  ]
1501
1500
 
1502
1501
  [[package]]
1503
1502
  name = "referencing"
1504
- version = "0.46.9"
1503
+ version = "0.47.0"
1505
1504
  source = "registry+https://github.com/rust-lang/crates.io-index"
1506
- checksum = "77954d81b2e1c5e8ab889f9f597a92f852ab073255de9e37ee3fb443efd57051"
1505
+ checksum = "348e860aeb0b7bd035778fd11dd9cd5290d32e4aed3b8f2274a00287a9fd362b"
1507
1506
  dependencies = [
1508
1507
  "ahash",
1509
1508
  "fluent-uri 0.4.1",
1510
1509
  "getrandom 0.3.4",
1511
- "hashbrown 0.16.1",
1510
+ "hashbrown 0.17.1",
1512
1511
  "itoa",
1513
1512
  "micromap",
1514
1513
  "parking_lot",
@@ -1518,9 +1517,9 @@ dependencies = [
1518
1517
 
1519
1518
  [[package]]
1520
1519
  name = "regex"
1521
- version = "1.12.4"
1520
+ version = "1.13.1"
1522
1521
  source = "registry+https://github.com/rust-lang/crates.io-index"
1523
- checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
1522
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1524
1523
  dependencies = [
1525
1524
  "aho-corasick",
1526
1525
  "memchr",
@@ -1530,9 +1529,9 @@ dependencies = [
1530
1529
 
1531
1530
  [[package]]
1532
1531
  name = "regex-automata"
1533
- version = "0.4.14"
1532
+ version = "0.4.16"
1534
1533
  source = "registry+https://github.com/rust-lang/crates.io-index"
1535
- checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1534
+ checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
1536
1535
  dependencies = [
1537
1536
  "aho-corasick",
1538
1537
  "memchr",
@@ -1581,7 +1580,7 @@ version = "1.1.4"
1581
1580
  source = "registry+https://github.com/rust-lang/crates.io-index"
1582
1581
  checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1583
1582
  dependencies = [
1584
- "bitflags 2.13.0",
1583
+ "bitflags 2.13.1",
1585
1584
  "errno",
1586
1585
  "libc",
1587
1586
  "linux-raw-sys",
@@ -1590,15 +1589,15 @@ dependencies = [
1590
1589
 
1591
1590
  [[package]]
1592
1591
  name = "rustversion"
1593
- version = "1.0.22"
1592
+ version = "1.0.23"
1594
1593
  source = "registry+https://github.com/rust-lang/crates.io-index"
1595
- checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1594
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1596
1595
 
1597
1596
  [[package]]
1598
1597
  name = "salsa"
1599
- version = "0.27.2"
1598
+ version = "0.28.0"
1600
1599
  source = "registry+https://github.com/rust-lang/crates.io-index"
1601
- checksum = "ffbaab832e2ea754afda4a738f987dd1e8bd30c9e5d8c981ee6a3934386095e2"
1600
+ checksum = "63ad5919b18c2deaf18921fffd5c84d6e41416d1ef80b6b541d629aa30ce8556"
1602
1601
  dependencies = [
1603
1602
  "boxcar",
1604
1603
  "crossbeam-queue",
@@ -1622,20 +1621,19 @@ dependencies = [
1622
1621
 
1623
1622
  [[package]]
1624
1623
  name = "salsa-macro-rules"
1625
- version = "0.27.2"
1624
+ version = "0.28.0"
1626
1625
  source = "registry+https://github.com/rust-lang/crates.io-index"
1627
- checksum = "de6872462ac73d39969a836273c24163e6a26a4e08f5114fcd80e25af30ea9c6"
1626
+ checksum = "d50068b1f8b1ac7567a4a70eb6cc15daa9dc997b73a6b5aa3248dd960755cddb"
1628
1627
 
1629
1628
  [[package]]
1630
1629
  name = "salsa-macros"
1631
- version = "0.27.2"
1630
+ version = "0.28.0"
1632
1631
  source = "registry+https://github.com/rust-lang/crates.io-index"
1633
- checksum = "76bc78ffaf65b1a9175818592c5130aa10b1bb245a905722fd4db87cea8a8457"
1632
+ checksum = "8b26cb1c61fc424f7ff36e0606491429f58d1738bb0917cd999d680baae0c52c"
1634
1633
  dependencies = [
1635
1634
  "proc-macro2",
1636
1635
  "quote",
1637
- "syn",
1638
- "synstructure",
1636
+ "syn 2.0.119",
1639
1637
  ]
1640
1638
 
1641
1639
  [[package]]
@@ -1669,7 +1667,7 @@ dependencies = [
1669
1667
  "proc-macro2",
1670
1668
  "quote",
1671
1669
  "serde_derive_internals",
1672
- "syn",
1670
+ "syn 2.0.119",
1673
1671
  ]
1674
1672
 
1675
1673
  [[package]]
@@ -1680,9 +1678,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1680
1678
 
1681
1679
  [[package]]
1682
1680
  name = "serde"
1683
- version = "1.0.228"
1681
+ version = "1.0.229"
1684
1682
  source = "registry+https://github.com/rust-lang/crates.io-index"
1685
- checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1683
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1686
1684
  dependencies = [
1687
1685
  "serde_core",
1688
1686
  "serde_derive",
@@ -1690,22 +1688,22 @@ dependencies = [
1690
1688
 
1691
1689
  [[package]]
1692
1690
  name = "serde_core"
1693
- version = "1.0.228"
1691
+ version = "1.0.229"
1694
1692
  source = "registry+https://github.com/rust-lang/crates.io-index"
1695
- checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1693
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1696
1694
  dependencies = [
1697
1695
  "serde_derive",
1698
1696
  ]
1699
1697
 
1700
1698
  [[package]]
1701
1699
  name = "serde_derive"
1702
- version = "1.0.228"
1700
+ version = "1.0.229"
1703
1701
  source = "registry+https://github.com/rust-lang/crates.io-index"
1704
- checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1702
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1705
1703
  dependencies = [
1706
1704
  "proc-macro2",
1707
1705
  "quote",
1708
- "syn",
1706
+ "syn 3.0.2",
1709
1707
  ]
1710
1708
 
1711
1709
  [[package]]
@@ -1716,14 +1714,14 @@ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
1716
1714
  dependencies = [
1717
1715
  "proc-macro2",
1718
1716
  "quote",
1719
- "syn",
1717
+ "syn 2.0.119",
1720
1718
  ]
1721
1719
 
1722
1720
  [[package]]
1723
1721
  name = "serde_json"
1724
- version = "1.0.150"
1722
+ version = "1.0.151"
1725
1723
  source = "registry+https://github.com/rust-lang/crates.io-index"
1726
- checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1724
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1727
1725
  dependencies = [
1728
1726
  "itoa",
1729
1727
  "memchr",
@@ -1734,13 +1732,13 @@ dependencies = [
1734
1732
 
1735
1733
  [[package]]
1736
1734
  name = "serde_repr"
1737
- version = "0.1.20"
1735
+ version = "0.1.21"
1738
1736
  source = "registry+https://github.com/rust-lang/crates.io-index"
1739
- checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
1737
+ checksum = "8d3b1629de253c70a0508c3899572da79ca359fdab27c7920ff00406df418906"
1740
1738
  dependencies = [
1741
1739
  "proc-macro2",
1742
1740
  "quote",
1743
- "syn",
1741
+ "syn 3.0.2",
1744
1742
  ]
1745
1743
 
1746
1744
  [[package]]
@@ -1754,9 +1752,9 @@ dependencies = [
1754
1752
 
1755
1753
  [[package]]
1756
1754
  name = "simd-adler32"
1757
- version = "0.3.9"
1755
+ version = "0.3.10"
1758
1756
  source = "registry+https://github.com/rust-lang/crates.io-index"
1759
- checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1757
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
1760
1758
 
1761
1759
  [[package]]
1762
1760
  name = "similar"
@@ -1816,9 +1814,20 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1816
1814
 
1817
1815
  [[package]]
1818
1816
  name = "syn"
1819
- version = "2.0.118"
1817
+ version = "2.0.119"
1818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1819
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1820
+ dependencies = [
1821
+ "proc-macro2",
1822
+ "quote",
1823
+ "unicode-ident",
1824
+ ]
1825
+
1826
+ [[package]]
1827
+ name = "syn"
1828
+ version = "3.0.2"
1820
1829
  source = "registry+https://github.com/rust-lang/crates.io-index"
1821
- checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
1830
+ checksum = "a207d6d6a2b7fc470b80443726053f18a2481b7e1eee970597051596567987a3"
1822
1831
  dependencies = [
1823
1832
  "proc-macro2",
1824
1833
  "quote",
@@ -1833,7 +1842,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1833
1842
  dependencies = [
1834
1843
  "proc-macro2",
1835
1844
  "quote",
1836
- "syn",
1845
+ "syn 2.0.119",
1837
1846
  ]
1838
1847
 
1839
1848
  [[package]]
@@ -1869,22 +1878,22 @@ checksum = "b0f7e269b48f0a7dd0146680fa24b50cc67fc0373f086a5b2f99bd084639b482"
1869
1878
 
1870
1879
  [[package]]
1871
1880
  name = "thiserror"
1872
- version = "2.0.18"
1881
+ version = "2.0.19"
1873
1882
  source = "registry+https://github.com/rust-lang/crates.io-index"
1874
- checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1883
+ checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
1875
1884
  dependencies = [
1876
1885
  "thiserror-impl",
1877
1886
  ]
1878
1887
 
1879
1888
  [[package]]
1880
1889
  name = "thiserror-impl"
1881
- version = "2.0.18"
1890
+ version = "2.0.19"
1882
1891
  source = "registry+https://github.com/rust-lang/crates.io-index"
1883
- checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1892
+ checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
1884
1893
  dependencies = [
1885
1894
  "proc-macro2",
1886
1895
  "quote",
1887
- "syn",
1896
+ "syn 3.0.2",
1888
1897
  ]
1889
1898
 
1890
1899
  [[package]]
@@ -1905,9 +1914,9 @@ dependencies = [
1905
1914
 
1906
1915
  [[package]]
1907
1916
  name = "toml"
1908
- version = "1.1.2+spec-1.1.0"
1917
+ version = "1.1.3+spec-1.1.0"
1909
1918
  source = "registry+https://github.com/rust-lang/crates.io-index"
1910
- checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
1919
+ checksum = "53c96ecdfa941c8fc4fcaed14f99ada8ebed502eef533015095a07e3301d4c3c"
1911
1920
  dependencies = [
1912
1921
  "indexmap",
1913
1922
  "serde_core",
@@ -1915,7 +1924,7 @@ dependencies = [
1915
1924
  "toml_datetime",
1916
1925
  "toml_parser",
1917
1926
  "toml_writer",
1918
- "winnow 1.0.3",
1927
+ "winnow 1.0.4",
1919
1928
  ]
1920
1929
 
1921
1930
  [[package]]
@@ -1933,14 +1942,14 @@ version = "1.1.2+spec-1.1.0"
1933
1942
  source = "registry+https://github.com/rust-lang/crates.io-index"
1934
1943
  checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
1935
1944
  dependencies = [
1936
- "winnow 1.0.3",
1945
+ "winnow 1.0.4",
1937
1946
  ]
1938
1947
 
1939
1948
  [[package]]
1940
1949
  name = "toml_writer"
1941
- version = "1.1.1+spec-1.1.0"
1950
+ version = "1.1.2+spec-1.1.0"
1942
1951
  source = "registry+https://github.com/rust-lang/crates.io-index"
1943
- checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
1952
+ checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
1944
1953
 
1945
1954
  [[package]]
1946
1955
  name = "tracing"
@@ -2005,9 +2014,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2005
2014
 
2006
2015
  [[package]]
2007
2016
  name = "uuid"
2008
- version = "1.23.4"
2017
+ version = "1.24.0"
2009
2018
  source = "registry+https://github.com/rust-lang/crates.io-index"
2010
- checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
2019
+ checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
2011
2020
  dependencies = [
2012
2021
  "getrandom 0.4.3",
2013
2022
  "js-sys",
@@ -2102,7 +2111,7 @@ dependencies = [
2102
2111
  "bumpalo",
2103
2112
  "proc-macro2",
2104
2113
  "quote",
2105
- "syn",
2114
+ "syn 2.0.119",
2106
2115
  "wasm-bindgen-shared",
2107
2116
  ]
2108
2117
 
@@ -2117,9 +2126,9 @@ dependencies = [
2117
2126
 
2118
2127
  [[package]]
2119
2128
  name = "which"
2120
- version = "8.0.4"
2129
+ version = "8.0.5"
2121
2130
  source = "registry+https://github.com/rust-lang/crates.io-index"
2122
- checksum = "48d7cd18d4acb58fb3cdfe9ea54e6cd96a4e7d4cc45c56338b236e82dad47248"
2131
+ checksum = "8f3ef584124b911bcc3875c2f1472e80f24361ceb789bd1c62b3e9a3df9ff43c"
2123
2132
  dependencies = [
2124
2133
  "libc",
2125
2134
  ]
@@ -2155,7 +2164,7 @@ dependencies = [
2155
2164
  "darling",
2156
2165
  "proc-macro2",
2157
2166
  "quote",
2158
- "syn",
2167
+ "syn 2.0.119",
2159
2168
  ]
2160
2169
 
2161
2170
  [[package]]
@@ -2184,9 +2193,9 @@ dependencies = [
2184
2193
 
2185
2194
  [[package]]
2186
2195
  name = "winnow"
2187
- version = "1.0.3"
2196
+ version = "1.0.4"
2188
2197
  source = "registry+https://github.com/rust-lang/crates.io-index"
2189
- checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
2198
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
2190
2199
 
2191
2200
  [[package]]
2192
2201
  name = "wit-bindgen"
@@ -2229,28 +2238,28 @@ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2229
2238
  dependencies = [
2230
2239
  "proc-macro2",
2231
2240
  "quote",
2232
- "syn",
2241
+ "syn 2.0.119",
2233
2242
  "synstructure",
2234
2243
  ]
2235
2244
 
2236
2245
  [[package]]
2237
2246
  name = "zerocopy"
2238
- version = "0.8.52"
2247
+ version = "0.8.54"
2239
2248
  source = "registry+https://github.com/rust-lang/crates.io-index"
2240
- checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
2249
+ checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
2241
2250
  dependencies = [
2242
2251
  "zerocopy-derive",
2243
2252
  ]
2244
2253
 
2245
2254
  [[package]]
2246
2255
  name = "zerocopy-derive"
2247
- version = "0.8.52"
2256
+ version = "0.8.54"
2248
2257
  source = "registry+https://github.com/rust-lang/crates.io-index"
2249
- checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
2258
+ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
2250
2259
  dependencies = [
2251
2260
  "proc-macro2",
2252
2261
  "quote",
2253
- "syn",
2262
+ "syn 2.0.119",
2254
2263
  ]
2255
2264
 
2256
2265
  [[package]]
@@ -2270,7 +2279,7 @@ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2270
2279
  dependencies = [
2271
2280
  "proc-macro2",
2272
2281
  "quote",
2273
- "syn",
2282
+ "syn 2.0.119",
2274
2283
  "synstructure",
2275
2284
  ]
2276
2285
 
@@ -2304,11 +2313,11 @@ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2304
2313
  dependencies = [
2305
2314
  "proc-macro2",
2306
2315
  "quote",
2307
- "syn",
2316
+ "syn 2.0.119",
2308
2317
  ]
2309
2318
 
2310
2319
  [[package]]
2311
2320
  name = "zmij"
2312
- version = "1.0.21"
2321
+ version = "1.0.23"
2313
2322
  source = "registry+https://github.com/rust-lang/crates.io-index"
2314
- checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
2323
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"