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.
- {panache_cli-2.61.0 → panache_cli-3.0.1}/Cargo.lock +203 -157
- {panache_cli-2.61.0 → panache_cli-3.0.1}/Cargo.toml +20 -20
- {panache_cli-2.61.0 → panache_cli-3.0.1}/PKG-INFO +1 -1
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/CHANGELOG.md +33 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/Cargo.toml +6 -6
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/config.rs +35 -4
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/core.rs +56 -21
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/inline.rs +6 -1
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/inline_layout.rs +8 -4
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/math/linebreak.rs +10 -4
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/math.rs +19 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/tables.rs +16 -34
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/lib.rs +1 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/CHANGELOG.md +37 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/Cargo.toml +6 -6
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/options.rs +6 -70
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/pandoc_ast.rs +3 -31
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/block_dispatcher.rs +93 -38
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/html_blocks.rs +123 -29
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/lists.rs +1 -1
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/metadata.rs +207 -35
- panache_cli-3.0.1/crates/panache-parser/src/parser/blocks/paragraphs.rs +249 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/tables.rs +357 -29
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/tests/code_blocks.rs +219 -1
- panache_cli-3.0.1/crates/panache-parser/src/parser/blocks/tests/headings.rs +475 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/tests/lists.rs +72 -1
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/tests/metadata_guards.rs +38 -1
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/core.rs +597 -17
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/citations.rs +114 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/container_stack.rs +17 -1
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/list_item_buffer.rs +108 -37
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/bib/csl_json.rs +0 -105
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/bib/csl_yaml.rs +0 -10
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/bib/index.rs +0 -11
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/bib/ris.rs +0 -53
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/bib.rs +3 -3
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/cli.rs +12 -26
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/config/formatter_presets.rs +0 -1
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/config/types.rs +53 -249
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/config.rs +172 -149
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/external_formatters_common.rs +105 -6
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/external_formatters_sync.rs +3 -5
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/formatter.rs +9 -1
- panache_cli-3.0.1/src/linter/rules/citation_nonbreaking_space.rs +267 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules.rs +1 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter.rs +1 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/dispatch.rs +101 -4
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/documents.rs +22 -20
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/global_state.rs +71 -5
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/diagnostics.rs +36 -34
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/testing.rs +40 -7
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp.rs +47 -5
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/main.rs +37 -97
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/salsa.rs +19 -19
- panache_cli-2.61.0/crates/panache-parser/src/parser/blocks/paragraphs.rs +0 -167
- panache_cli-2.61.0/crates/panache-parser/src/parser/blocks/tests/headings.rs +0 -216
- {panache_cli-2.61.0 → panache_cli-3.0.1}/LICENSE +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/README.md +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/assets/quarto-schema/schema.json +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/build.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/README.md +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/directives.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/blockquotes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/code_blocks.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/fenced_divs.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/hashpipe.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/headings.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/indent_utils.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/lists.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/math/STYLE.md +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/math/operators.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/math/render.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/metadata.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/paragraphs.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/sentence_wrap.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/shortcodes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/smart.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/utils.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/yaml/STYLE.md +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/yaml/block_map.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/yaml/block_sequence.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/yaml/document.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/yaml/flow.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/yaml/options.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/yaml/scalar.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter/yaml.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/formatter.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/parser.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/syntax.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/utils.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-formatter/src/yaml_engine.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/README.md +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/build.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/grid_layout.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/lib.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/admonitions.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/blockquotes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/code_blocks.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/container_prefix.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/definition_lists.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/fenced_divs.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/figures.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/headings.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/horizontal_rules.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/indented_code.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/latex_envs.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/line_blocks.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/myst_directives.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/myst_targets.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/raw_blocks.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/reference_links.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/tests/blanklines.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/tests/blockquotes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/tests/definition_lists.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/tests/helpers.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks/tests/losslessness.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/blocks.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/diagnostics.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/bookdown.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/bracketed_spans.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/code_spans.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/core.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/emoji.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/escapes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/inline_executable.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/inline_footnotes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/inline_html.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/inline_ir.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/latex.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/links.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/mark.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/math.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/myst_roles.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/myst_substitutions.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/native_spans.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/raw_inline.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/refdef_map.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/shortcodes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/sink.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/strikeout.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/subscript.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/superscript.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/svelte.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/tests.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/uri-schemes.csv +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines/wikilinks.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/inlines.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/math.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/attributes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/chunk_options.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/continuation.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/helpers.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/inline_emission.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/marker_utils.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/text_buffer.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/tree_copy.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils/yaml_regions.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/utils.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/yaml/cooking.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/yaml/events.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/yaml/model.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/yaml/parser.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/yaml/profile.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/yaml/scanner.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/yaml/validator.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser/yaml.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/parser.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/range_utils.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/alerts.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/ast.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/attributes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/block_quotes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/blocks.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/chunk_options.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/citations.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/code_blocks.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/crossrefs.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/definitions.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/fenced_divs.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/headings.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/inlines.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/kind.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/links.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/lists.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/math.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/myst.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/raw_tex.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/references.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/shortcodes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/tables.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/yaml.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax/yaml_ast.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/crates/panache-parser/src/syntax.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/pyproject.toml +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/bib/bibtex.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/bib/preview.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/bin/distill_quarto_schema.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/cache.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/config/types/schema_helpers.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/diagnostic_renderer.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/directives.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/external_tools_common.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/includes.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lib.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/code_block_collector.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/diagnostics.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/external_linters/clippy.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/external_linters/eslint.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/external_linters/jarl.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/external_linters/ruff.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/external_linters/shellcheck.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/external_linters/staticcheck.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/external_linters.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/external_linters_sync.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/fuzzy.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/index.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/metadata_diagnostics.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/offsets.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/quarto_schema/distill.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/quarto_schema/interp.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/quarto_schema/model.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/quarto_schema/report.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/quarto_schema/value.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/quarto_schema.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/adjacent_footnote_refs.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/chunk_label_spaces.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/citation_keys.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/consumer_divergence.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/crossref_as_link_target.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/duplicate_references.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/emoji_aliases.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/empty_list_item.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/empty_values.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/figure_crossref_captions.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/footnote_ref_in_footnote_def.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/heading_eaten_attrs.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/heading_hierarchy.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/heading_strip_comments_residue.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/html_entities.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/link_text_is_url.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/math_content.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/missing_chunk_labels.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/quarto_schema.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/stray_fenced_div_markers.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/undefined_anchor.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/undefined_references.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/rules/unused_definitions.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/runner.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/linter/yaml_resolve.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/config.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/context.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/conversions.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/code_actions.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/completion.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/configuration.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/document_highlight.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/document_links.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/document_symbols.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/file_operations.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/file_rename.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/file_watcher.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/folding_ranges.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/footnote_conversion.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/formatting.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/goto_definition.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/heading_link_conversion.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/hover.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/link_conversion.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/linked_editing_range.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/list_conversion.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/prepare_rename.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/references.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/rename.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/semantic_tokens.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/shortcode_args.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/workspace_folders.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers/workspace_symbols.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/handlers.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/helpers.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/navigation.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/symbols.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/task_pool.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/lsp/uri_ext.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/metadata/bibliography.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/metadata/citations.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/metadata/project.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/metadata/references.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/metadata/yaml.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/metadata.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/parser.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/range_utils.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/syntax.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/utils.rs +0 -0
- {panache_cli-2.61.0 → panache_cli-3.0.1}/src/yaml_engine.rs +0 -0
- {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.
|
|
145
|
+
version = "2.13.1"
|
|
146
146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
-
checksum = "
|
|
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.
|
|
163
|
+
version = "1.13.0"
|
|
164
164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
-
checksum = "
|
|
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.
|
|
192
|
+
version = "4.6.4"
|
|
193
193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
194
|
-
checksum = "
|
|
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.
|
|
211
|
+
version = "4.6.2"
|
|
212
212
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
-
checksum = "
|
|
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.
|
|
232
|
+
version = "4.6.4"
|
|
233
233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
-
checksum = "
|
|
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.
|
|
292
|
+
version = "0.5.16"
|
|
293
293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
-
checksum = "
|
|
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.
|
|
301
|
+
version = "0.8.7"
|
|
302
302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
-
checksum = "
|
|
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.
|
|
311
|
+
version = "0.9.20"
|
|
312
312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
-
checksum = "
|
|
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.
|
|
320
|
+
version = "0.3.13"
|
|
321
321
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
-
checksum = "
|
|
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.
|
|
329
|
+
version = "0.8.22"
|
|
330
330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
-
checksum = "
|
|
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.
|
|
450
|
+
version = "1.17.0"
|
|
451
451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
-
checksum = "
|
|
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.
|
|
536
|
+
version = "2.5.0"
|
|
537
537
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
-
checksum = "
|
|
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.
|
|
597
|
+
version = "0.3.33"
|
|
598
598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
|
-
checksum = "
|
|
599
|
+
checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
|
|
600
600
|
|
|
601
601
|
[[package]]
|
|
602
602
|
name = "futures-task"
|
|
603
|
-
version = "0.3.
|
|
603
|
+
version = "0.3.33"
|
|
604
604
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
-
checksum = "
|
|
605
|
+
checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
|
|
606
606
|
|
|
607
607
|
[[package]]
|
|
608
608
|
name = "futures-util"
|
|
609
|
-
version = "0.3.
|
|
609
|
+
version = "0.3.33"
|
|
610
610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
-
checksum = "
|
|
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.
|
|
657
|
+
version = "0.4.19"
|
|
658
658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
-
checksum = "
|
|
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.
|
|
687
|
+
version = "0.12.1"
|
|
699
688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
-
checksum = "
|
|
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.
|
|
817
|
+
version = "0.4.31"
|
|
829
818
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
-
checksum = "
|
|
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.
|
|
886
|
+
version = "0.2.34"
|
|
898
887
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
-
checksum = "
|
|
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.
|
|
910
|
+
version = "0.2.34"
|
|
912
911
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
-
checksum = "
|
|
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.
|
|
933
|
+
version = "0.48.5"
|
|
934
934
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
-
checksum = "
|
|
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.
|
|
962
|
+
version = "0.48.5"
|
|
961
963
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
962
|
-
checksum = "
|
|
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.
|
|
991
|
+
version = "0.2.189"
|
|
976
992
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
-
checksum = "
|
|
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.
|
|
1033
|
+
version = "0.10.0"
|
|
1018
1034
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
-
checksum = "
|
|
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.
|
|
1059
|
+
version = "2.8.3"
|
|
1044
1060
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
-
checksum = "
|
|
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.
|
|
1110
|
+
version = "0.4.8"
|
|
1095
1111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1096
|
-
checksum = "
|
|
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.
|
|
1144
|
+
version = "0.1.46"
|
|
1129
1145
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1130
|
-
checksum = "
|
|
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 = "
|
|
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.
|
|
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.
|
|
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.
|
|
1355
|
+
version = "1.14.0"
|
|
1341
1356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1342
|
-
checksum = "
|
|
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.
|
|
1420
|
+
version = "1.0.107"
|
|
1406
1421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1407
|
-
checksum = "
|
|
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.
|
|
1438
|
+
version = "1.0.47"
|
|
1424
1439
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1425
|
-
checksum = "
|
|
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.
|
|
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.
|
|
1499
|
+
version = "1.0.26"
|
|
1485
1500
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
-
checksum = "
|
|
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.
|
|
1508
|
+
version = "1.0.26"
|
|
1494
1509
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
|
-
checksum = "
|
|
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.
|
|
1519
|
+
version = "0.48.5"
|
|
1505
1520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1506
|
-
checksum = "
|
|
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.
|
|
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.
|
|
1536
|
+
version = "1.13.1"
|
|
1522
1537
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1523
|
-
checksum = "
|
|
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.
|
|
1548
|
+
version = "0.4.16"
|
|
1534
1549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1535
|
-
checksum = "
|
|
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.
|
|
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.
|
|
1608
|
+
version = "1.0.23"
|
|
1594
1609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1595
|
-
checksum = "
|
|
1610
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
1596
1611
|
|
|
1597
1612
|
[[package]]
|
|
1598
1613
|
name = "salsa"
|
|
1599
|
-
version = "0.
|
|
1614
|
+
version = "0.28.1"
|
|
1600
1615
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1601
|
-
checksum = "
|
|
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.
|
|
1640
|
+
version = "0.28.1"
|
|
1626
1641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1627
|
-
checksum = "
|
|
1642
|
+
checksum = "50d7dc08ba69b9aedfa61dfc4d65548ae42c0d8b90bbd62cd121776920841bcf"
|
|
1628
1643
|
|
|
1629
1644
|
[[package]]
|
|
1630
1645
|
name = "salsa-macros"
|
|
1631
|
-
version = "0.
|
|
1646
|
+
version = "0.28.1"
|
|
1632
1647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1633
|
-
checksum = "
|
|
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.
|
|
1697
|
+
version = "1.0.229"
|
|
1684
1698
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1685
|
-
checksum = "
|
|
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.
|
|
1707
|
+
version = "1.0.229"
|
|
1694
1708
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1695
|
-
checksum = "
|
|
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.
|
|
1716
|
+
version = "1.0.229"
|
|
1703
1717
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
-
checksum = "
|
|
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.
|
|
1738
|
+
version = "1.0.151"
|
|
1725
1739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
-
checksum = "
|
|
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.
|
|
1751
|
+
version = "0.1.21"
|
|
1738
1752
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1739
|
-
checksum = "
|
|
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.
|
|
1771
|
+
version = "0.3.10"
|
|
1758
1772
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1759
|
-
checksum = "
|
|
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 = "
|
|
1865
|
+
version = "3.0.3"
|
|
1820
1866
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1821
|
-
checksum = "
|
|
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.
|
|
1918
|
+
version = "2.0.19"
|
|
1873
1919
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1874
|
-
checksum = "
|
|
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.
|
|
1927
|
+
version = "2.0.19"
|
|
1882
1928
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1883
|
-
checksum = "
|
|
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.
|
|
1954
|
+
version = "1.1.3+spec-1.1.0"
|
|
1909
1955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1910
|
-
checksum = "
|
|
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.
|
|
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.
|
|
1982
|
+
"winnow 1.0.4",
|
|
1937
1983
|
]
|
|
1938
1984
|
|
|
1939
1985
|
[[package]]
|
|
1940
1986
|
name = "toml_writer"
|
|
1941
|
-
version = "1.1.
|
|
1987
|
+
version = "1.1.2+spec-1.1.0"
|
|
1942
1988
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1943
|
-
checksum = "
|
|
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.
|
|
2054
|
+
version = "1.24.0"
|
|
2009
2055
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2010
|
-
checksum = "
|
|
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.
|
|
2166
|
+
version = "8.0.5"
|
|
2121
2167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2122
|
-
checksum = "
|
|
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.
|
|
2184
|
+
version = "0.6.0"
|
|
2139
2185
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2140
|
-
checksum = "
|
|
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.
|
|
2197
|
+
version = "0.5.0"
|
|
2152
2198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2153
|
-
checksum = "
|
|
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.
|
|
2233
|
+
version = "1.0.4"
|
|
2188
2234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2189
|
-
checksum = "
|
|
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.
|
|
2284
|
+
version = "0.8.55"
|
|
2239
2285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2240
|
-
checksum = "
|
|
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.
|
|
2293
|
+
version = "0.8.55"
|
|
2248
2294
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2249
|
-
checksum = "
|
|
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.
|
|
2358
|
+
version = "1.0.23"
|
|
2313
2359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2314
|
-
checksum = "
|
|
2360
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|