squawk-cli 2.23.0__tar.gz → 2.25.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.
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/Cargo.lock +587 -1626
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/Cargo.toml +3 -4
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/PKG-INFO +1 -1
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/Cargo.toml +1 -2
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/README.md +1 -1
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/github.rs +223 -15
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/main.rs +17 -4
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/reporter.rs +108 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/snapshots/squawk__github__test_github_comment__generating_comment_multiple_files.snap +1 -2
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/snapshots/squawk__github__test_github_comment__generating_comment_no_violations.snap +1 -2
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/snapshots/squawk__github__test_github_comment__generating_no_violations_no_files.snap +1 -2
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_github/src/app.rs +23 -5
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_github/src/lib.rs +2 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/lib.rs +6 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/adding_field_with_default.rs +18 -8
- squawk_cli-2.25.0/crates/squawk_linter/src/rules/ban_char_field.rs +233 -0
- squawk_cli-2.25.0/crates/squawk_linter/src/rules/prefer_bigint_over_int.rs +172 -0
- squawk_cli-2.25.0/crates/squawk_linter/src/rules/prefer_bigint_over_smallint.rs +165 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/prefer_identity.rs +46 -5
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/prefer_robust_stmts.rs +27 -81
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/prefer_text_field.rs +71 -5
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/prefer_timestamptz.rs +83 -4
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/require_concurrent_index_creation.rs +31 -4
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/require_concurrent_index_deletion.rs +41 -5
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__add_numbers_ok.snap +1 -1
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__arbitrary_func_err.snap +1 -1
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_random_with_args_err.snap +1 -1
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_uuid_error.snap +1 -1
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_uuid_error_multi_stmt.snap +1 -1
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_volatile_func_err.snap +1 -1
- squawk_cli-2.25.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__docs_example_error_on_pg_11.snap +15 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__generated_stored_err.snap +1 -1
- squawk_cli-2.25.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__all_the_types.snap +120 -0
- squawk_cli-2.25.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__alter_table_err.snap +25 -0
- squawk_cli-2.25.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__array_char_type_err.snap +25 -0
- squawk_cli-2.25.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__case_insensitive.snap +25 -0
- squawk_cli-2.25.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__creating_table_with_char_errors.snap +82 -0
- squawk_cli-2.25.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_bigint_over_int__test__err.snap +111 -0
- squawk_cli-2.25.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_bigint_over_smallint__test__err.snap +90 -0
- squawk_cli-2.25.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_identity__test__err.snap +153 -0
- squawk_cli-2.25.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_identity__test__ok_when_quoted.snap +48 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test__adding_column_non_text_err.snap +13 -1
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test__create_table_with_pgcatalog_varchar_err.snap +13 -1
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test__create_table_with_varchar_err.snap +13 -1
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test__increase_varchar_size_err.snap +13 -1
- squawk_cli-2.25.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_timestamptz__test__alter_table_with_timestamp_err.snap +48 -0
- squawk_cli-2.25.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_timestamptz__test__create_table_with_timestamp_err.snap +48 -0
- squawk_cli-2.25.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__require_concurrent_index_creation__test__adding_index_non_concurrently_err.snap +27 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__require_concurrent_index_deletion__test__drop_index_missing_concurrently_err.snap +13 -1
- squawk_cli-2.25.0/crates/squawk_linter/src/test_utils.rs +69 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/src/grammar.rs +6 -1
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_table.sql +4 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_table_ok.snap +26 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_server/src/ignore.rs +30 -19
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/ast/generated/nodes.rs +0 -8
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/ast/node_ext.rs +10 -0
- squawk_cli-2.23.0/crates/squawk_linter/src/rules/ban_char_field.rs +0 -150
- squawk_cli-2.23.0/crates/squawk_linter/src/rules/prefer_bigint_over_int.rs +0 -111
- squawk_cli-2.23.0/crates/squawk_linter/src/rules/prefer_bigint_over_smallint.rs +0 -110
- squawk_cli-2.23.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__all_the_types.snap +0 -48
- squawk_cli-2.23.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__alter_table_err.snap +0 -13
- squawk_cli-2.23.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__array_char_type_err.snap +0 -13
- squawk_cli-2.23.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__creating_table_with_char_errors.snap +0 -34
- squawk_cli-2.23.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_bigint_over_int__test__err.snap +0 -42
- squawk_cli-2.23.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_bigint_over_smallint__test__err.snap +0 -42
- squawk_cli-2.23.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_identity__test__err.snap +0 -69
- squawk_cli-2.23.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_identity__test__ok_when_quoted.snap +0 -24
- squawk_cli-2.23.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_timestamptz__test__alter_table_with_timestamp_err.snap +0 -24
- squawk_cli-2.23.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_timestamptz__test__create_table_with_timestamp_err.snap +0 -24
- squawk_cli-2.23.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__require_concurrent_index_creation__test__adding_index_non_concurrently_err.snap +0 -15
- squawk_cli-2.23.0/crates/squawk_linter/src/test_utils.rs +0 -16
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/config.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/debug.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/file.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/file_finding.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/snapshots/squawk__config__test_config__load_assume_in_transaction.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/snapshots/squawk__config__test_config__load_cfg_full.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/snapshots/squawk__config__test_config__load_excluded_paths.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/snapshots/squawk__config__test_config__load_excluded_rules.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/snapshots/squawk__config__test_config__load_fail_on_violations.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/snapshots/squawk__config__test_config__load_pg_version.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/snapshots/squawk__debug__test__dump_ast_basic_output.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/snapshots/squawk__reporter__test_check_files__check_files_invalid_syntax.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/snapshots/squawk__reporter__test_reporter__display_no_violations_tty.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/snapshots/squawk__reporter__test_reporter__display_violations_tty.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/snapshots/squawk__reporter__test_reporter__display_violations_tty_and_github_annotations.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk/src/snapshots/squawk__reporter__test_reporter__span_offsets.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_github/Cargo.toml +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_github/README.md +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_github/src/actions.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/Cargo.toml +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/README.md +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/LICENSE-MIT +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/cursor.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/lib.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__bitstring.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__block_comment.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__block_comment_unterminated.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__dollar_quote_mismatch_tags_complex.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__dollar_quote_mismatch_tags_simple.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__dollar_quoting.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__dollar_strings_part2.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__lex_statement.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__line_comment.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__line_comment_whitespace.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__numeric.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__numeric_non_decimal.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__numeric_with_seperators.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__params.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__quoted_ident.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__quoted_ident_with_escape_quote.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__select_with_period.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__string.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__string_unicode_escape.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__string_with_escapes.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_lexer/src/token.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/Cargo.toml +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/README.md +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/identifier.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/ignore.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/ignore_index.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/adding_foreign_key_constraint.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/adding_not_null_field.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/adding_primary_key_constraint.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/adding_required_field.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/ban_alter_domain_with_add_constraint.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/ban_concurrent_index_creation_in_transaction.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/ban_create_domain_with_constraint.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/ban_drop_column.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/ban_drop_database.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/ban_drop_not_null.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/ban_drop_table.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/ban_truncate_cascade.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/changing_column_type.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/constraint_missing_not_valid.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/disallow_unique_constraint.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/mod.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/non_volatile_built_in_functions.txt +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/renaming_column.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/renaming_table.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_bool_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_enum_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_func_now_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_jsonb_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_str_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__docs_example_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__docs_example_ok_post_pg_11.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test__regression_gh_issue_519.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test__set_not_null.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_primary_key_constraint__test__plain_primary_key.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_primary_key_constraint__test__serial_primary_key.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_required_field__test__not_null_without_default.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_alter_domain_with_add_constraint__test__err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_concurrent_index_creation_in_transaction__test__assuming_in_transaction_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_concurrent_index_creation_in_transaction__test__ban_concurrent_index_creation_in_transaction_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_create_domain_with_constraint__test__err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_create_domain_with_constraint__test__err_with_multiple_constraints.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_drop_column__test__err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_drop_database__test__ban_drop_database.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_drop_not_null__test__err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_drop_table__test__err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_truncate_cascade__test__err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__changing_column_type__test__another_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__changing_column_type__test__err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test__adding_check_constraint_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test__adding_fk_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test__not_valid_validate_assume_transaction_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test__not_valid_validate_transaction_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test__not_valid_validate_with_assume_in_transaction_with_explicit_commit_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test__adding_unique_constraint_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test__unique_constraint_inline_add_column_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test__unique_constraint_inline_add_column_unique_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__alter_column_set_not_null.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__alter_table_drop_column_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__alter_table_drop_constraint_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__alter_table_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__create_index_concurrently_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__create_table_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__disable_row_level_security_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__double_add_after_drop_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__drop_index_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__enable_row_level_security_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__enable_row_level_security_without_exists_check_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__renaming_column__test__err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__renaming_table__test__err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__begin_assume_transaction_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__begin_repeated_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__commit_repeated_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__commit_with_assume_in_transaction_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__rollback_with_assume_in_transaction_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/rules/transaction_nesting.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/snapshots/squawk_linter__version__test_pg_version__parse.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/version.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_linter/src/visitors.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/Cargo.toml +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/README.md +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/src/event.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/src/generated/mod.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/src/generated/syntax_kind.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/src/generated/token_sets.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/src/input.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/src/lexed_str.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/src/lib.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/src/output.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/src/shortcuts.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/src/syntax_kind.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/src/token_set.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/err/alter_foreign_data_wrapper.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/err/alter_sequence.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/err/alter_server.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/err/alter_table.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/err/create_function.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/err/create_table.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/err/drop_table.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/err/insert.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/err/select.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/err/select_cte.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/err/values.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_aggregate.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_collation.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_conversion.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_database.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_default_privileges.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_domain.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_event_trigger.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_extension.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_foreign_data_wrapper.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_foreign_table.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_function.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_group.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_index.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_language.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_large_object.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_materialized_view.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_operator.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_operator_class.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_operator_family.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_policy.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_procedure.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_publication.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_role.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_routine.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_rule.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_schema.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_sequence.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_server.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_statistics.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_subscription.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_system.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_table.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_table_pg17.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_tablespace.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_text_search_configuration.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_text_search_dictionary.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_text_search_parser.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_text_search_template.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_trigger.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_type.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_user.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_user_mapping.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/alter_view.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/analyze.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/call.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/checkpoint.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/close.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/cluster.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/comment.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/copy.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_access_method.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_aggregate.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_cast.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_collation.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_conversion.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_database.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_domain.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_event_trigger.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_ext.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_foreign_data_wrapper.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_foreign_table.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_function.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_group.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_index.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_language.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_materialized_view.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_operator.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_operator_class.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_operator_family.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_policy.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_procedure.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_publication.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_role.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_rule.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_sequence.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_server.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_statistics.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_subscription.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_table_as.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_table_pg17.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_tablespace.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_text_search_config.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_text_search_dict.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_text_search_parser.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_text_search_template.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_transform.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_trigger.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_type.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_user.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_view.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/create_view_extra_parens.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/deallocate.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/declare.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/delete.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/discard.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/do.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_access_method.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_aggregate.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_cast.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_collation.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_conversion.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_database.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_domain.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_event_trigger.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_extension.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_foreign_data.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_foreign_table.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_function.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_group.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_index.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_language.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_materialized_view.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_operator.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_operator_class.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_operator_family.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_owned.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_policy.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_procedure.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_publication.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_role.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_routine.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_rule.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_sequence.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_server.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_statistics.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_subscription.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_table.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_tablespace.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_text_search_config.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_text_search_dict.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_text_search_parser.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_text_search_template.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_transform.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_trigger.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_type.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_user.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_user_mapping.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/drop_view.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/execute.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/explain.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/fetch.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/grant.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/import_foreign_schema.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/insert.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/listen.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/load.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/lock.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/merge.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/merge_pg17.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/misc.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/move.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/notify.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/precedence.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/prepare.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/reassign.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/refresh.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/reindex.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/reset.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/revoke.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/schemas.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/security_label.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/select.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/select_casts.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/select_casts_pg17.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/select_compound_union_select.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/select_cte.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/select_funcs.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/select_funcs_pg17.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/select_into.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/select_operators.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/set_constraints.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/set_role.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/set_session_auth.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/set_transaction.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/show.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/transaction.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/truncate.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/unlisten.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/update.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/vacuum.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/ok/values.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/LICENSE +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/advisory_lock.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/aggregates.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/alter_generic.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/alter_operator.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/alter_table.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/amutils.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/arrays.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/async.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/bit.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/bitmapops.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/boolean.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/box.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/brin.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/brin_bloom.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/brin_multi.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/btree_index.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/case.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/char.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/circle.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/cluster.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/collate.icu.utf8.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/collate.linux.utf8.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/collate.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/collate.utf8.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/combocid.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/comments.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/compression.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/constraints.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/conversion.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/copy.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/copy2.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/copydml.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/copyencoding.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/copyselect.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/create_aggregate.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/create_am.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/create_cast.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/create_function_c.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/create_function_sql.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/create_index.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/create_index_spgist.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/create_misc.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/create_operator.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/create_procedure.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/create_role.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/create_schema.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/create_table.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/create_table_like.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/create_type.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/create_view.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/database.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/date.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/dbsize.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/delete.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/dependency.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/domain.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/drop_if_exists.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/drop_operator.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/enum.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/equivclass.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/errors.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/event_trigger.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/event_trigger_login.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/explain.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/expressions.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/fast_default.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/float4.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/float8.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/foreign_data.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/foreign_key.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/functional_deps.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/generated_stored.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/generated_virtual.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/geometry.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/gin.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/gist.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/groupingsets.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/guc.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/hash_func.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/hash_index.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/hash_part.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/horology.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/identity.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/incremental_sort.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/index_including.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/index_including_gist.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/indexing.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/indirect_toast.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/inet.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/infinite_recurse.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/inherit.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/init_privs.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/insert.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/insert_conflict.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/int2.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/int4.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/int8.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/interval.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/join.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/join_hash.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/json.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/json_encoding.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/jsonb.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/jsonb_jsonpath.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/jsonpath.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/jsonpath_encoding.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/largeobject.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/limit.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/line.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/lock.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/lseg.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/macaddr.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/macaddr8.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/maintain_every.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/matview.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/md5.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/memoize.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/merge.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/misc.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/misc_functions.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/misc_sanity.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/money.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/multirangetypes.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/mvcc.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/name.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/namespace.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/numa.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/numeric.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/numeric_big.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/numerology.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/object_address.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/oid.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/oidjoins.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/opr_sanity.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/partition_aggregate.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/partition_info.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/partition_join.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/partition_prune.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/password.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/path.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/pg_lsn.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/plancache.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/plpgsql.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/point.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/polygon.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/polymorphism.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/portals.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/portals_p2.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/predicate.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/prepare.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/prepared_xacts.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/privileges.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/publication.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/random.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/rangefuncs.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/rangetypes.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/regex.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/regproc.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/reindex_catalog.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/reloptions.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/replica_identity.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/returning.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/roleattributes.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/rowsecurity.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/rowtypes.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/rules.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/sanity_check.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/security_label.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/select.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/select_distinct.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/select_distinct_on.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/select_having.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/select_implicit.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/select_into.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/select_parallel.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/select_views.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/sequence.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/spgist.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/sqljson.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/sqljson_jsontable.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/sqljson_queryfuncs.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/stats.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/stats_ext.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/stats_import.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/strings.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/subscription.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/subselect.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/sysviews.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/tablesample.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/tablespace.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/temp.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/test_setup.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/text.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/tid.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/tidrangescan.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/tidscan.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/time.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/timestamp.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/timestamptz.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/timetz.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/transactions.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/triggers.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/truncate.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/tsdicts.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/tsearch.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/tsrf.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/tstypes.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/tuplesort.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/txid.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/type_sanity.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/typed_table.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/unicode.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/union.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/updatable_views.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/update.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/uuid.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/vacuum.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/vacuum_parallel.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/varchar.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/window.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/with.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/without_overlaps.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/write_parallel.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/xid.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/xml.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/data/regression_suite/xmlmap.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_aggregate_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_collation_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_conversion_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_database_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_default_privileges_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_domain_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_event_trigger_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_extension_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_foreign_data_wrapper_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_foreign_data_wrapper_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_foreign_table_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_function_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_group_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_index_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_language_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_large_object_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_materialized_view_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_operator_class_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_operator_family_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_operator_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_policy_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_procedure_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_publication_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_role_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_routine_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_rule_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_schema_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_sequence_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_sequence_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_server_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_server_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_statistics_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_subscription_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_system_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_table_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_table_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_table_pg17_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_tablespace_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_text_search_configuration_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_text_search_dictionary_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_text_search_parser_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_text_search_template_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_trigger_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_type_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_user_mapping_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_user_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__alter_view_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__analyze_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__call_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__checkpoint_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__close_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__cluster_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__comment_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__copy_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_access_method_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_aggregate_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_cast_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_collation_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_conversion_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_database_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_domain_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_event_trigger_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_ext_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_foreign_data_wrapper_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_foreign_table_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_function_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_function_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_group_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_index_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_language_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_materialized_view_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_operator_class_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_operator_family_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_operator_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_policy_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_procedure_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_publication_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_role_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_rule_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_sequence_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_server_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_statistics_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_subscription_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_table_as_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_table_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_table_pg17_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_tablespace_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_text_search_config_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_text_search_dict_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_text_search_parser_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_text_search_template_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_transform_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_trigger_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_type_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_user_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_view_extra_parens_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__create_view_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__deallocate_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__declare_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__delete_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__discard_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__do_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_access_method_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_aggregate_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_cast_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_collation_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_conversion_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_database_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_domain_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_event_trigger_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_extension_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_foreign_data_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_foreign_table_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_function_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_group_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_index_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_language_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_materialized_view_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_operator_class_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_operator_family_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_operator_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_owned_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_policy_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_procedure_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_publication_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_role_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_routine_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_rule_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_sequence_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_server_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_statistics_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_subscription_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_table_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_table_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_tablespace_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_text_search_config_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_text_search_dict_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_text_search_parser_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_text_search_template_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_transform_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_trigger_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_type_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_user_mapping_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_user_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__drop_view_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__execute_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__explain_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__fetch_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__grant_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__import_foreign_schema_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__insert_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__insert_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__listen_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__load_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__lock_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__merge_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__merge_pg17_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__misc_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__move_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__notify_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__precedence_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__prepare_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__reassign_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__refresh_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_advisory_lock.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_aggregates.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_alter_generic.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_alter_operator.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_alter_table.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_amutils.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_arrays.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_async.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_bit.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_bitmapops.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_boolean.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_box.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_brin.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_brin_bloom.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_brin_multi.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_btree_index.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_case.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_char.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_circle.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_cluster.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_collate.icu.utf8.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_collate.linux.utf8.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_collate.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_collate.utf8.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_combocid.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_comments.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_compression.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_constraints.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_conversion.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_copy.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_copy2.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_copydml.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_copyencoding.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_copyselect.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_aggregate.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_am.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_cast.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_function_c.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_function_sql.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_index.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_index_spgist.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_misc.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_operator.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_procedure.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_role.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_schema.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_table.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_table_like.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_type.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_view.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_database.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_date.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_dbsize.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_delete.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_dependency.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_domain.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_drop_if_exists.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_drop_operator.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_enum.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_equivclass.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_errors.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_event_trigger.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_event_trigger_login.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_explain.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_expressions.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_fast_default.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_float4.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_float8.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_foreign_data.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_foreign_key.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_functional_deps.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_generated_stored.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_generated_virtual.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_geometry.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_gin.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_gist.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_groupingsets.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_guc.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_hash_func.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_hash_index.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_hash_part.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_horology.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_identity.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_incremental_sort.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_index_including.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_index_including_gist.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_indexing.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_indirect_toast.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_inet.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_infinite_recurse.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_inherit.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_init_privs.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_insert.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_insert_conflict.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_int2.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_int4.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_int8.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_interval.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_join.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_join_hash.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_json.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_json_encoding.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_jsonb.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_jsonb_jsonpath.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_jsonpath.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_jsonpath_encoding.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_largeobject.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_limit.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_line.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_lock.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_lseg.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_macaddr.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_macaddr8.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_maintain_every.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_matview.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_md5.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_memoize.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_merge.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_misc.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_misc_functions.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_misc_sanity.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_money.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_multirangetypes.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_mvcc.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_name.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_namespace.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_numa.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_numeric.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_numeric_big.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_numerology.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_object_address.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_oid.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_oidjoins.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_opr_sanity.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_partition_aggregate.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_partition_info.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_partition_join.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_partition_prune.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_password.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_path.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_pg_lsn.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_plancache.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_plpgsql.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_point.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_polygon.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_polymorphism.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_portals.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_portals_p2.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_predicate.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_prepare.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_prepared_xacts.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_privileges.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_publication.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_random.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_rangefuncs.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_rangetypes.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_regex.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_regproc.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_reindex_catalog.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_reloptions.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_replica_identity.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_returning.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_roleattributes.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_rowsecurity.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_rowtypes.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_rules.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_sanity_check.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_security_label.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_select.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_select_distinct.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_select_distinct_on.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_select_having.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_select_implicit.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_select_into.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_select_parallel.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_select_views.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_sequence.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_spgist.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_sqljson.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_sqljson_jsontable.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_sqljson_queryfuncs.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_stats.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_stats_ext.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_stats_import.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_strings.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_subscription.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_subselect.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_sysviews.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_tablesample.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_tablespace.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_temp.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_test_setup.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_text.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_tid.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_tidrangescan.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_tidscan.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_time.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_timestamp.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_timestamptz.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_timetz.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_transactions.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_triggers.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_truncate.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_tsdicts.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_tsearch.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_tsrf.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_tstypes.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_tuplesort.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_txid.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_type_sanity.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_typed_table.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_unicode.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_union.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_updatable_views.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_update.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_uuid.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_vacuum.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_vacuum_parallel.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_varchar.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_window.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_with.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_without_overlaps.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_write_parallel.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_xid.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_xml.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__regression_xmlmap.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__reindex_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__reset_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__revoke_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__schemas_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__security_label_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__select_casts_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__select_casts_pg17_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__select_compound_union_select_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__select_cte_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__select_cte_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__select_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__select_funcs_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__select_funcs_pg17_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__select_into_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__select_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__select_operators_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__set_constraints_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__set_role_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__set_session_auth_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__set_transaction_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__show_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__transaction_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__truncate_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__unlisten_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__update_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__vacuum_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__values_err.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/snapshots/tests__values_ok.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_parser/tests/tests.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_server/Cargo.toml +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_server/README.md +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_server/src/diagnostic.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_server/src/lib.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_server/src/lint.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_server/src/lsp_utils.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/Cargo.toml +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/README.md +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/ast/generated/mod.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/ast/generated/tokens.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/ast/nodes.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/ast/support.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/ast/traits.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/ast.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/lib.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/parsing.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/postgresql.ungram +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__alter_aggregate_params_validation.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__alter_table_ok_validation.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__array_exprs_validation.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__create_aggregate_params_validation.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__create_table_validation.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__custom_operators_validation.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__drop_aggregate_params_validation.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__join_clauses_validation.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__non_standard_param_validation.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__validate_string_continuation_validation.snap +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/syntax_error.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/syntax_node.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/test.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/token_text.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/src/validation.rs +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/test_data/validation/alter_aggregate_params.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/test_data/validation/alter_table_ok.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/test_data/validation/array_exprs.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/test_data/validation/create_aggregate_params.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/test_data/validation/create_table.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/test_data/validation/custom_operators.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/test_data/validation/drop_aggregate_params.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/test_data/validation/join_clauses.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/test_data/validation/non_standard_param.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/crates/squawk_syntax/test_data/validation/validate_string_continuation.sql +0 -0
- {squawk_cli-2.23.0 → squawk_cli-2.25.0}/pyproject.toml +0 -0
|
@@ -4,18 +4,18 @@ version = 4
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "addr2line"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.24.2"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
|
10
10
|
dependencies = [
|
|
11
11
|
"gimli",
|
|
12
12
|
]
|
|
13
13
|
|
|
14
14
|
[[package]]
|
|
15
|
-
name = "
|
|
16
|
-
version = "
|
|
15
|
+
name = "adler2"
|
|
16
|
+
version = "2.0.1"
|
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
-
checksum = "
|
|
18
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
19
19
|
|
|
20
20
|
[[package]]
|
|
21
21
|
name = "aho-corasick"
|
|
@@ -33,7 +33,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
33
33
|
checksum = "710e8eae58854cdc1790fcb56cca04d712a17be849eeb81da2a724bf4bae2bc4"
|
|
34
34
|
dependencies = [
|
|
35
35
|
"anstyle",
|
|
36
|
-
"unicode-width 0.2.
|
|
36
|
+
"unicode-width 0.2.1",
|
|
37
37
|
]
|
|
38
38
|
|
|
39
39
|
[[package]]
|
|
@@ -42,14 +42,14 @@ version = "0.12.1"
|
|
|
42
42
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
43
43
|
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
|
|
44
44
|
dependencies = [
|
|
45
|
-
"winapi
|
|
45
|
+
"winapi",
|
|
46
46
|
]
|
|
47
47
|
|
|
48
48
|
[[package]]
|
|
49
49
|
name = "anstream"
|
|
50
|
-
version = "0.6.
|
|
50
|
+
version = "0.6.20"
|
|
51
51
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
52
|
-
checksum = "
|
|
52
|
+
checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192"
|
|
53
53
|
dependencies = [
|
|
54
54
|
"anstyle",
|
|
55
55
|
"anstyle-parse",
|
|
@@ -62,50 +62,44 @@ dependencies = [
|
|
|
62
62
|
|
|
63
63
|
[[package]]
|
|
64
64
|
name = "anstyle"
|
|
65
|
-
version = "1.0.
|
|
65
|
+
version = "1.0.11"
|
|
66
66
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
67
|
-
checksum = "
|
|
67
|
+
checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
|
|
68
68
|
|
|
69
69
|
[[package]]
|
|
70
70
|
name = "anstyle-parse"
|
|
71
|
-
version = "0.2.
|
|
71
|
+
version = "0.2.7"
|
|
72
72
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
73
|
-
checksum = "
|
|
73
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
74
74
|
dependencies = [
|
|
75
75
|
"utf8parse",
|
|
76
76
|
]
|
|
77
77
|
|
|
78
78
|
[[package]]
|
|
79
79
|
name = "anstyle-query"
|
|
80
|
-
version = "1.1.
|
|
80
|
+
version = "1.1.4"
|
|
81
81
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
-
checksum = "
|
|
82
|
+
checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
|
|
83
83
|
dependencies = [
|
|
84
|
-
"windows-sys 0.
|
|
84
|
+
"windows-sys 0.60.2",
|
|
85
85
|
]
|
|
86
86
|
|
|
87
87
|
[[package]]
|
|
88
88
|
name = "anstyle-wincon"
|
|
89
|
-
version = "3.0.
|
|
89
|
+
version = "3.0.10"
|
|
90
90
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
-
checksum = "
|
|
91
|
+
checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
|
|
92
92
|
dependencies = [
|
|
93
93
|
"anstyle",
|
|
94
|
-
"
|
|
95
|
-
"windows-sys 0.
|
|
94
|
+
"once_cell_polyfill",
|
|
95
|
+
"windows-sys 0.60.2",
|
|
96
96
|
]
|
|
97
97
|
|
|
98
98
|
[[package]]
|
|
99
99
|
name = "anyhow"
|
|
100
|
-
version = "1.0.
|
|
101
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
-
checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
|
|
103
|
-
|
|
104
|
-
[[package]]
|
|
105
|
-
name = "atomic-waker"
|
|
106
|
-
version = "1.1.2"
|
|
100
|
+
version = "1.0.99"
|
|
107
101
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
-
checksum = "
|
|
102
|
+
checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100"
|
|
109
103
|
|
|
110
104
|
[[package]]
|
|
111
105
|
name = "atty"
|
|
@@ -115,46 +109,28 @@ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
|
|
115
109
|
dependencies = [
|
|
116
110
|
"hermit-abi",
|
|
117
111
|
"libc",
|
|
118
|
-
"winapi
|
|
112
|
+
"winapi",
|
|
119
113
|
]
|
|
120
114
|
|
|
121
115
|
[[package]]
|
|
122
116
|
name = "autocfg"
|
|
123
|
-
version = "
|
|
124
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
125
|
-
checksum = "0dde43e75fd43e8a1bf86103336bc699aa8d17ad1be60c76c0bdfd4828e19b78"
|
|
126
|
-
dependencies = [
|
|
127
|
-
"autocfg 1.1.0",
|
|
128
|
-
]
|
|
129
|
-
|
|
130
|
-
[[package]]
|
|
131
|
-
name = "autocfg"
|
|
132
|
-
version = "1.1.0"
|
|
117
|
+
version = "1.5.0"
|
|
133
118
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
-
checksum = "
|
|
119
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
135
120
|
|
|
136
121
|
[[package]]
|
|
137
122
|
name = "backtrace"
|
|
138
|
-
version = "0.3.
|
|
123
|
+
version = "0.3.75"
|
|
139
124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
-
checksum = "
|
|
125
|
+
checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
|
|
141
126
|
dependencies = [
|
|
142
127
|
"addr2line",
|
|
143
|
-
"
|
|
144
|
-
"cfg-if 1.0.0",
|
|
128
|
+
"cfg-if",
|
|
145
129
|
"libc",
|
|
146
130
|
"miniz_oxide",
|
|
147
131
|
"object",
|
|
148
132
|
"rustc-demangle",
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
[[package]]
|
|
152
|
-
name = "base64"
|
|
153
|
-
version = "0.10.1"
|
|
154
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
-
checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
|
|
156
|
-
dependencies = [
|
|
157
|
-
"byteorder",
|
|
133
|
+
"windows-targets 0.52.6",
|
|
158
134
|
]
|
|
159
135
|
|
|
160
136
|
[[package]]
|
|
@@ -165,9 +141,9 @@ checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
|
|
|
165
141
|
|
|
166
142
|
[[package]]
|
|
167
143
|
name = "base64"
|
|
168
|
-
version = "0.
|
|
144
|
+
version = "0.21.7"
|
|
169
145
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
-
checksum = "
|
|
146
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
171
147
|
|
|
172
148
|
[[package]]
|
|
173
149
|
name = "base64"
|
|
@@ -181,7 +157,7 @@ version = "0.66.1"
|
|
|
181
157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
158
|
checksum = "f2b84e06fc203107bfbad243f4aba2af864eb7db3b1cf46ea0a023b0b433d2a7"
|
|
183
159
|
dependencies = [
|
|
184
|
-
"bitflags 2.
|
|
160
|
+
"bitflags 2.9.3",
|
|
185
161
|
"cexpr",
|
|
186
162
|
"clang-sys",
|
|
187
163
|
"lazy_static",
|
|
@@ -194,7 +170,7 @@ dependencies = [
|
|
|
194
170
|
"regex",
|
|
195
171
|
"rustc-hash",
|
|
196
172
|
"shlex",
|
|
197
|
-
"syn 2.0.
|
|
173
|
+
"syn 2.0.106",
|
|
198
174
|
"which",
|
|
199
175
|
]
|
|
200
176
|
|
|
@@ -206,9 +182,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
206
182
|
|
|
207
183
|
[[package]]
|
|
208
184
|
name = "bitflags"
|
|
209
|
-
version = "2.
|
|
185
|
+
version = "2.9.3"
|
|
210
186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
-
checksum = "
|
|
187
|
+
checksum = "34efbcccd345379ca2868b2b2c9d3782e9cc58ba87bc7d79d5b53d9c9ae6f25d"
|
|
212
188
|
|
|
213
189
|
[[package]]
|
|
214
190
|
name = "borsh"
|
|
@@ -221,26 +197,9 @@ dependencies = [
|
|
|
221
197
|
|
|
222
198
|
[[package]]
|
|
223
199
|
name = "bumpalo"
|
|
224
|
-
version = "3.
|
|
225
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
-
checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3"
|
|
227
|
-
|
|
228
|
-
[[package]]
|
|
229
|
-
name = "byteorder"
|
|
230
|
-
version = "1.4.3"
|
|
231
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
-
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
|
|
233
|
-
|
|
234
|
-
[[package]]
|
|
235
|
-
name = "bytes"
|
|
236
|
-
version = "0.4.12"
|
|
200
|
+
version = "3.19.0"
|
|
237
201
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
-
checksum = "
|
|
239
|
-
dependencies = [
|
|
240
|
-
"byteorder",
|
|
241
|
-
"either",
|
|
242
|
-
"iovec",
|
|
243
|
-
]
|
|
202
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
244
203
|
|
|
245
204
|
[[package]]
|
|
246
205
|
name = "bytes"
|
|
@@ -250,15 +209,15 @@ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
|
250
209
|
|
|
251
210
|
[[package]]
|
|
252
211
|
name = "camino"
|
|
253
|
-
version = "1.1.
|
|
212
|
+
version = "1.1.12"
|
|
254
213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
-
checksum = "
|
|
214
|
+
checksum = "dd0b03af37dad7a14518b7691d81acb0f8222604ad3d1b02f6b4bed5188c0cd5"
|
|
256
215
|
|
|
257
216
|
[[package]]
|
|
258
217
|
name = "cc"
|
|
259
|
-
version = "1.2.
|
|
218
|
+
version = "1.2.34"
|
|
260
219
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
-
checksum = "
|
|
220
|
+
checksum = "42bc4aea80032b7bf409b0bc7ccad88853858911b7713a8062fdc0623867bedc"
|
|
262
221
|
dependencies = [
|
|
263
222
|
"shlex",
|
|
264
223
|
]
|
|
@@ -274,15 +233,9 @@ dependencies = [
|
|
|
274
233
|
|
|
275
234
|
[[package]]
|
|
276
235
|
name = "cfg-if"
|
|
277
|
-
version = "0.
|
|
278
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
-
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
|
|
280
|
-
|
|
281
|
-
[[package]]
|
|
282
|
-
name = "cfg-if"
|
|
283
|
-
version = "1.0.0"
|
|
236
|
+
version = "1.0.3"
|
|
284
237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
-
checksum = "
|
|
238
|
+
checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
|
|
286
239
|
|
|
287
240
|
[[package]]
|
|
288
241
|
name = "cfg_aliases"
|
|
@@ -312,15 +265,15 @@ dependencies = [
|
|
|
312
265
|
"bitflags 1.3.2",
|
|
313
266
|
"strsim 0.8.0",
|
|
314
267
|
"textwrap",
|
|
315
|
-
"unicode-width 0.1.
|
|
268
|
+
"unicode-width 0.1.14",
|
|
316
269
|
"vec_map",
|
|
317
270
|
]
|
|
318
271
|
|
|
319
272
|
[[package]]
|
|
320
273
|
name = "clap"
|
|
321
|
-
version = "4.5.
|
|
274
|
+
version = "4.5.46"
|
|
322
275
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
-
checksum = "
|
|
276
|
+
checksum = "2c5e4fcf9c21d2e544ca1ee9d8552de13019a42aa7dbf32747fa7aaf1df76e57"
|
|
324
277
|
dependencies = [
|
|
325
278
|
"clap_builder",
|
|
326
279
|
"clap_derive",
|
|
@@ -328,9 +281,9 @@ dependencies = [
|
|
|
328
281
|
|
|
329
282
|
[[package]]
|
|
330
283
|
name = "clap_builder"
|
|
331
|
-
version = "4.5.
|
|
284
|
+
version = "4.5.46"
|
|
332
285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
-
checksum = "
|
|
286
|
+
checksum = "fecb53a0e6fcfb055f686001bc2e2592fa527efaf38dbe81a6a9563562e57d41"
|
|
334
287
|
dependencies = [
|
|
335
288
|
"anstream",
|
|
336
289
|
"anstyle",
|
|
@@ -340,36 +293,27 @@ dependencies = [
|
|
|
340
293
|
|
|
341
294
|
[[package]]
|
|
342
295
|
name = "clap_derive"
|
|
343
|
-
version = "4.5.
|
|
296
|
+
version = "4.5.45"
|
|
344
297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
-
checksum = "
|
|
298
|
+
checksum = "14cb31bb0a7d536caef2639baa7fad459e15c3144efefa6dbd1c84562c4739f6"
|
|
346
299
|
dependencies = [
|
|
347
300
|
"heck 0.5.0",
|
|
348
301
|
"proc-macro2",
|
|
349
302
|
"quote",
|
|
350
|
-
"syn 2.0.
|
|
303
|
+
"syn 2.0.106",
|
|
351
304
|
]
|
|
352
305
|
|
|
353
306
|
[[package]]
|
|
354
307
|
name = "clap_lex"
|
|
355
|
-
version = "0.7.
|
|
356
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
-
checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
|
|
358
|
-
|
|
359
|
-
[[package]]
|
|
360
|
-
name = "cloudabi"
|
|
361
|
-
version = "0.0.3"
|
|
308
|
+
version = "0.7.5"
|
|
362
309
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
-
checksum = "
|
|
364
|
-
dependencies = [
|
|
365
|
-
"bitflags 1.3.2",
|
|
366
|
-
]
|
|
310
|
+
checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
|
|
367
311
|
|
|
368
312
|
[[package]]
|
|
369
313
|
name = "colorchoice"
|
|
370
|
-
version = "1.0.
|
|
314
|
+
version = "1.0.4"
|
|
371
315
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
-
checksum = "
|
|
316
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
373
317
|
|
|
374
318
|
[[package]]
|
|
375
319
|
name = "console"
|
|
@@ -383,8 +327,8 @@ dependencies = [
|
|
|
383
327
|
"regex",
|
|
384
328
|
"terminal_size",
|
|
385
329
|
"termios",
|
|
386
|
-
"unicode-width 0.1.
|
|
387
|
-
"winapi
|
|
330
|
+
"unicode-width 0.1.14",
|
|
331
|
+
"winapi",
|
|
388
332
|
"winapi-util",
|
|
389
333
|
]
|
|
390
334
|
|
|
@@ -406,7 +350,7 @@ version = "0.1.7"
|
|
|
406
350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
351
|
checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
|
|
408
352
|
dependencies = [
|
|
409
|
-
"cfg-if
|
|
353
|
+
"cfg-if",
|
|
410
354
|
"wasm-bindgen",
|
|
411
355
|
]
|
|
412
356
|
|
|
@@ -429,39 +373,11 @@ dependencies = [
|
|
|
429
373
|
"unicode-segmentation",
|
|
430
374
|
]
|
|
431
375
|
|
|
432
|
-
[[package]]
|
|
433
|
-
name = "cookie"
|
|
434
|
-
version = "0.12.0"
|
|
435
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
436
|
-
checksum = "888604f00b3db336d2af898ec3c1d5d0ddf5e6d462220f2ededc33a87ac4bbd5"
|
|
437
|
-
dependencies = [
|
|
438
|
-
"time 0.1.44",
|
|
439
|
-
"url 1.7.2",
|
|
440
|
-
]
|
|
441
|
-
|
|
442
|
-
[[package]]
|
|
443
|
-
name = "cookie_store"
|
|
444
|
-
version = "0.7.0"
|
|
445
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
-
checksum = "46750b3f362965f197996c4448e4a0935e791bf7d6631bfce9ee0af3d24c919c"
|
|
447
|
-
dependencies = [
|
|
448
|
-
"cookie",
|
|
449
|
-
"failure",
|
|
450
|
-
"idna 0.1.5",
|
|
451
|
-
"log",
|
|
452
|
-
"publicsuffix",
|
|
453
|
-
"serde",
|
|
454
|
-
"serde_json",
|
|
455
|
-
"time 0.1.44",
|
|
456
|
-
"try_from",
|
|
457
|
-
"url 1.7.2",
|
|
458
|
-
]
|
|
459
|
-
|
|
460
376
|
[[package]]
|
|
461
377
|
name = "core-foundation"
|
|
462
|
-
version = "0.9.
|
|
378
|
+
version = "0.9.4"
|
|
463
379
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
464
|
-
checksum = "
|
|
380
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
465
381
|
dependencies = [
|
|
466
382
|
"core-foundation-sys",
|
|
467
383
|
"libc",
|
|
@@ -469,9 +385,9 @@ dependencies = [
|
|
|
469
385
|
|
|
470
386
|
[[package]]
|
|
471
387
|
name = "core-foundation-sys"
|
|
472
|
-
version = "0.8.
|
|
388
|
+
version = "0.8.7"
|
|
473
389
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
-
checksum = "
|
|
390
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
475
391
|
|
|
476
392
|
[[package]]
|
|
477
393
|
name = "countme"
|
|
@@ -479,78 +395,30 @@ version = "3.0.1"
|
|
|
479
395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
396
|
checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
|
|
481
397
|
|
|
482
|
-
[[package]]
|
|
483
|
-
name = "crc32fast"
|
|
484
|
-
version = "1.3.2"
|
|
485
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
-
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
|
|
487
|
-
dependencies = [
|
|
488
|
-
"cfg-if 1.0.0",
|
|
489
|
-
]
|
|
490
|
-
|
|
491
398
|
[[package]]
|
|
492
399
|
name = "crossbeam-channel"
|
|
493
400
|
version = "0.5.15"
|
|
494
401
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
402
|
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
496
403
|
dependencies = [
|
|
497
|
-
"crossbeam-utils
|
|
498
|
-
]
|
|
499
|
-
|
|
500
|
-
[[package]]
|
|
501
|
-
name = "crossbeam-deque"
|
|
502
|
-
version = "0.7.4"
|
|
503
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
-
checksum = "c20ff29ded3204c5106278a81a38f4b482636ed4fa1e6cfbeef193291beb29ed"
|
|
505
|
-
dependencies = [
|
|
506
|
-
"crossbeam-epoch",
|
|
507
|
-
"crossbeam-utils 0.7.2",
|
|
508
|
-
"maybe-uninit",
|
|
509
|
-
]
|
|
510
|
-
|
|
511
|
-
[[package]]
|
|
512
|
-
name = "crossbeam-epoch"
|
|
513
|
-
version = "0.8.2"
|
|
514
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
-
checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"
|
|
516
|
-
dependencies = [
|
|
517
|
-
"autocfg 1.1.0",
|
|
518
|
-
"cfg-if 0.1.10",
|
|
519
|
-
"crossbeam-utils 0.7.2",
|
|
520
|
-
"lazy_static",
|
|
521
|
-
"maybe-uninit",
|
|
522
|
-
"memoffset",
|
|
523
|
-
"scopeguard",
|
|
404
|
+
"crossbeam-utils",
|
|
524
405
|
]
|
|
525
406
|
|
|
526
407
|
[[package]]
|
|
527
|
-
name = "crossbeam-
|
|
528
|
-
version = "0.
|
|
408
|
+
name = "crossbeam-utils"
|
|
409
|
+
version = "0.8.21"
|
|
529
410
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
-
checksum = "
|
|
531
|
-
dependencies = [
|
|
532
|
-
"cfg-if 0.1.10",
|
|
533
|
-
"crossbeam-utils 0.7.2",
|
|
534
|
-
"maybe-uninit",
|
|
535
|
-
]
|
|
411
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
536
412
|
|
|
537
413
|
[[package]]
|
|
538
|
-
name = "
|
|
539
|
-
version = "0.
|
|
414
|
+
name = "deranged"
|
|
415
|
+
version = "0.4.0"
|
|
540
416
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
-
checksum = "
|
|
417
|
+
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
|
|
542
418
|
dependencies = [
|
|
543
|
-
"
|
|
544
|
-
"cfg-if 0.1.10",
|
|
545
|
-
"lazy_static",
|
|
419
|
+
"powerfmt",
|
|
546
420
|
]
|
|
547
421
|
|
|
548
|
-
[[package]]
|
|
549
|
-
name = "crossbeam-utils"
|
|
550
|
-
version = "0.8.21"
|
|
551
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
-
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
553
|
-
|
|
554
422
|
[[package]]
|
|
555
423
|
name = "dir-test"
|
|
556
424
|
version = "0.4.1"
|
|
@@ -569,7 +437,7 @@ dependencies = [
|
|
|
569
437
|
"glob",
|
|
570
438
|
"proc-macro2",
|
|
571
439
|
"quote",
|
|
572
|
-
"syn 2.0.
|
|
440
|
+
"syn 2.0.106",
|
|
573
441
|
]
|
|
574
442
|
|
|
575
443
|
[[package]]
|
|
@@ -580,7 +448,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
580
448
|
dependencies = [
|
|
581
449
|
"proc-macro2",
|
|
582
450
|
"quote",
|
|
583
|
-
"syn 2.0.
|
|
451
|
+
"syn 2.0.106",
|
|
584
452
|
]
|
|
585
453
|
|
|
586
454
|
[[package]]
|
|
@@ -589,17 +457,11 @@ version = "0.1.5"
|
|
|
589
457
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
458
|
checksum = "9bda8e21c04aca2ae33ffc2fd8c23134f3cac46db123ba97bd9d3f3b8a4a85e1"
|
|
591
459
|
|
|
592
|
-
[[package]]
|
|
593
|
-
name = "dtoa"
|
|
594
|
-
version = "0.4.8"
|
|
595
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
|
-
checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
|
|
597
|
-
|
|
598
460
|
[[package]]
|
|
599
461
|
name = "either"
|
|
600
|
-
version = "1.
|
|
462
|
+
version = "1.15.0"
|
|
601
463
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
-
checksum = "
|
|
464
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
603
465
|
|
|
604
466
|
[[package]]
|
|
605
467
|
name = "encode_unicode"
|
|
@@ -615,11 +477,11 @@ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
|
615
477
|
|
|
616
478
|
[[package]]
|
|
617
479
|
name = "encoding_rs"
|
|
618
|
-
version = "0.8.
|
|
480
|
+
version = "0.8.35"
|
|
619
481
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
-
checksum = "
|
|
482
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
621
483
|
dependencies = [
|
|
622
|
-
"cfg-if
|
|
484
|
+
"cfg-if",
|
|
623
485
|
]
|
|
624
486
|
|
|
625
487
|
[[package]]
|
|
@@ -639,7 +501,7 @@ checksum = "a1ab991c1362ac86c61ab6f556cff143daa22e5a15e4e189df818b2fd19fe65b"
|
|
|
639
501
|
dependencies = [
|
|
640
502
|
"proc-macro2",
|
|
641
503
|
"quote",
|
|
642
|
-
"syn 2.0.
|
|
504
|
+
"syn 2.0.106",
|
|
643
505
|
]
|
|
644
506
|
|
|
645
507
|
[[package]]
|
|
@@ -650,44 +512,19 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
|
650
512
|
|
|
651
513
|
[[package]]
|
|
652
514
|
name = "errno"
|
|
653
|
-
version = "0.3.
|
|
515
|
+
version = "0.3.13"
|
|
654
516
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
-
checksum = "
|
|
517
|
+
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
|
|
656
518
|
dependencies = [
|
|
657
519
|
"libc",
|
|
658
|
-
"windows-sys 0.
|
|
659
|
-
]
|
|
660
|
-
|
|
661
|
-
[[package]]
|
|
662
|
-
name = "failure"
|
|
663
|
-
version = "0.1.8"
|
|
664
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
-
checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86"
|
|
666
|
-
dependencies = [
|
|
667
|
-
"backtrace",
|
|
668
|
-
"failure_derive",
|
|
669
|
-
]
|
|
670
|
-
|
|
671
|
-
[[package]]
|
|
672
|
-
name = "failure_derive"
|
|
673
|
-
version = "0.1.8"
|
|
674
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
-
checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4"
|
|
676
|
-
dependencies = [
|
|
677
|
-
"proc-macro2",
|
|
678
|
-
"quote",
|
|
679
|
-
"syn 1.0.109",
|
|
680
|
-
"synstructure 0.12.6",
|
|
520
|
+
"windows-sys 0.60.2",
|
|
681
521
|
]
|
|
682
522
|
|
|
683
523
|
[[package]]
|
|
684
524
|
name = "fastrand"
|
|
685
|
-
version = "
|
|
525
|
+
version = "2.3.0"
|
|
686
526
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
|
-
checksum = "
|
|
688
|
-
dependencies = [
|
|
689
|
-
"instant",
|
|
690
|
-
]
|
|
527
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
691
528
|
|
|
692
529
|
[[package]]
|
|
693
530
|
name = "fixedbitset"
|
|
@@ -695,16 +532,6 @@ version = "0.5.7"
|
|
|
695
532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
533
|
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
697
534
|
|
|
698
|
-
[[package]]
|
|
699
|
-
name = "flate2"
|
|
700
|
-
version = "1.0.24"
|
|
701
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
-
checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
|
|
703
|
-
dependencies = [
|
|
704
|
-
"crc32fast",
|
|
705
|
-
"miniz_oxide",
|
|
706
|
-
]
|
|
707
|
-
|
|
708
535
|
[[package]]
|
|
709
536
|
name = "fnv"
|
|
710
537
|
version = "1.0.7"
|
|
@@ -728,11 +555,11 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
|
728
555
|
|
|
729
556
|
[[package]]
|
|
730
557
|
name = "form_urlencoded"
|
|
731
|
-
version = "1.2.
|
|
558
|
+
version = "1.2.2"
|
|
732
559
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
-
checksum = "
|
|
560
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
734
561
|
dependencies = [
|
|
735
|
-
"percent-encoding
|
|
562
|
+
"percent-encoding",
|
|
736
563
|
]
|
|
737
564
|
|
|
738
565
|
[[package]]
|
|
@@ -741,34 +568,6 @@ version = "1.3.0"
|
|
|
741
568
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
569
|
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
743
570
|
|
|
744
|
-
[[package]]
|
|
745
|
-
name = "fuchsia-cprng"
|
|
746
|
-
version = "0.1.1"
|
|
747
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
-
checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
|
|
749
|
-
|
|
750
|
-
[[package]]
|
|
751
|
-
name = "fuchsia-zircon"
|
|
752
|
-
version = "0.3.3"
|
|
753
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
754
|
-
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
|
|
755
|
-
dependencies = [
|
|
756
|
-
"bitflags 1.3.2",
|
|
757
|
-
"fuchsia-zircon-sys",
|
|
758
|
-
]
|
|
759
|
-
|
|
760
|
-
[[package]]
|
|
761
|
-
name = "fuchsia-zircon-sys"
|
|
762
|
-
version = "0.3.3"
|
|
763
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
-
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
|
|
765
|
-
|
|
766
|
-
[[package]]
|
|
767
|
-
name = "futures"
|
|
768
|
-
version = "0.1.31"
|
|
769
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
-
checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678"
|
|
771
|
-
|
|
772
571
|
[[package]]
|
|
773
572
|
name = "futures-channel"
|
|
774
573
|
version = "0.3.31"
|
|
@@ -776,7 +575,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
776
575
|
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
777
576
|
dependencies = [
|
|
778
577
|
"futures-core",
|
|
779
|
-
"futures-sink",
|
|
780
578
|
]
|
|
781
579
|
|
|
782
580
|
[[package]]
|
|
@@ -785,16 +583,6 @@ version = "0.3.31"
|
|
|
785
583
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
584
|
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
787
585
|
|
|
788
|
-
[[package]]
|
|
789
|
-
name = "futures-cpupool"
|
|
790
|
-
version = "0.1.8"
|
|
791
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
|
-
checksum = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4"
|
|
793
|
-
dependencies = [
|
|
794
|
-
"futures",
|
|
795
|
-
"num_cpus",
|
|
796
|
-
]
|
|
797
|
-
|
|
798
586
|
[[package]]
|
|
799
587
|
name = "futures-io"
|
|
800
588
|
version = "0.3.31"
|
|
@@ -821,7 +609,6 @@ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
|
821
609
|
dependencies = [
|
|
822
610
|
"futures-core",
|
|
823
611
|
"futures-io",
|
|
824
|
-
"futures-sink",
|
|
825
612
|
"futures-task",
|
|
826
613
|
"memchr",
|
|
827
614
|
"pin-project-lite",
|
|
@@ -835,66 +622,56 @@ version = "0.2.16"
|
|
|
835
622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
623
|
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
837
624
|
dependencies = [
|
|
838
|
-
"cfg-if
|
|
625
|
+
"cfg-if",
|
|
626
|
+
"js-sys",
|
|
839
627
|
"libc",
|
|
840
|
-
"wasi 0.11.
|
|
628
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
629
|
+
"wasm-bindgen",
|
|
841
630
|
]
|
|
842
631
|
|
|
843
632
|
[[package]]
|
|
844
|
-
name = "
|
|
845
|
-
version = "0.
|
|
633
|
+
name = "getrandom"
|
|
634
|
+
version = "0.3.3"
|
|
846
635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
-
checksum = "
|
|
636
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
|
637
|
+
dependencies = [
|
|
638
|
+
"cfg-if",
|
|
639
|
+
"libc",
|
|
640
|
+
"r-efi",
|
|
641
|
+
"wasi 0.14.3+wasi-0.2.4",
|
|
642
|
+
]
|
|
848
643
|
|
|
849
644
|
[[package]]
|
|
850
|
-
name = "
|
|
851
|
-
version = "0.
|
|
645
|
+
name = "gimli"
|
|
646
|
+
version = "0.31.1"
|
|
852
647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
853
|
-
checksum = "
|
|
648
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
854
649
|
|
|
855
650
|
[[package]]
|
|
856
|
-
name = "
|
|
857
|
-
version = "0.
|
|
651
|
+
name = "glob"
|
|
652
|
+
version = "0.3.3"
|
|
858
653
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
859
|
-
checksum = "
|
|
860
|
-
dependencies = [
|
|
861
|
-
"byteorder",
|
|
862
|
-
"bytes 0.4.12",
|
|
863
|
-
"fnv",
|
|
864
|
-
"futures",
|
|
865
|
-
"http 0.1.21",
|
|
866
|
-
"indexmap 1.9.1",
|
|
867
|
-
"log",
|
|
868
|
-
"slab",
|
|
869
|
-
"string",
|
|
870
|
-
"tokio-io",
|
|
871
|
-
]
|
|
654
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
872
655
|
|
|
873
656
|
[[package]]
|
|
874
657
|
name = "h2"
|
|
875
|
-
version = "0.
|
|
658
|
+
version = "0.3.27"
|
|
876
659
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
-
checksum = "
|
|
660
|
+
checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
|
|
878
661
|
dependencies = [
|
|
879
|
-
"
|
|
880
|
-
"bytes 1.10.1",
|
|
662
|
+
"bytes",
|
|
881
663
|
"fnv",
|
|
882
664
|
"futures-core",
|
|
883
665
|
"futures-sink",
|
|
884
|
-
"
|
|
885
|
-
"
|
|
666
|
+
"futures-util",
|
|
667
|
+
"http",
|
|
668
|
+
"indexmap",
|
|
886
669
|
"slab",
|
|
887
|
-
"tokio
|
|
670
|
+
"tokio",
|
|
888
671
|
"tokio-util",
|
|
889
672
|
"tracing",
|
|
890
673
|
]
|
|
891
674
|
|
|
892
|
-
[[package]]
|
|
893
|
-
name = "hashbrown"
|
|
894
|
-
version = "0.12.1"
|
|
895
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
|
-
checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3"
|
|
897
|
-
|
|
898
675
|
[[package]]
|
|
899
676
|
name = "hashbrown"
|
|
900
677
|
version = "0.14.5"
|
|
@@ -903,9 +680,9 @@ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
|
903
680
|
|
|
904
681
|
[[package]]
|
|
905
682
|
name = "hashbrown"
|
|
906
|
-
version = "0.15.
|
|
683
|
+
version = "0.15.5"
|
|
907
684
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
-
checksum = "
|
|
685
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
909
686
|
|
|
910
687
|
[[package]]
|
|
911
688
|
name = "heck"
|
|
@@ -933,67 +710,32 @@ dependencies = [
|
|
|
933
710
|
|
|
934
711
|
[[package]]
|
|
935
712
|
name = "home"
|
|
936
|
-
version = "0.5.
|
|
937
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
-
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
|
|
939
|
-
dependencies = [
|
|
940
|
-
"windows-sys 0.52.0",
|
|
941
|
-
]
|
|
942
|
-
|
|
943
|
-
[[package]]
|
|
944
|
-
name = "http"
|
|
945
|
-
version = "0.1.21"
|
|
713
|
+
version = "0.5.11"
|
|
946
714
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
947
|
-
checksum = "
|
|
715
|
+
checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
|
|
948
716
|
dependencies = [
|
|
949
|
-
"
|
|
950
|
-
"fnv",
|
|
951
|
-
"itoa 0.4.8",
|
|
717
|
+
"windows-sys 0.59.0",
|
|
952
718
|
]
|
|
953
719
|
|
|
954
720
|
[[package]]
|
|
955
721
|
name = "http"
|
|
956
|
-
version = "
|
|
722
|
+
version = "0.2.12"
|
|
957
723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
958
|
-
checksum = "
|
|
724
|
+
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
959
725
|
dependencies = [
|
|
960
|
-
"bytes
|
|
726
|
+
"bytes",
|
|
961
727
|
"fnv",
|
|
962
|
-
"itoa
|
|
963
|
-
]
|
|
964
|
-
|
|
965
|
-
[[package]]
|
|
966
|
-
name = "http-body"
|
|
967
|
-
version = "0.1.0"
|
|
968
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
-
checksum = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d"
|
|
970
|
-
dependencies = [
|
|
971
|
-
"bytes 0.4.12",
|
|
972
|
-
"futures",
|
|
973
|
-
"http 0.1.21",
|
|
974
|
-
"tokio-buf",
|
|
728
|
+
"itoa",
|
|
975
729
|
]
|
|
976
730
|
|
|
977
731
|
[[package]]
|
|
978
732
|
name = "http-body"
|
|
979
|
-
version = "
|
|
980
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
-
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
982
|
-
dependencies = [
|
|
983
|
-
"bytes 1.10.1",
|
|
984
|
-
"http 1.3.1",
|
|
985
|
-
]
|
|
986
|
-
|
|
987
|
-
[[package]]
|
|
988
|
-
name = "http-body-util"
|
|
989
|
-
version = "0.1.3"
|
|
733
|
+
version = "0.4.6"
|
|
990
734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
-
checksum = "
|
|
735
|
+
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
992
736
|
dependencies = [
|
|
993
|
-
"bytes
|
|
994
|
-
"
|
|
995
|
-
"http 1.3.1",
|
|
996
|
-
"http-body 1.0.1",
|
|
737
|
+
"bytes",
|
|
738
|
+
"http",
|
|
997
739
|
"pin-project-lite",
|
|
998
740
|
]
|
|
999
741
|
|
|
@@ -1004,138 +746,66 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1004
746
|
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1005
747
|
|
|
1006
748
|
[[package]]
|
|
1007
|
-
name = "
|
|
1008
|
-
version = "0.
|
|
749
|
+
name = "httpdate"
|
|
750
|
+
version = "1.0.3"
|
|
1009
751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
|
-
checksum = "
|
|
1011
|
-
dependencies = [
|
|
1012
|
-
"bytes 0.4.12",
|
|
1013
|
-
"futures",
|
|
1014
|
-
"futures-cpupool",
|
|
1015
|
-
"h2 0.1.26",
|
|
1016
|
-
"http 0.1.21",
|
|
1017
|
-
"http-body 0.1.0",
|
|
1018
|
-
"httparse",
|
|
1019
|
-
"iovec",
|
|
1020
|
-
"itoa 0.4.8",
|
|
1021
|
-
"log",
|
|
1022
|
-
"net2",
|
|
1023
|
-
"rustc_version",
|
|
1024
|
-
"time 0.1.44",
|
|
1025
|
-
"tokio 0.1.22",
|
|
1026
|
-
"tokio-buf",
|
|
1027
|
-
"tokio-executor",
|
|
1028
|
-
"tokio-io",
|
|
1029
|
-
"tokio-reactor",
|
|
1030
|
-
"tokio-tcp",
|
|
1031
|
-
"tokio-threadpool",
|
|
1032
|
-
"tokio-timer",
|
|
1033
|
-
"want 0.2.0",
|
|
1034
|
-
]
|
|
752
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
1035
753
|
|
|
1036
754
|
[[package]]
|
|
1037
755
|
name = "hyper"
|
|
1038
|
-
version = "
|
|
756
|
+
version = "0.14.32"
|
|
1039
757
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
-
checksum = "
|
|
758
|
+
checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
|
|
1041
759
|
dependencies = [
|
|
1042
|
-
"bytes
|
|
760
|
+
"bytes",
|
|
1043
761
|
"futures-channel",
|
|
762
|
+
"futures-core",
|
|
1044
763
|
"futures-util",
|
|
1045
|
-
"h2
|
|
1046
|
-
"http
|
|
1047
|
-
"http-body
|
|
764
|
+
"h2",
|
|
765
|
+
"http",
|
|
766
|
+
"http-body",
|
|
1048
767
|
"httparse",
|
|
1049
|
-
"
|
|
768
|
+
"httpdate",
|
|
769
|
+
"itoa",
|
|
1050
770
|
"pin-project-lite",
|
|
1051
|
-
"
|
|
1052
|
-
"tokio
|
|
1053
|
-
"want 0.3.1",
|
|
1054
|
-
]
|
|
1055
|
-
|
|
1056
|
-
[[package]]
|
|
1057
|
-
name = "hyper-rustls"
|
|
1058
|
-
version = "0.27.5"
|
|
1059
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
-
checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
|
|
1061
|
-
dependencies = [
|
|
1062
|
-
"futures-util",
|
|
1063
|
-
"http 1.3.1",
|
|
1064
|
-
"hyper 1.6.0",
|
|
1065
|
-
"hyper-util",
|
|
1066
|
-
"rustls",
|
|
1067
|
-
"rustls-pki-types",
|
|
1068
|
-
"tokio 1.44.2",
|
|
1069
|
-
"tokio-rustls",
|
|
771
|
+
"socket2 0.5.10",
|
|
772
|
+
"tokio",
|
|
1070
773
|
"tower-service",
|
|
774
|
+
"tracing",
|
|
775
|
+
"want",
|
|
1071
776
|
]
|
|
1072
777
|
|
|
1073
778
|
[[package]]
|
|
1074
779
|
name = "hyper-tls"
|
|
1075
|
-
version = "0.
|
|
1076
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
-
checksum = "3a800d6aa50af4b5850b2b0f659625ce9504df908e9733b635720483be26174f"
|
|
1078
|
-
dependencies = [
|
|
1079
|
-
"bytes 0.4.12",
|
|
1080
|
-
"futures",
|
|
1081
|
-
"hyper 0.12.36",
|
|
1082
|
-
"native-tls",
|
|
1083
|
-
"tokio-io",
|
|
1084
|
-
]
|
|
1085
|
-
|
|
1086
|
-
[[package]]
|
|
1087
|
-
name = "hyper-tls"
|
|
1088
|
-
version = "0.6.0"
|
|
780
|
+
version = "0.5.0"
|
|
1089
781
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
-
checksum = "
|
|
782
|
+
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
|
|
1091
783
|
dependencies = [
|
|
1092
|
-
"bytes
|
|
1093
|
-
"
|
|
1094
|
-
"hyper 1.6.0",
|
|
1095
|
-
"hyper-util",
|
|
784
|
+
"bytes",
|
|
785
|
+
"hyper",
|
|
1096
786
|
"native-tls",
|
|
1097
|
-
"tokio
|
|
787
|
+
"tokio",
|
|
1098
788
|
"tokio-native-tls",
|
|
1099
|
-
"tower-service",
|
|
1100
|
-
]
|
|
1101
|
-
|
|
1102
|
-
[[package]]
|
|
1103
|
-
name = "hyper-util"
|
|
1104
|
-
version = "0.1.11"
|
|
1105
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
-
checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
|
|
1107
|
-
dependencies = [
|
|
1108
|
-
"bytes 1.10.1",
|
|
1109
|
-
"futures-channel",
|
|
1110
|
-
"futures-util",
|
|
1111
|
-
"http 1.3.1",
|
|
1112
|
-
"http-body 1.0.1",
|
|
1113
|
-
"hyper 1.6.0",
|
|
1114
|
-
"libc",
|
|
1115
|
-
"pin-project-lite",
|
|
1116
|
-
"socket2",
|
|
1117
|
-
"tokio 1.44.2",
|
|
1118
|
-
"tower-service",
|
|
1119
|
-
"tracing",
|
|
1120
789
|
]
|
|
1121
790
|
|
|
1122
791
|
[[package]]
|
|
1123
792
|
name = "icu_collections"
|
|
1124
|
-
version = "
|
|
793
|
+
version = "2.0.0"
|
|
1125
794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1126
|
-
checksum = "
|
|
795
|
+
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
|
|
1127
796
|
dependencies = [
|
|
1128
797
|
"displaydoc",
|
|
798
|
+
"potential_utf",
|
|
1129
799
|
"yoke",
|
|
1130
800
|
"zerofrom",
|
|
1131
801
|
"zerovec",
|
|
1132
802
|
]
|
|
1133
803
|
|
|
1134
804
|
[[package]]
|
|
1135
|
-
name = "
|
|
1136
|
-
version = "
|
|
805
|
+
name = "icu_locale_core"
|
|
806
|
+
version = "2.0.0"
|
|
1137
807
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
-
checksum = "
|
|
808
|
+
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
|
|
1139
809
|
dependencies = [
|
|
1140
810
|
"displaydoc",
|
|
1141
811
|
"litemap",
|
|
@@ -1145,136 +815,81 @@ dependencies = [
|
|
|
1145
815
|
]
|
|
1146
816
|
|
|
1147
817
|
[[package]]
|
|
1148
|
-
name = "
|
|
1149
|
-
version = "
|
|
818
|
+
name = "icu_normalizer"
|
|
819
|
+
version = "2.0.0"
|
|
1150
820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
-
checksum = "
|
|
821
|
+
checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
|
|
1152
822
|
dependencies = [
|
|
1153
823
|
"displaydoc",
|
|
1154
|
-
"
|
|
1155
|
-
"
|
|
824
|
+
"icu_collections",
|
|
825
|
+
"icu_normalizer_data",
|
|
826
|
+
"icu_properties",
|
|
1156
827
|
"icu_provider",
|
|
1157
|
-
"
|
|
828
|
+
"smallvec",
|
|
1158
829
|
"zerovec",
|
|
1159
830
|
]
|
|
1160
831
|
|
|
1161
832
|
[[package]]
|
|
1162
|
-
name = "
|
|
1163
|
-
version = "
|
|
833
|
+
name = "icu_normalizer_data"
|
|
834
|
+
version = "2.0.0"
|
|
1164
835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
-
checksum = "
|
|
836
|
+
checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
|
|
1166
837
|
|
|
1167
838
|
[[package]]
|
|
1168
|
-
name = "
|
|
1169
|
-
version = "
|
|
839
|
+
name = "icu_properties"
|
|
840
|
+
version = "2.0.1"
|
|
1170
841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1171
|
-
checksum = "
|
|
842
|
+
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
|
|
1172
843
|
dependencies = [
|
|
1173
844
|
"displaydoc",
|
|
1174
845
|
"icu_collections",
|
|
1175
|
-
"
|
|
1176
|
-
"
|
|
846
|
+
"icu_locale_core",
|
|
847
|
+
"icu_properties_data",
|
|
1177
848
|
"icu_provider",
|
|
1178
|
-
"
|
|
1179
|
-
"
|
|
1180
|
-
"utf8_iter",
|
|
1181
|
-
"write16",
|
|
1182
|
-
"zerovec",
|
|
1183
|
-
]
|
|
1184
|
-
|
|
1185
|
-
[[package]]
|
|
1186
|
-
name = "icu_normalizer_data"
|
|
1187
|
-
version = "1.5.1"
|
|
1188
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
|
-
checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
|
|
1190
|
-
|
|
1191
|
-
[[package]]
|
|
1192
|
-
name = "icu_properties"
|
|
1193
|
-
version = "1.5.1"
|
|
1194
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1195
|
-
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
|
1196
|
-
dependencies = [
|
|
1197
|
-
"displaydoc",
|
|
1198
|
-
"icu_collections",
|
|
1199
|
-
"icu_locid_transform",
|
|
1200
|
-
"icu_properties_data",
|
|
1201
|
-
"icu_provider",
|
|
1202
|
-
"tinystr",
|
|
849
|
+
"potential_utf",
|
|
850
|
+
"zerotrie",
|
|
1203
851
|
"zerovec",
|
|
1204
852
|
]
|
|
1205
853
|
|
|
1206
854
|
[[package]]
|
|
1207
855
|
name = "icu_properties_data"
|
|
1208
|
-
version = "
|
|
856
|
+
version = "2.0.1"
|
|
1209
857
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1210
|
-
checksum = "
|
|
858
|
+
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
|
|
1211
859
|
|
|
1212
860
|
[[package]]
|
|
1213
861
|
name = "icu_provider"
|
|
1214
|
-
version = "
|
|
862
|
+
version = "2.0.0"
|
|
1215
863
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1216
|
-
checksum = "
|
|
864
|
+
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
|
|
1217
865
|
dependencies = [
|
|
1218
866
|
"displaydoc",
|
|
1219
|
-
"
|
|
1220
|
-
"icu_provider_macros",
|
|
867
|
+
"icu_locale_core",
|
|
1221
868
|
"stable_deref_trait",
|
|
1222
869
|
"tinystr",
|
|
1223
870
|
"writeable",
|
|
1224
871
|
"yoke",
|
|
1225
872
|
"zerofrom",
|
|
873
|
+
"zerotrie",
|
|
1226
874
|
"zerovec",
|
|
1227
875
|
]
|
|
1228
876
|
|
|
1229
|
-
[[package]]
|
|
1230
|
-
name = "icu_provider_macros"
|
|
1231
|
-
version = "1.5.0"
|
|
1232
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1233
|
-
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
1234
|
-
dependencies = [
|
|
1235
|
-
"proc-macro2",
|
|
1236
|
-
"quote",
|
|
1237
|
-
"syn 2.0.101",
|
|
1238
|
-
]
|
|
1239
|
-
|
|
1240
|
-
[[package]]
|
|
1241
|
-
name = "idna"
|
|
1242
|
-
version = "0.1.5"
|
|
1243
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1244
|
-
checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e"
|
|
1245
|
-
dependencies = [
|
|
1246
|
-
"matches",
|
|
1247
|
-
"unicode-bidi",
|
|
1248
|
-
"unicode-normalization",
|
|
1249
|
-
]
|
|
1250
|
-
|
|
1251
|
-
[[package]]
|
|
1252
|
-
name = "idna"
|
|
1253
|
-
version = "0.2.3"
|
|
1254
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
|
-
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
|
|
1256
|
-
dependencies = [
|
|
1257
|
-
"matches",
|
|
1258
|
-
"unicode-bidi",
|
|
1259
|
-
"unicode-normalization",
|
|
1260
|
-
]
|
|
1261
|
-
|
|
1262
877
|
[[package]]
|
|
1263
878
|
name = "idna"
|
|
1264
|
-
version = "1.0
|
|
879
|
+
version = "1.1.0"
|
|
1265
880
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1266
|
-
checksum = "
|
|
881
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1267
882
|
dependencies = [
|
|
1268
883
|
"idna_adapter",
|
|
1269
|
-
"smallvec
|
|
884
|
+
"smallvec",
|
|
1270
885
|
"utf8_iter",
|
|
1271
886
|
]
|
|
1272
887
|
|
|
1273
888
|
[[package]]
|
|
1274
889
|
name = "idna_adapter"
|
|
1275
|
-
version = "1.2.
|
|
890
|
+
version = "1.2.1"
|
|
1276
891
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1277
|
-
checksum = "
|
|
892
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1278
893
|
dependencies = [
|
|
1279
894
|
"icu_normalizer",
|
|
1280
895
|
"icu_properties",
|
|
@@ -1282,22 +897,12 @@ dependencies = [
|
|
|
1282
897
|
|
|
1283
898
|
[[package]]
|
|
1284
899
|
name = "indexmap"
|
|
1285
|
-
version = "
|
|
1286
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1287
|
-
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
|
|
1288
|
-
dependencies = [
|
|
1289
|
-
"autocfg 1.1.0",
|
|
1290
|
-
"hashbrown 0.12.1",
|
|
1291
|
-
]
|
|
1292
|
-
|
|
1293
|
-
[[package]]
|
|
1294
|
-
name = "indexmap"
|
|
1295
|
-
version = "2.9.0"
|
|
900
|
+
version = "2.11.0"
|
|
1296
901
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1297
|
-
checksum = "
|
|
902
|
+
checksum = "f2481980430f9f78649238835720ddccc57e52df14ffce1c6f37391d61b563e9"
|
|
1298
903
|
dependencies = [
|
|
1299
904
|
"equivalent",
|
|
1300
|
-
"hashbrown 0.15.
|
|
905
|
+
"hashbrown 0.15.5",
|
|
1301
906
|
]
|
|
1302
907
|
|
|
1303
908
|
[[package]]
|
|
@@ -1312,20 +917,13 @@ dependencies = [
|
|
|
1312
917
|
]
|
|
1313
918
|
|
|
1314
919
|
[[package]]
|
|
1315
|
-
name = "
|
|
1316
|
-
version = "0.
|
|
1317
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1318
|
-
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
|
1319
|
-
dependencies = [
|
|
1320
|
-
"cfg-if 1.0.0",
|
|
1321
|
-
]
|
|
1322
|
-
|
|
1323
|
-
[[package]]
|
|
1324
|
-
name = "iovec"
|
|
1325
|
-
version = "0.1.4"
|
|
920
|
+
name = "io-uring"
|
|
921
|
+
version = "0.7.10"
|
|
1326
922
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1327
|
-
checksum = "
|
|
923
|
+
checksum = "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b"
|
|
1328
924
|
dependencies = [
|
|
925
|
+
"bitflags 2.9.3",
|
|
926
|
+
"cfg-if",
|
|
1329
927
|
"libc",
|
|
1330
928
|
]
|
|
1331
929
|
|
|
@@ -1361,15 +959,9 @@ dependencies = [
|
|
|
1361
959
|
|
|
1362
960
|
[[package]]
|
|
1363
961
|
name = "itoa"
|
|
1364
|
-
version = "0.
|
|
1365
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1366
|
-
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
|
|
1367
|
-
|
|
1368
|
-
[[package]]
|
|
1369
|
-
name = "itoa"
|
|
1370
|
-
version = "1.0.2"
|
|
962
|
+
version = "1.0.15"
|
|
1371
963
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1372
|
-
checksum = "
|
|
964
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
1373
965
|
|
|
1374
966
|
[[package]]
|
|
1375
967
|
name = "js-sys"
|
|
@@ -1383,28 +975,19 @@ dependencies = [
|
|
|
1383
975
|
|
|
1384
976
|
[[package]]
|
|
1385
977
|
name = "jsonwebtoken"
|
|
1386
|
-
version = "
|
|
978
|
+
version = "9.3.1"
|
|
1387
979
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1388
|
-
checksum = "
|
|
980
|
+
checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde"
|
|
1389
981
|
dependencies = [
|
|
1390
|
-
"base64 0.
|
|
982
|
+
"base64 0.22.1",
|
|
983
|
+
"js-sys",
|
|
1391
984
|
"pem",
|
|
1392
|
-
"ring
|
|
985
|
+
"ring",
|
|
1393
986
|
"serde",
|
|
1394
987
|
"serde_json",
|
|
1395
988
|
"simple_asn1",
|
|
1396
989
|
]
|
|
1397
990
|
|
|
1398
|
-
[[package]]
|
|
1399
|
-
name = "kernel32-sys"
|
|
1400
|
-
version = "0.2.2"
|
|
1401
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1402
|
-
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
|
|
1403
|
-
dependencies = [
|
|
1404
|
-
"winapi 0.2.8",
|
|
1405
|
-
"winapi-build",
|
|
1406
|
-
]
|
|
1407
|
-
|
|
1408
991
|
[[package]]
|
|
1409
992
|
name = "lazy_static"
|
|
1410
993
|
version = "1.5.0"
|
|
@@ -1419,18 +1002,18 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
|
1419
1002
|
|
|
1420
1003
|
[[package]]
|
|
1421
1004
|
name = "libc"
|
|
1422
|
-
version = "0.2.
|
|
1005
|
+
version = "0.2.175"
|
|
1423
1006
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1424
|
-
checksum = "
|
|
1007
|
+
checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
|
|
1425
1008
|
|
|
1426
1009
|
[[package]]
|
|
1427
1010
|
name = "libloading"
|
|
1428
|
-
version = "0.8.
|
|
1011
|
+
version = "0.8.8"
|
|
1429
1012
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1430
|
-
checksum = "
|
|
1013
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
|
1431
1014
|
dependencies = [
|
|
1432
|
-
"cfg-if
|
|
1433
|
-
"windows-targets 0.
|
|
1015
|
+
"cfg-if",
|
|
1016
|
+
"windows-targets 0.53.3",
|
|
1434
1017
|
]
|
|
1435
1018
|
|
|
1436
1019
|
[[package]]
|
|
@@ -1445,24 +1028,21 @@ dependencies = [
|
|
|
1445
1028
|
|
|
1446
1029
|
[[package]]
|
|
1447
1030
|
name = "linux-raw-sys"
|
|
1448
|
-
version = "0.4.
|
|
1031
|
+
version = "0.4.15"
|
|
1449
1032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1450
|
-
checksum = "
|
|
1033
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1451
1034
|
|
|
1452
1035
|
[[package]]
|
|
1453
|
-
name = "
|
|
1454
|
-
version = "0.
|
|
1036
|
+
name = "linux-raw-sys"
|
|
1037
|
+
version = "0.9.4"
|
|
1455
1038
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1456
|
-
checksum = "
|
|
1039
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
1457
1040
|
|
|
1458
1041
|
[[package]]
|
|
1459
|
-
name = "
|
|
1460
|
-
version = "0.
|
|
1042
|
+
name = "litemap"
|
|
1043
|
+
version = "0.8.0"
|
|
1461
1044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1462
|
-
checksum = "
|
|
1463
|
-
dependencies = [
|
|
1464
|
-
"scopeguard",
|
|
1465
|
-
]
|
|
1045
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
|
1466
1046
|
|
|
1467
1047
|
[[package]]
|
|
1468
1048
|
name = "log"
|
|
@@ -1472,9 +1052,9 @@ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
|
1472
1052
|
|
|
1473
1053
|
[[package]]
|
|
1474
1054
|
name = "lsp-server"
|
|
1475
|
-
version = "0.7.
|
|
1055
|
+
version = "0.7.9"
|
|
1476
1056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1477
|
-
checksum = "
|
|
1057
|
+
checksum = "7d6ada348dbc2703cbe7637b2dda05cff84d3da2819c24abcb305dd613e0ba2e"
|
|
1478
1058
|
dependencies = [
|
|
1479
1059
|
"crossbeam-channel",
|
|
1480
1060
|
"log",
|
|
@@ -1493,51 +1073,29 @@ dependencies = [
|
|
|
1493
1073
|
"serde",
|
|
1494
1074
|
"serde_json",
|
|
1495
1075
|
"serde_repr",
|
|
1496
|
-
"url
|
|
1076
|
+
"url",
|
|
1497
1077
|
]
|
|
1498
1078
|
|
|
1499
|
-
[[package]]
|
|
1500
|
-
name = "matches"
|
|
1501
|
-
version = "0.1.9"
|
|
1502
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1503
|
-
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
|
|
1504
|
-
|
|
1505
|
-
[[package]]
|
|
1506
|
-
name = "maybe-uninit"
|
|
1507
|
-
version = "2.0.0"
|
|
1508
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1509
|
-
checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
|
|
1510
|
-
|
|
1511
1079
|
[[package]]
|
|
1512
1080
|
name = "memchr"
|
|
1513
|
-
version = "2.7.
|
|
1081
|
+
version = "2.7.5"
|
|
1514
1082
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1515
|
-
checksum = "
|
|
1083
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
|
1516
1084
|
|
|
1517
1085
|
[[package]]
|
|
1518
1086
|
name = "memoffset"
|
|
1519
|
-
version = "0.
|
|
1087
|
+
version = "0.9.1"
|
|
1520
1088
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
-
checksum = "
|
|
1089
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1522
1090
|
dependencies = [
|
|
1523
|
-
"autocfg
|
|
1091
|
+
"autocfg",
|
|
1524
1092
|
]
|
|
1525
1093
|
|
|
1526
1094
|
[[package]]
|
|
1527
1095
|
name = "mime"
|
|
1528
|
-
version = "0.3.
|
|
1096
|
+
version = "0.3.17"
|
|
1529
1097
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1530
|
-
checksum = "
|
|
1531
|
-
|
|
1532
|
-
[[package]]
|
|
1533
|
-
name = "mime_guess"
|
|
1534
|
-
version = "2.0.4"
|
|
1535
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1536
|
-
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
|
|
1537
|
-
dependencies = [
|
|
1538
|
-
"mime",
|
|
1539
|
-
"unicase",
|
|
1540
|
-
]
|
|
1098
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1541
1099
|
|
|
1542
1100
|
[[package]]
|
|
1543
1101
|
name = "minicov"
|
|
@@ -1557,68 +1115,36 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
1557
1115
|
|
|
1558
1116
|
[[package]]
|
|
1559
1117
|
name = "miniz_oxide"
|
|
1560
|
-
version = "0.
|
|
1561
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
-
checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
|
|
1563
|
-
dependencies = [
|
|
1564
|
-
"adler",
|
|
1565
|
-
]
|
|
1566
|
-
|
|
1567
|
-
[[package]]
|
|
1568
|
-
name = "mio"
|
|
1569
|
-
version = "0.6.23"
|
|
1118
|
+
version = "0.8.9"
|
|
1570
1119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1571
|
-
checksum = "
|
|
1120
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1572
1121
|
dependencies = [
|
|
1573
|
-
"
|
|
1574
|
-
"fuchsia-zircon",
|
|
1575
|
-
"fuchsia-zircon-sys",
|
|
1576
|
-
"iovec",
|
|
1577
|
-
"kernel32-sys",
|
|
1578
|
-
"libc",
|
|
1579
|
-
"log",
|
|
1580
|
-
"miow",
|
|
1581
|
-
"net2",
|
|
1582
|
-
"slab",
|
|
1583
|
-
"winapi 0.2.8",
|
|
1122
|
+
"adler2",
|
|
1584
1123
|
]
|
|
1585
1124
|
|
|
1586
1125
|
[[package]]
|
|
1587
1126
|
name = "mio"
|
|
1588
|
-
version = "1.0.
|
|
1127
|
+
version = "1.0.4"
|
|
1589
1128
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1590
|
-
checksum = "
|
|
1129
|
+
checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
|
|
1591
1130
|
dependencies = [
|
|
1592
1131
|
"libc",
|
|
1593
|
-
"wasi 0.11.
|
|
1594
|
-
"windows-sys 0.
|
|
1595
|
-
]
|
|
1596
|
-
|
|
1597
|
-
[[package]]
|
|
1598
|
-
name = "miow"
|
|
1599
|
-
version = "0.2.2"
|
|
1600
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1601
|
-
checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
|
|
1602
|
-
dependencies = [
|
|
1603
|
-
"kernel32-sys",
|
|
1604
|
-
"net2",
|
|
1605
|
-
"winapi 0.2.8",
|
|
1606
|
-
"ws2_32-sys",
|
|
1132
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
1133
|
+
"windows-sys 0.59.0",
|
|
1607
1134
|
]
|
|
1608
1135
|
|
|
1609
1136
|
[[package]]
|
|
1610
1137
|
name = "multimap"
|
|
1611
|
-
version = "0.10.
|
|
1138
|
+
version = "0.10.1"
|
|
1612
1139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1613
|
-
checksum = "
|
|
1140
|
+
checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
|
|
1614
1141
|
|
|
1615
1142
|
[[package]]
|
|
1616
1143
|
name = "native-tls"
|
|
1617
|
-
version = "0.2.
|
|
1144
|
+
version = "0.2.14"
|
|
1618
1145
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
|
-
checksum = "
|
|
1146
|
+
checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
|
|
1620
1147
|
dependencies = [
|
|
1621
|
-
"lazy_static",
|
|
1622
1148
|
"libc",
|
|
1623
1149
|
"log",
|
|
1624
1150
|
"openssl",
|
|
@@ -1630,17 +1156,6 @@ dependencies = [
|
|
|
1630
1156
|
"tempfile",
|
|
1631
1157
|
]
|
|
1632
1158
|
|
|
1633
|
-
[[package]]
|
|
1634
|
-
name = "net2"
|
|
1635
|
-
version = "0.2.37"
|
|
1636
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1637
|
-
checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
|
|
1638
|
-
dependencies = [
|
|
1639
|
-
"cfg-if 0.1.10",
|
|
1640
|
-
"libc",
|
|
1641
|
-
"winapi 0.3.9",
|
|
1642
|
-
]
|
|
1643
|
-
|
|
1644
1159
|
[[package]]
|
|
1645
1160
|
name = "nohash-hasher"
|
|
1646
1161
|
version = "0.2.0"
|
|
@@ -1659,58 +1174,52 @@ dependencies = [
|
|
|
1659
1174
|
|
|
1660
1175
|
[[package]]
|
|
1661
1176
|
name = "num-bigint"
|
|
1662
|
-
version = "0.4.
|
|
1177
|
+
version = "0.4.6"
|
|
1663
1178
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1664
|
-
checksum = "
|
|
1179
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
1665
1180
|
dependencies = [
|
|
1666
|
-
"autocfg 1.1.0",
|
|
1667
1181
|
"num-integer",
|
|
1668
1182
|
"num-traits",
|
|
1669
1183
|
]
|
|
1670
1184
|
|
|
1671
1185
|
[[package]]
|
|
1672
|
-
name = "num-
|
|
1673
|
-
version = "0.1.
|
|
1186
|
+
name = "num-conv"
|
|
1187
|
+
version = "0.1.0"
|
|
1674
1188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1675
|
-
checksum = "
|
|
1676
|
-
dependencies = [
|
|
1677
|
-
"autocfg 1.1.0",
|
|
1678
|
-
"num-traits",
|
|
1679
|
-
]
|
|
1189
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
1680
1190
|
|
|
1681
1191
|
[[package]]
|
|
1682
|
-
name = "num-
|
|
1683
|
-
version = "0.
|
|
1192
|
+
name = "num-integer"
|
|
1193
|
+
version = "0.1.46"
|
|
1684
1194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1685
|
-
checksum = "
|
|
1195
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1686
1196
|
dependencies = [
|
|
1687
|
-
"
|
|
1197
|
+
"num-traits",
|
|
1688
1198
|
]
|
|
1689
1199
|
|
|
1690
1200
|
[[package]]
|
|
1691
|
-
name = "
|
|
1692
|
-
version = "
|
|
1201
|
+
name = "num-traits"
|
|
1202
|
+
version = "0.2.19"
|
|
1693
1203
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1694
|
-
checksum = "
|
|
1204
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1695
1205
|
dependencies = [
|
|
1696
|
-
"
|
|
1697
|
-
"libc",
|
|
1206
|
+
"autocfg",
|
|
1698
1207
|
]
|
|
1699
1208
|
|
|
1700
1209
|
[[package]]
|
|
1701
1210
|
name = "num_threads"
|
|
1702
|
-
version = "0.1.
|
|
1211
|
+
version = "0.1.7"
|
|
1703
1212
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
-
checksum = "
|
|
1213
|
+
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
|
|
1705
1214
|
dependencies = [
|
|
1706
1215
|
"libc",
|
|
1707
1216
|
]
|
|
1708
1217
|
|
|
1709
1218
|
[[package]]
|
|
1710
1219
|
name = "object"
|
|
1711
|
-
version = "0.
|
|
1220
|
+
version = "0.36.7"
|
|
1712
1221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1713
|
-
checksum = "
|
|
1222
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
1714
1223
|
dependencies = [
|
|
1715
1224
|
"memchr",
|
|
1716
1225
|
]
|
|
@@ -1721,14 +1230,20 @@ version = "1.21.3"
|
|
|
1721
1230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1722
1231
|
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1723
1232
|
|
|
1233
|
+
[[package]]
|
|
1234
|
+
name = "once_cell_polyfill"
|
|
1235
|
+
version = "1.70.1"
|
|
1236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1237
|
+
checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
|
|
1238
|
+
|
|
1724
1239
|
[[package]]
|
|
1725
1240
|
name = "openssl"
|
|
1726
|
-
version = "0.10.
|
|
1241
|
+
version = "0.10.73"
|
|
1727
1242
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1728
|
-
checksum = "
|
|
1243
|
+
checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8"
|
|
1729
1244
|
dependencies = [
|
|
1730
|
-
"bitflags
|
|
1731
|
-
"cfg-if
|
|
1245
|
+
"bitflags 2.9.3",
|
|
1246
|
+
"cfg-if",
|
|
1732
1247
|
"foreign-types",
|
|
1733
1248
|
"libc",
|
|
1734
1249
|
"once_cell",
|
|
@@ -1738,37 +1253,36 @@ dependencies = [
|
|
|
1738
1253
|
|
|
1739
1254
|
[[package]]
|
|
1740
1255
|
name = "openssl-macros"
|
|
1741
|
-
version = "0.1.
|
|
1256
|
+
version = "0.1.1"
|
|
1742
1257
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1743
|
-
checksum = "
|
|
1258
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
1744
1259
|
dependencies = [
|
|
1745
1260
|
"proc-macro2",
|
|
1746
1261
|
"quote",
|
|
1747
|
-
"syn
|
|
1262
|
+
"syn 2.0.106",
|
|
1748
1263
|
]
|
|
1749
1264
|
|
|
1750
1265
|
[[package]]
|
|
1751
1266
|
name = "openssl-probe"
|
|
1752
|
-
version = "0.1.
|
|
1267
|
+
version = "0.1.6"
|
|
1753
1268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1754
|
-
checksum = "
|
|
1269
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1755
1270
|
|
|
1756
1271
|
[[package]]
|
|
1757
1272
|
name = "openssl-src"
|
|
1758
|
-
version = "
|
|
1273
|
+
version = "300.5.2+3.5.2"
|
|
1759
1274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1760
|
-
checksum = "
|
|
1275
|
+
checksum = "d270b79e2926f5150189d475bc7e9d2c69f9c4697b185fa917d5a32b792d21b4"
|
|
1761
1276
|
dependencies = [
|
|
1762
1277
|
"cc",
|
|
1763
1278
|
]
|
|
1764
1279
|
|
|
1765
1280
|
[[package]]
|
|
1766
1281
|
name = "openssl-sys"
|
|
1767
|
-
version = "0.9.
|
|
1282
|
+
version = "0.9.109"
|
|
1768
1283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1769
|
-
checksum = "
|
|
1284
|
+
checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571"
|
|
1770
1285
|
dependencies = [
|
|
1771
|
-
"autocfg 1.1.0",
|
|
1772
1286
|
"cc",
|
|
1773
1287
|
"libc",
|
|
1774
1288
|
"openssl-src",
|
|
@@ -1776,32 +1290,6 @@ dependencies = [
|
|
|
1776
1290
|
"vcpkg",
|
|
1777
1291
|
]
|
|
1778
1292
|
|
|
1779
|
-
[[package]]
|
|
1780
|
-
name = "parking_lot"
|
|
1781
|
-
version = "0.9.0"
|
|
1782
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1783
|
-
checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252"
|
|
1784
|
-
dependencies = [
|
|
1785
|
-
"lock_api",
|
|
1786
|
-
"parking_lot_core",
|
|
1787
|
-
"rustc_version",
|
|
1788
|
-
]
|
|
1789
|
-
|
|
1790
|
-
[[package]]
|
|
1791
|
-
name = "parking_lot_core"
|
|
1792
|
-
version = "0.6.2"
|
|
1793
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1794
|
-
checksum = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b"
|
|
1795
|
-
dependencies = [
|
|
1796
|
-
"cfg-if 0.1.10",
|
|
1797
|
-
"cloudabi",
|
|
1798
|
-
"libc",
|
|
1799
|
-
"redox_syscall 0.1.57",
|
|
1800
|
-
"rustc_version",
|
|
1801
|
-
"smallvec 0.6.14",
|
|
1802
|
-
"winapi 0.3.9",
|
|
1803
|
-
]
|
|
1804
|
-
|
|
1805
1293
|
[[package]]
|
|
1806
1294
|
name = "peeking_take_while"
|
|
1807
1295
|
version = "0.1.2"
|
|
@@ -1810,24 +1298,19 @@ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
|
|
1810
1298
|
|
|
1811
1299
|
[[package]]
|
|
1812
1300
|
name = "pem"
|
|
1813
|
-
version = "
|
|
1301
|
+
version = "3.0.5"
|
|
1814
1302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1815
|
-
checksum = "
|
|
1303
|
+
checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
|
|
1816
1304
|
dependencies = [
|
|
1817
|
-
"base64 0.
|
|
1305
|
+
"base64 0.22.1",
|
|
1306
|
+
"serde",
|
|
1818
1307
|
]
|
|
1819
1308
|
|
|
1820
1309
|
[[package]]
|
|
1821
1310
|
name = "percent-encoding"
|
|
1822
|
-
version = "
|
|
1823
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1824
|
-
checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"
|
|
1825
|
-
|
|
1826
|
-
[[package]]
|
|
1827
|
-
name = "percent-encoding"
|
|
1828
|
-
version = "2.3.1"
|
|
1311
|
+
version = "2.3.2"
|
|
1829
1312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1830
|
-
checksum = "
|
|
1313
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1831
1314
|
|
|
1832
1315
|
[[package]]
|
|
1833
1316
|
name = "petgraph"
|
|
@@ -1836,14 +1319,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1836
1319
|
checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
|
|
1837
1320
|
dependencies = [
|
|
1838
1321
|
"fixedbitset",
|
|
1839
|
-
"indexmap
|
|
1322
|
+
"indexmap",
|
|
1840
1323
|
]
|
|
1841
1324
|
|
|
1842
1325
|
[[package]]
|
|
1843
1326
|
name = "pg_query"
|
|
1844
|
-
version = "6.1.
|
|
1327
|
+
version = "6.1.1"
|
|
1845
1328
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1846
|
-
checksum = "
|
|
1329
|
+
checksum = "6ca6fdb8f9d32182abf17328789f87f305dd8c8ce5bf48c5aa2b5cffc94e1c04"
|
|
1847
1330
|
dependencies = [
|
|
1848
1331
|
"bindgen",
|
|
1849
1332
|
"cc",
|
|
@@ -1854,7 +1337,7 @@ dependencies = [
|
|
|
1854
1337
|
"prost-build",
|
|
1855
1338
|
"serde",
|
|
1856
1339
|
"serde_json",
|
|
1857
|
-
"thiserror",
|
|
1340
|
+
"thiserror 1.0.69",
|
|
1858
1341
|
]
|
|
1859
1342
|
|
|
1860
1343
|
[[package]]
|
|
@@ -1871,18 +1354,33 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
1871
1354
|
|
|
1872
1355
|
[[package]]
|
|
1873
1356
|
name = "pkg-config"
|
|
1874
|
-
version = "0.3.
|
|
1357
|
+
version = "0.3.32"
|
|
1875
1358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1876
|
-
checksum = "
|
|
1359
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
1360
|
+
|
|
1361
|
+
[[package]]
|
|
1362
|
+
name = "potential_utf"
|
|
1363
|
+
version = "0.1.3"
|
|
1364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1365
|
+
checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a"
|
|
1366
|
+
dependencies = [
|
|
1367
|
+
"zerovec",
|
|
1368
|
+
]
|
|
1369
|
+
|
|
1370
|
+
[[package]]
|
|
1371
|
+
name = "powerfmt"
|
|
1372
|
+
version = "0.2.0"
|
|
1373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1374
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1877
1375
|
|
|
1878
1376
|
[[package]]
|
|
1879
1377
|
name = "prettyplease"
|
|
1880
|
-
version = "0.2.
|
|
1378
|
+
version = "0.2.37"
|
|
1881
1379
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1882
|
-
checksum = "
|
|
1380
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1883
1381
|
dependencies = [
|
|
1884
1382
|
"proc-macro2",
|
|
1885
|
-
"syn 2.0.
|
|
1383
|
+
"syn 2.0.106",
|
|
1886
1384
|
]
|
|
1887
1385
|
|
|
1888
1386
|
[[package]]
|
|
@@ -1911,9 +1409,9 @@ dependencies = [
|
|
|
1911
1409
|
|
|
1912
1410
|
[[package]]
|
|
1913
1411
|
name = "proc-macro2"
|
|
1914
|
-
version = "1.0.
|
|
1412
|
+
version = "1.0.101"
|
|
1915
1413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1916
|
-
checksum = "
|
|
1414
|
+
checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
|
|
1917
1415
|
dependencies = [
|
|
1918
1416
|
"unicode-ident",
|
|
1919
1417
|
]
|
|
@@ -1924,7 +1422,7 @@ version = "0.13.5"
|
|
|
1924
1422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1925
1423
|
checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
|
|
1926
1424
|
dependencies = [
|
|
1927
|
-
"bytes
|
|
1425
|
+
"bytes",
|
|
1928
1426
|
"prost-derive",
|
|
1929
1427
|
]
|
|
1930
1428
|
|
|
@@ -1944,7 +1442,7 @@ dependencies = [
|
|
|
1944
1442
|
"prost",
|
|
1945
1443
|
"prost-types",
|
|
1946
1444
|
"regex",
|
|
1947
|
-
"syn 2.0.
|
|
1445
|
+
"syn 2.0.106",
|
|
1948
1446
|
"tempfile",
|
|
1949
1447
|
]
|
|
1950
1448
|
|
|
@@ -1958,7 +1456,7 @@ dependencies = [
|
|
|
1958
1456
|
"itertools 0.14.0",
|
|
1959
1457
|
"proc-macro2",
|
|
1960
1458
|
"quote",
|
|
1961
|
-
"syn 2.0.
|
|
1459
|
+
"syn 2.0.106",
|
|
1962
1460
|
]
|
|
1963
1461
|
|
|
1964
1462
|
[[package]]
|
|
@@ -1970,16 +1468,6 @@ dependencies = [
|
|
|
1970
1468
|
"prost",
|
|
1971
1469
|
]
|
|
1972
1470
|
|
|
1973
|
-
[[package]]
|
|
1974
|
-
name = "publicsuffix"
|
|
1975
|
-
version = "1.5.6"
|
|
1976
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1977
|
-
checksum = "95b4ce31ff0a27d93c8de1849cf58162283752f065a90d508f1105fa6c9a213f"
|
|
1978
|
-
dependencies = [
|
|
1979
|
-
"idna 0.2.3",
|
|
1980
|
-
"url 2.5.4",
|
|
1981
|
-
]
|
|
1982
|
-
|
|
1983
1471
|
[[package]]
|
|
1984
1472
|
name = "quote"
|
|
1985
1473
|
version = "1.0.40"
|
|
@@ -1990,140 +1478,16 @@ dependencies = [
|
|
|
1990
1478
|
]
|
|
1991
1479
|
|
|
1992
1480
|
[[package]]
|
|
1993
|
-
name = "
|
|
1994
|
-
version = "
|
|
1481
|
+
name = "r-efi"
|
|
1482
|
+
version = "5.3.0"
|
|
1995
1483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1996
|
-
checksum = "
|
|
1997
|
-
dependencies = [
|
|
1998
|
-
"autocfg 0.1.8",
|
|
1999
|
-
"libc",
|
|
2000
|
-
"rand_chacha",
|
|
2001
|
-
"rand_core 0.4.2",
|
|
2002
|
-
"rand_hc",
|
|
2003
|
-
"rand_isaac",
|
|
2004
|
-
"rand_jitter",
|
|
2005
|
-
"rand_os",
|
|
2006
|
-
"rand_pcg",
|
|
2007
|
-
"rand_xorshift",
|
|
2008
|
-
"winapi 0.3.9",
|
|
2009
|
-
]
|
|
2010
|
-
|
|
2011
|
-
[[package]]
|
|
2012
|
-
name = "rand_chacha"
|
|
2013
|
-
version = "0.1.1"
|
|
2014
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2015
|
-
checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
|
|
2016
|
-
dependencies = [
|
|
2017
|
-
"autocfg 0.1.8",
|
|
2018
|
-
"rand_core 0.3.1",
|
|
2019
|
-
]
|
|
2020
|
-
|
|
2021
|
-
[[package]]
|
|
2022
|
-
name = "rand_core"
|
|
2023
|
-
version = "0.3.1"
|
|
2024
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2025
|
-
checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
|
|
2026
|
-
dependencies = [
|
|
2027
|
-
"rand_core 0.4.2",
|
|
2028
|
-
]
|
|
2029
|
-
|
|
2030
|
-
[[package]]
|
|
2031
|
-
name = "rand_core"
|
|
2032
|
-
version = "0.4.2"
|
|
2033
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2034
|
-
checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
|
|
2035
|
-
|
|
2036
|
-
[[package]]
|
|
2037
|
-
name = "rand_hc"
|
|
2038
|
-
version = "0.1.0"
|
|
2039
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2040
|
-
checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
|
|
2041
|
-
dependencies = [
|
|
2042
|
-
"rand_core 0.3.1",
|
|
2043
|
-
]
|
|
2044
|
-
|
|
2045
|
-
[[package]]
|
|
2046
|
-
name = "rand_isaac"
|
|
2047
|
-
version = "0.1.1"
|
|
2048
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2049
|
-
checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
|
|
2050
|
-
dependencies = [
|
|
2051
|
-
"rand_core 0.3.1",
|
|
2052
|
-
]
|
|
2053
|
-
|
|
2054
|
-
[[package]]
|
|
2055
|
-
name = "rand_jitter"
|
|
2056
|
-
version = "0.1.4"
|
|
2057
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2058
|
-
checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
|
|
2059
|
-
dependencies = [
|
|
2060
|
-
"libc",
|
|
2061
|
-
"rand_core 0.4.2",
|
|
2062
|
-
"winapi 0.3.9",
|
|
2063
|
-
]
|
|
2064
|
-
|
|
2065
|
-
[[package]]
|
|
2066
|
-
name = "rand_os"
|
|
2067
|
-
version = "0.1.3"
|
|
2068
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2069
|
-
checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
|
|
2070
|
-
dependencies = [
|
|
2071
|
-
"cloudabi",
|
|
2072
|
-
"fuchsia-cprng",
|
|
2073
|
-
"libc",
|
|
2074
|
-
"rand_core 0.4.2",
|
|
2075
|
-
"rdrand",
|
|
2076
|
-
"winapi 0.3.9",
|
|
2077
|
-
]
|
|
2078
|
-
|
|
2079
|
-
[[package]]
|
|
2080
|
-
name = "rand_pcg"
|
|
2081
|
-
version = "0.1.2"
|
|
2082
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2083
|
-
checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
|
|
2084
|
-
dependencies = [
|
|
2085
|
-
"autocfg 0.1.8",
|
|
2086
|
-
"rand_core 0.4.2",
|
|
2087
|
-
]
|
|
2088
|
-
|
|
2089
|
-
[[package]]
|
|
2090
|
-
name = "rand_xorshift"
|
|
2091
|
-
version = "0.1.1"
|
|
2092
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2093
|
-
checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
|
|
2094
|
-
dependencies = [
|
|
2095
|
-
"rand_core 0.3.1",
|
|
2096
|
-
]
|
|
2097
|
-
|
|
2098
|
-
[[package]]
|
|
2099
|
-
name = "rdrand"
|
|
2100
|
-
version = "0.4.0"
|
|
2101
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2102
|
-
checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
|
|
2103
|
-
dependencies = [
|
|
2104
|
-
"rand_core 0.3.1",
|
|
2105
|
-
]
|
|
2106
|
-
|
|
2107
|
-
[[package]]
|
|
2108
|
-
name = "redox_syscall"
|
|
2109
|
-
version = "0.1.57"
|
|
2110
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2111
|
-
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
|
|
2112
|
-
|
|
2113
|
-
[[package]]
|
|
2114
|
-
name = "redox_syscall"
|
|
2115
|
-
version = "0.2.13"
|
|
2116
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2117
|
-
checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
|
|
2118
|
-
dependencies = [
|
|
2119
|
-
"bitflags 1.3.2",
|
|
2120
|
-
]
|
|
1484
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2121
1485
|
|
|
2122
1486
|
[[package]]
|
|
2123
1487
|
name = "regex"
|
|
2124
|
-
version = "1.11.
|
|
1488
|
+
version = "1.11.2"
|
|
2125
1489
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2126
|
-
checksum = "
|
|
1490
|
+
checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912"
|
|
2127
1491
|
dependencies = [
|
|
2128
1492
|
"aho-corasick",
|
|
2129
1493
|
"memchr",
|
|
@@ -2133,9 +1497,9 @@ dependencies = [
|
|
|
2133
1497
|
|
|
2134
1498
|
[[package]]
|
|
2135
1499
|
name = "regex-automata"
|
|
2136
|
-
version = "0.4.
|
|
1500
|
+
version = "0.4.10"
|
|
2137
1501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2138
|
-
checksum = "
|
|
1502
|
+
checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6"
|
|
2139
1503
|
dependencies = [
|
|
2140
1504
|
"aho-corasick",
|
|
2141
1505
|
"memchr",
|
|
@@ -2144,111 +1508,48 @@ dependencies = [
|
|
|
2144
1508
|
|
|
2145
1509
|
[[package]]
|
|
2146
1510
|
name = "regex-syntax"
|
|
2147
|
-
version = "0.8.
|
|
2148
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2149
|
-
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
2150
|
-
|
|
2151
|
-
[[package]]
|
|
2152
|
-
name = "remove_dir_all"
|
|
2153
|
-
version = "0.5.3"
|
|
2154
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2155
|
-
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
|
|
2156
|
-
dependencies = [
|
|
2157
|
-
"winapi 0.3.9",
|
|
2158
|
-
]
|
|
2159
|
-
|
|
2160
|
-
[[package]]
|
|
2161
|
-
name = "reqwest"
|
|
2162
|
-
version = "0.9.24"
|
|
1511
|
+
version = "0.8.6"
|
|
2163
1512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2164
|
-
checksum = "
|
|
2165
|
-
dependencies = [
|
|
2166
|
-
"base64 0.10.1",
|
|
2167
|
-
"bytes 0.4.12",
|
|
2168
|
-
"cookie",
|
|
2169
|
-
"cookie_store",
|
|
2170
|
-
"encoding_rs",
|
|
2171
|
-
"flate2",
|
|
2172
|
-
"futures",
|
|
2173
|
-
"http 0.1.21",
|
|
2174
|
-
"hyper 0.12.36",
|
|
2175
|
-
"hyper-tls 0.3.2",
|
|
2176
|
-
"log",
|
|
2177
|
-
"mime",
|
|
2178
|
-
"mime_guess",
|
|
2179
|
-
"native-tls",
|
|
2180
|
-
"serde",
|
|
2181
|
-
"serde_json",
|
|
2182
|
-
"serde_urlencoded 0.5.5",
|
|
2183
|
-
"time 0.1.44",
|
|
2184
|
-
"tokio 0.1.22",
|
|
2185
|
-
"tokio-executor",
|
|
2186
|
-
"tokio-io",
|
|
2187
|
-
"tokio-threadpool",
|
|
2188
|
-
"tokio-timer",
|
|
2189
|
-
"url 1.7.2",
|
|
2190
|
-
"uuid",
|
|
2191
|
-
"winreg",
|
|
2192
|
-
]
|
|
1513
|
+
checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
|
|
2193
1514
|
|
|
2194
1515
|
[[package]]
|
|
2195
1516
|
name = "reqwest"
|
|
2196
|
-
version = "0.
|
|
1517
|
+
version = "0.11.27"
|
|
2197
1518
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2198
|
-
checksum = "
|
|
1519
|
+
checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
|
|
2199
1520
|
dependencies = [
|
|
2200
|
-
"base64 0.
|
|
2201
|
-
"bytes
|
|
1521
|
+
"base64 0.21.7",
|
|
1522
|
+
"bytes",
|
|
2202
1523
|
"encoding_rs",
|
|
2203
|
-
"futures-channel",
|
|
2204
1524
|
"futures-core",
|
|
2205
1525
|
"futures-util",
|
|
2206
|
-
"h2
|
|
2207
|
-
"http
|
|
2208
|
-
"http-body
|
|
2209
|
-
"
|
|
2210
|
-
"hyper
|
|
2211
|
-
"hyper-rustls",
|
|
2212
|
-
"hyper-tls 0.6.0",
|
|
2213
|
-
"hyper-util",
|
|
1526
|
+
"h2",
|
|
1527
|
+
"http",
|
|
1528
|
+
"http-body",
|
|
1529
|
+
"hyper",
|
|
1530
|
+
"hyper-tls",
|
|
2214
1531
|
"ipnet",
|
|
2215
1532
|
"js-sys",
|
|
2216
1533
|
"log",
|
|
2217
1534
|
"mime",
|
|
2218
1535
|
"native-tls",
|
|
2219
1536
|
"once_cell",
|
|
2220
|
-
"percent-encoding
|
|
1537
|
+
"percent-encoding",
|
|
2221
1538
|
"pin-project-lite",
|
|
2222
1539
|
"rustls-pemfile",
|
|
2223
1540
|
"serde",
|
|
2224
1541
|
"serde_json",
|
|
2225
|
-
"serde_urlencoded
|
|
1542
|
+
"serde_urlencoded",
|
|
2226
1543
|
"sync_wrapper",
|
|
2227
1544
|
"system-configuration",
|
|
2228
|
-
"tokio
|
|
1545
|
+
"tokio",
|
|
2229
1546
|
"tokio-native-tls",
|
|
2230
|
-
"tower",
|
|
2231
1547
|
"tower-service",
|
|
2232
|
-
"url
|
|
1548
|
+
"url",
|
|
2233
1549
|
"wasm-bindgen",
|
|
2234
1550
|
"wasm-bindgen-futures",
|
|
2235
1551
|
"web-sys",
|
|
2236
|
-
"
|
|
2237
|
-
]
|
|
2238
|
-
|
|
2239
|
-
[[package]]
|
|
2240
|
-
name = "ring"
|
|
2241
|
-
version = "0.16.20"
|
|
2242
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2243
|
-
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
|
|
2244
|
-
dependencies = [
|
|
2245
|
-
"cc",
|
|
2246
|
-
"libc",
|
|
2247
|
-
"once_cell",
|
|
2248
|
-
"spin",
|
|
2249
|
-
"untrusted 0.7.1",
|
|
2250
|
-
"web-sys",
|
|
2251
|
-
"winapi 0.3.9",
|
|
1552
|
+
"winreg",
|
|
2252
1553
|
]
|
|
2253
1554
|
|
|
2254
1555
|
[[package]]
|
|
@@ -2258,30 +1559,31 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2258
1559
|
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2259
1560
|
dependencies = [
|
|
2260
1561
|
"cc",
|
|
2261
|
-
"cfg-if
|
|
2262
|
-
"getrandom",
|
|
1562
|
+
"cfg-if",
|
|
1563
|
+
"getrandom 0.2.16",
|
|
2263
1564
|
"libc",
|
|
2264
|
-
"untrusted
|
|
1565
|
+
"untrusted",
|
|
2265
1566
|
"windows-sys 0.52.0",
|
|
2266
1567
|
]
|
|
2267
1568
|
|
|
2268
1569
|
[[package]]
|
|
2269
1570
|
name = "rowan"
|
|
2270
|
-
version = "0.15.
|
|
1571
|
+
version = "0.15.17"
|
|
2271
1572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2272
|
-
checksum = "
|
|
1573
|
+
checksum = "d4f1e4a001f863f41ea8d0e6a0c34b356d5b733db50dadab3efef640bafb779b"
|
|
2273
1574
|
dependencies = [
|
|
2274
1575
|
"countme",
|
|
2275
1576
|
"hashbrown 0.14.5",
|
|
1577
|
+
"memoffset",
|
|
2276
1578
|
"rustc-hash",
|
|
2277
1579
|
"text-size",
|
|
2278
1580
|
]
|
|
2279
1581
|
|
|
2280
1582
|
[[package]]
|
|
2281
1583
|
name = "rustc-demangle"
|
|
2282
|
-
version = "0.1.
|
|
1584
|
+
version = "0.1.26"
|
|
2283
1585
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2284
|
-
checksum = "
|
|
1586
|
+
checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
|
|
2285
1587
|
|
|
2286
1588
|
[[package]]
|
|
2287
1589
|
name = "rustc-hash"
|
|
@@ -2289,78 +1591,52 @@ version = "1.1.0"
|
|
|
2289
1591
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2290
1592
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
2291
1593
|
|
|
2292
|
-
[[package]]
|
|
2293
|
-
name = "rustc_version"
|
|
2294
|
-
version = "0.2.3"
|
|
2295
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2296
|
-
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
|
|
2297
|
-
dependencies = [
|
|
2298
|
-
"semver",
|
|
2299
|
-
]
|
|
2300
|
-
|
|
2301
1594
|
[[package]]
|
|
2302
1595
|
name = "rustix"
|
|
2303
|
-
version = "0.38.
|
|
1596
|
+
version = "0.38.44"
|
|
2304
1597
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2305
|
-
checksum = "
|
|
1598
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
2306
1599
|
dependencies = [
|
|
2307
|
-
"bitflags 2.
|
|
1600
|
+
"bitflags 2.9.3",
|
|
2308
1601
|
"errno",
|
|
2309
1602
|
"libc",
|
|
2310
|
-
"linux-raw-sys",
|
|
2311
|
-
"windows-sys 0.
|
|
1603
|
+
"linux-raw-sys 0.4.15",
|
|
1604
|
+
"windows-sys 0.59.0",
|
|
2312
1605
|
]
|
|
2313
1606
|
|
|
2314
1607
|
[[package]]
|
|
2315
|
-
name = "
|
|
2316
|
-
version = "0.
|
|
1608
|
+
name = "rustix"
|
|
1609
|
+
version = "1.0.8"
|
|
2317
1610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2318
|
-
checksum = "
|
|
1611
|
+
checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
|
|
2319
1612
|
dependencies = [
|
|
2320
|
-
"
|
|
2321
|
-
"
|
|
2322
|
-
"
|
|
2323
|
-
"
|
|
2324
|
-
"
|
|
1613
|
+
"bitflags 2.9.3",
|
|
1614
|
+
"errno",
|
|
1615
|
+
"libc",
|
|
1616
|
+
"linux-raw-sys 0.9.4",
|
|
1617
|
+
"windows-sys 0.60.2",
|
|
2325
1618
|
]
|
|
2326
1619
|
|
|
2327
1620
|
[[package]]
|
|
2328
1621
|
name = "rustls-pemfile"
|
|
2329
|
-
version = "
|
|
2330
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2331
|
-
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
|
2332
|
-
dependencies = [
|
|
2333
|
-
"rustls-pki-types",
|
|
2334
|
-
]
|
|
2335
|
-
|
|
2336
|
-
[[package]]
|
|
2337
|
-
name = "rustls-pki-types"
|
|
2338
|
-
version = "1.11.0"
|
|
2339
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2340
|
-
checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
|
|
2341
|
-
|
|
2342
|
-
[[package]]
|
|
2343
|
-
name = "rustls-webpki"
|
|
2344
|
-
version = "0.103.1"
|
|
1622
|
+
version = "1.0.4"
|
|
2345
1623
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2346
|
-
checksum = "
|
|
1624
|
+
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
|
|
2347
1625
|
dependencies = [
|
|
2348
|
-
"
|
|
2349
|
-
"rustls-pki-types",
|
|
2350
|
-
"untrusted 0.9.0",
|
|
1626
|
+
"base64 0.21.7",
|
|
2351
1627
|
]
|
|
2352
1628
|
|
|
2353
1629
|
[[package]]
|
|
2354
1630
|
name = "rustversion"
|
|
2355
|
-
version = "1.0.
|
|
1631
|
+
version = "1.0.22"
|
|
2356
1632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2357
|
-
checksum = "
|
|
1633
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2358
1634
|
|
|
2359
1635
|
[[package]]
|
|
2360
1636
|
name = "ryu"
|
|
2361
|
-
version = "1.0.
|
|
1637
|
+
version = "1.0.20"
|
|
2362
1638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2363
|
-
checksum = "
|
|
1639
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
2364
1640
|
|
|
2365
1641
|
[[package]]
|
|
2366
1642
|
name = "same-file"
|
|
@@ -2373,27 +1649,20 @@ dependencies = [
|
|
|
2373
1649
|
|
|
2374
1650
|
[[package]]
|
|
2375
1651
|
name = "schannel"
|
|
2376
|
-
version = "0.1.
|
|
1652
|
+
version = "0.1.27"
|
|
2377
1653
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2378
|
-
checksum = "
|
|
1654
|
+
checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
|
|
2379
1655
|
dependencies = [
|
|
2380
|
-
"
|
|
2381
|
-
"windows-sys 0.36.1",
|
|
1656
|
+
"windows-sys 0.59.0",
|
|
2382
1657
|
]
|
|
2383
1658
|
|
|
2384
|
-
[[package]]
|
|
2385
|
-
name = "scopeguard"
|
|
2386
|
-
version = "1.1.0"
|
|
2387
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2388
|
-
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
|
2389
|
-
|
|
2390
1659
|
[[package]]
|
|
2391
1660
|
name = "security-framework"
|
|
2392
|
-
version = "2.
|
|
1661
|
+
version = "2.11.1"
|
|
2393
1662
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2394
|
-
checksum = "
|
|
1663
|
+
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
|
2395
1664
|
dependencies = [
|
|
2396
|
-
"bitflags
|
|
1665
|
+
"bitflags 2.9.3",
|
|
2397
1666
|
"core-foundation",
|
|
2398
1667
|
"core-foundation-sys",
|
|
2399
1668
|
"libc",
|
|
@@ -2402,29 +1671,14 @@ dependencies = [
|
|
|
2402
1671
|
|
|
2403
1672
|
[[package]]
|
|
2404
1673
|
name = "security-framework-sys"
|
|
2405
|
-
version = "2.
|
|
1674
|
+
version = "2.14.0"
|
|
2406
1675
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2407
|
-
checksum = "
|
|
1676
|
+
checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
|
|
2408
1677
|
dependencies = [
|
|
2409
1678
|
"core-foundation-sys",
|
|
2410
1679
|
"libc",
|
|
2411
1680
|
]
|
|
2412
1681
|
|
|
2413
|
-
[[package]]
|
|
2414
|
-
name = "semver"
|
|
2415
|
-
version = "0.9.0"
|
|
2416
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2417
|
-
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
|
|
2418
|
-
dependencies = [
|
|
2419
|
-
"semver-parser",
|
|
2420
|
-
]
|
|
2421
|
-
|
|
2422
|
-
[[package]]
|
|
2423
|
-
name = "semver-parser"
|
|
2424
|
-
version = "0.7.0"
|
|
2425
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2426
|
-
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
|
|
2427
|
-
|
|
2428
1682
|
[[package]]
|
|
2429
1683
|
name = "serde"
|
|
2430
1684
|
version = "1.0.219"
|
|
@@ -2453,16 +1707,16 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
|
2453
1707
|
dependencies = [
|
|
2454
1708
|
"proc-macro2",
|
|
2455
1709
|
"quote",
|
|
2456
|
-
"syn 2.0.
|
|
1710
|
+
"syn 2.0.106",
|
|
2457
1711
|
]
|
|
2458
1712
|
|
|
2459
1713
|
[[package]]
|
|
2460
1714
|
name = "serde_json"
|
|
2461
|
-
version = "1.0.
|
|
1715
|
+
version = "1.0.143"
|
|
2462
1716
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2463
|
-
checksum = "
|
|
1717
|
+
checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a"
|
|
2464
1718
|
dependencies = [
|
|
2465
|
-
"itoa
|
|
1719
|
+
"itoa",
|
|
2466
1720
|
"memchr",
|
|
2467
1721
|
"ryu",
|
|
2468
1722
|
"serde",
|
|
@@ -2485,19 +1739,7 @@ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
|
|
|
2485
1739
|
dependencies = [
|
|
2486
1740
|
"proc-macro2",
|
|
2487
1741
|
"quote",
|
|
2488
|
-
"syn 2.0.
|
|
2489
|
-
]
|
|
2490
|
-
|
|
2491
|
-
[[package]]
|
|
2492
|
-
name = "serde_urlencoded"
|
|
2493
|
-
version = "0.5.5"
|
|
2494
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2495
|
-
checksum = "642dd69105886af2efd227f75a520ec9b44a820d65bc133a9131f7d229fd165a"
|
|
2496
|
-
dependencies = [
|
|
2497
|
-
"dtoa",
|
|
2498
|
-
"itoa 0.4.8",
|
|
2499
|
-
"serde",
|
|
2500
|
-
"url 1.7.2",
|
|
1742
|
+
"syn 2.0.106",
|
|
2501
1743
|
]
|
|
2502
1744
|
|
|
2503
1745
|
[[package]]
|
|
@@ -2507,7 +1749,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2507
1749
|
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
2508
1750
|
dependencies = [
|
|
2509
1751
|
"form_urlencoded",
|
|
2510
|
-
"itoa
|
|
1752
|
+
"itoa",
|
|
2511
1753
|
"ryu",
|
|
2512
1754
|
"serde",
|
|
2513
1755
|
]
|
|
@@ -2526,47 +1768,38 @@ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
|
2526
1768
|
|
|
2527
1769
|
[[package]]
|
|
2528
1770
|
name = "simple_asn1"
|
|
2529
|
-
version = "0.6.
|
|
1771
|
+
version = "0.6.3"
|
|
2530
1772
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2531
|
-
checksum = "
|
|
1773
|
+
checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb"
|
|
2532
1774
|
dependencies = [
|
|
2533
1775
|
"num-bigint",
|
|
2534
1776
|
"num-traits",
|
|
2535
|
-
"thiserror",
|
|
2536
|
-
"time
|
|
1777
|
+
"thiserror 2.0.16",
|
|
1778
|
+
"time",
|
|
2537
1779
|
]
|
|
2538
1780
|
|
|
2539
1781
|
[[package]]
|
|
2540
1782
|
name = "simplelog"
|
|
2541
|
-
version = "0.12.
|
|
1783
|
+
version = "0.12.2"
|
|
2542
1784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2543
|
-
checksum = "
|
|
1785
|
+
checksum = "16257adbfaef1ee58b1363bdc0664c9b8e1e30aed86049635fb5f147d065a9c0"
|
|
2544
1786
|
dependencies = [
|
|
2545
1787
|
"log",
|
|
2546
1788
|
"termcolor",
|
|
2547
|
-
"time
|
|
1789
|
+
"time",
|
|
2548
1790
|
]
|
|
2549
1791
|
|
|
2550
1792
|
[[package]]
|
|
2551
1793
|
name = "slab"
|
|
2552
|
-
version = "0.4.
|
|
2553
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2554
|
-
checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
|
|
2555
|
-
|
|
2556
|
-
[[package]]
|
|
2557
|
-
name = "smallvec"
|
|
2558
|
-
version = "0.6.14"
|
|
1794
|
+
version = "0.4.11"
|
|
2559
1795
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2560
|
-
checksum = "
|
|
2561
|
-
dependencies = [
|
|
2562
|
-
"maybe-uninit",
|
|
2563
|
-
]
|
|
1796
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
2564
1797
|
|
|
2565
1798
|
[[package]]
|
|
2566
1799
|
name = "smallvec"
|
|
2567
|
-
version = "1.15.
|
|
1800
|
+
version = "1.15.1"
|
|
2568
1801
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2569
|
-
checksum = "
|
|
1802
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2570
1803
|
|
|
2571
1804
|
[[package]]
|
|
2572
1805
|
name = "smol_str"
|
|
@@ -2580,27 +1813,30 @@ dependencies = [
|
|
|
2580
1813
|
|
|
2581
1814
|
[[package]]
|
|
2582
1815
|
name = "socket2"
|
|
2583
|
-
version = "0.5.
|
|
1816
|
+
version = "0.5.10"
|
|
2584
1817
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2585
|
-
checksum = "
|
|
1818
|
+
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
|
2586
1819
|
dependencies = [
|
|
2587
1820
|
"libc",
|
|
2588
1821
|
"windows-sys 0.52.0",
|
|
2589
1822
|
]
|
|
2590
1823
|
|
|
2591
1824
|
[[package]]
|
|
2592
|
-
name = "
|
|
2593
|
-
version = "0.
|
|
1825
|
+
name = "socket2"
|
|
1826
|
+
version = "0.6.0"
|
|
2594
1827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2595
|
-
checksum = "
|
|
1828
|
+
checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
|
|
1829
|
+
dependencies = [
|
|
1830
|
+
"libc",
|
|
1831
|
+
"windows-sys 0.59.0",
|
|
1832
|
+
]
|
|
2596
1833
|
|
|
2597
1834
|
[[package]]
|
|
2598
1835
|
name = "squawk"
|
|
2599
|
-
version = "2.
|
|
1836
|
+
version = "2.25.0"
|
|
2600
1837
|
dependencies = [
|
|
2601
1838
|
"annotate-snippets",
|
|
2602
1839
|
"anyhow",
|
|
2603
|
-
"atty",
|
|
2604
1840
|
"base64 0.12.3",
|
|
2605
1841
|
"console 0.11.3",
|
|
2606
1842
|
"enum-iterator",
|
|
@@ -2629,7 +1865,7 @@ version = "0.0.0"
|
|
|
2629
1865
|
dependencies = [
|
|
2630
1866
|
"jsonwebtoken",
|
|
2631
1867
|
"log",
|
|
2632
|
-
"reqwest
|
|
1868
|
+
"reqwest",
|
|
2633
1869
|
"serde",
|
|
2634
1870
|
"serde_json",
|
|
2635
1871
|
]
|
|
@@ -2722,15 +1958,6 @@ version = "1.2.0"
|
|
|
2722
1958
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2723
1959
|
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
2724
1960
|
|
|
2725
|
-
[[package]]
|
|
2726
|
-
name = "string"
|
|
2727
|
-
version = "0.2.1"
|
|
2728
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2729
|
-
checksum = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d"
|
|
2730
|
-
dependencies = [
|
|
2731
|
-
"bytes 0.4.12",
|
|
2732
|
-
]
|
|
2733
|
-
|
|
2734
1961
|
[[package]]
|
|
2735
1962
|
name = "strsim"
|
|
2736
1963
|
version = "0.8.0"
|
|
@@ -2767,55 +1994,34 @@ dependencies = [
|
|
|
2767
1994
|
"syn 1.0.109",
|
|
2768
1995
|
]
|
|
2769
1996
|
|
|
2770
|
-
[[package]]
|
|
2771
|
-
name = "subtle"
|
|
2772
|
-
version = "2.6.1"
|
|
2773
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2774
|
-
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2775
|
-
|
|
2776
1997
|
[[package]]
|
|
2777
1998
|
name = "syn"
|
|
2778
1999
|
version = "1.0.109"
|
|
2779
2000
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2780
2001
|
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
2781
2002
|
dependencies = [
|
|
2782
|
-
"proc-macro2",
|
|
2783
|
-
"quote",
|
|
2784
|
-
"unicode-ident",
|
|
2785
|
-
]
|
|
2786
|
-
|
|
2787
|
-
[[package]]
|
|
2788
|
-
name = "syn"
|
|
2789
|
-
version = "2.0.101"
|
|
2790
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2791
|
-
checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
|
|
2792
|
-
dependencies = [
|
|
2793
|
-
"proc-macro2",
|
|
2794
|
-
"quote",
|
|
2795
|
-
"unicode-ident",
|
|
2796
|
-
]
|
|
2797
|
-
|
|
2798
|
-
[[package]]
|
|
2799
|
-
name = "sync_wrapper"
|
|
2800
|
-
version = "1.0.2"
|
|
2801
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2802
|
-
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
2803
|
-
dependencies = [
|
|
2804
|
-
"futures-core",
|
|
2003
|
+
"proc-macro2",
|
|
2004
|
+
"quote",
|
|
2005
|
+
"unicode-ident",
|
|
2805
2006
|
]
|
|
2806
2007
|
|
|
2807
2008
|
[[package]]
|
|
2808
|
-
name = "
|
|
2809
|
-
version = "0.
|
|
2009
|
+
name = "syn"
|
|
2010
|
+
version = "2.0.106"
|
|
2810
2011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2811
|
-
checksum = "
|
|
2012
|
+
checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
|
|
2812
2013
|
dependencies = [
|
|
2813
2014
|
"proc-macro2",
|
|
2814
2015
|
"quote",
|
|
2815
|
-
"
|
|
2816
|
-
"unicode-xid",
|
|
2016
|
+
"unicode-ident",
|
|
2817
2017
|
]
|
|
2818
2018
|
|
|
2019
|
+
[[package]]
|
|
2020
|
+
name = "sync_wrapper"
|
|
2021
|
+
version = "0.1.2"
|
|
2022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2023
|
+
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
|
|
2024
|
+
|
|
2819
2025
|
[[package]]
|
|
2820
2026
|
name = "synstructure"
|
|
2821
2027
|
version = "0.13.2"
|
|
@@ -2824,25 +2030,25 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
|
2824
2030
|
dependencies = [
|
|
2825
2031
|
"proc-macro2",
|
|
2826
2032
|
"quote",
|
|
2827
|
-
"syn 2.0.
|
|
2033
|
+
"syn 2.0.106",
|
|
2828
2034
|
]
|
|
2829
2035
|
|
|
2830
2036
|
[[package]]
|
|
2831
2037
|
name = "system-configuration"
|
|
2832
|
-
version = "0.
|
|
2038
|
+
version = "0.5.1"
|
|
2833
2039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2834
|
-
checksum = "
|
|
2040
|
+
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
|
|
2835
2041
|
dependencies = [
|
|
2836
|
-
"bitflags
|
|
2042
|
+
"bitflags 1.3.2",
|
|
2837
2043
|
"core-foundation",
|
|
2838
2044
|
"system-configuration-sys",
|
|
2839
2045
|
]
|
|
2840
2046
|
|
|
2841
2047
|
[[package]]
|
|
2842
2048
|
name = "system-configuration-sys"
|
|
2843
|
-
version = "0.
|
|
2049
|
+
version = "0.5.0"
|
|
2844
2050
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2845
|
-
checksum = "
|
|
2051
|
+
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
|
|
2846
2052
|
dependencies = [
|
|
2847
2053
|
"core-foundation-sys",
|
|
2848
2054
|
"libc",
|
|
@@ -2850,23 +2056,22 @@ dependencies = [
|
|
|
2850
2056
|
|
|
2851
2057
|
[[package]]
|
|
2852
2058
|
name = "tempfile"
|
|
2853
|
-
version = "3.
|
|
2059
|
+
version = "3.21.0"
|
|
2854
2060
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2855
|
-
checksum = "
|
|
2061
|
+
checksum = "15b61f8f20e3a6f7e0649d825294eaf317edce30f82cf6026e7e4cb9222a7d1e"
|
|
2856
2062
|
dependencies = [
|
|
2857
|
-
"cfg-if 1.0.0",
|
|
2858
2063
|
"fastrand",
|
|
2859
|
-
"
|
|
2860
|
-
"
|
|
2861
|
-
"
|
|
2862
|
-
"
|
|
2064
|
+
"getrandom 0.3.3",
|
|
2065
|
+
"once_cell",
|
|
2066
|
+
"rustix 1.0.8",
|
|
2067
|
+
"windows-sys 0.60.2",
|
|
2863
2068
|
]
|
|
2864
2069
|
|
|
2865
2070
|
[[package]]
|
|
2866
2071
|
name = "termcolor"
|
|
2867
|
-
version = "1.1
|
|
2072
|
+
version = "1.4.1"
|
|
2868
2073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2869
|
-
checksum = "
|
|
2074
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
2870
2075
|
dependencies = [
|
|
2871
2076
|
"winapi-util",
|
|
2872
2077
|
]
|
|
@@ -2878,7 +2083,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2878
2083
|
checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
|
|
2879
2084
|
dependencies = [
|
|
2880
2085
|
"libc",
|
|
2881
|
-
"winapi
|
|
2086
|
+
"winapi",
|
|
2882
2087
|
]
|
|
2883
2088
|
|
|
2884
2089
|
[[package]]
|
|
@@ -2902,157 +2107,107 @@ version = "0.11.0"
|
|
|
2902
2107
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2903
2108
|
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
|
|
2904
2109
|
dependencies = [
|
|
2905
|
-
"unicode-width 0.1.
|
|
2110
|
+
"unicode-width 0.1.14",
|
|
2111
|
+
]
|
|
2112
|
+
|
|
2113
|
+
[[package]]
|
|
2114
|
+
name = "thiserror"
|
|
2115
|
+
version = "1.0.69"
|
|
2116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2117
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
2118
|
+
dependencies = [
|
|
2119
|
+
"thiserror-impl 1.0.69",
|
|
2906
2120
|
]
|
|
2907
2121
|
|
|
2908
2122
|
[[package]]
|
|
2909
2123
|
name = "thiserror"
|
|
2910
|
-
version = "
|
|
2124
|
+
version = "2.0.16"
|
|
2911
2125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2912
|
-
checksum = "
|
|
2126
|
+
checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0"
|
|
2913
2127
|
dependencies = [
|
|
2914
|
-
"thiserror-impl",
|
|
2128
|
+
"thiserror-impl 2.0.16",
|
|
2915
2129
|
]
|
|
2916
2130
|
|
|
2917
2131
|
[[package]]
|
|
2918
2132
|
name = "thiserror-impl"
|
|
2919
|
-
version = "1.0.
|
|
2133
|
+
version = "1.0.69"
|
|
2920
2134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2921
|
-
checksum = "
|
|
2135
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
2922
2136
|
dependencies = [
|
|
2923
2137
|
"proc-macro2",
|
|
2924
2138
|
"quote",
|
|
2925
|
-
"syn
|
|
2139
|
+
"syn 2.0.106",
|
|
2926
2140
|
]
|
|
2927
2141
|
|
|
2928
2142
|
[[package]]
|
|
2929
|
-
name = "
|
|
2930
|
-
version = "0.
|
|
2143
|
+
name = "thiserror-impl"
|
|
2144
|
+
version = "2.0.16"
|
|
2931
2145
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2932
|
-
checksum = "
|
|
2146
|
+
checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960"
|
|
2933
2147
|
dependencies = [
|
|
2934
|
-
"
|
|
2935
|
-
"
|
|
2936
|
-
"
|
|
2148
|
+
"proc-macro2",
|
|
2149
|
+
"quote",
|
|
2150
|
+
"syn 2.0.106",
|
|
2937
2151
|
]
|
|
2938
2152
|
|
|
2939
2153
|
[[package]]
|
|
2940
2154
|
name = "time"
|
|
2941
|
-
version = "0.3.
|
|
2155
|
+
version = "0.3.41"
|
|
2942
2156
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2943
|
-
checksum = "
|
|
2157
|
+
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
|
2944
2158
|
dependencies = [
|
|
2945
|
-
"
|
|
2159
|
+
"deranged",
|
|
2160
|
+
"itoa",
|
|
2946
2161
|
"libc",
|
|
2162
|
+
"num-conv",
|
|
2947
2163
|
"num_threads",
|
|
2164
|
+
"powerfmt",
|
|
2165
|
+
"serde",
|
|
2166
|
+
"time-core",
|
|
2948
2167
|
"time-macros",
|
|
2949
2168
|
]
|
|
2950
2169
|
|
|
2951
2170
|
[[package]]
|
|
2952
|
-
name = "time-
|
|
2953
|
-
version = "0.
|
|
2954
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2955
|
-
checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
|
|
2956
|
-
|
|
2957
|
-
[[package]]
|
|
2958
|
-
name = "tinystr"
|
|
2959
|
-
version = "0.7.6"
|
|
2171
|
+
name = "time-core"
|
|
2172
|
+
version = "0.1.4"
|
|
2960
2173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2961
|
-
checksum = "
|
|
2962
|
-
dependencies = [
|
|
2963
|
-
"displaydoc",
|
|
2964
|
-
"zerovec",
|
|
2965
|
-
]
|
|
2174
|
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
|
2966
2175
|
|
|
2967
2176
|
[[package]]
|
|
2968
|
-
name = "
|
|
2969
|
-
version = "
|
|
2177
|
+
name = "time-macros"
|
|
2178
|
+
version = "0.2.22"
|
|
2970
2179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2971
|
-
checksum = "
|
|
2180
|
+
checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
|
|
2972
2181
|
dependencies = [
|
|
2973
|
-
"
|
|
2182
|
+
"num-conv",
|
|
2183
|
+
"time-core",
|
|
2974
2184
|
]
|
|
2975
2185
|
|
|
2976
2186
|
[[package]]
|
|
2977
|
-
name = "
|
|
2978
|
-
version = "0.1
|
|
2979
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2980
|
-
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
|
2981
|
-
|
|
2982
|
-
[[package]]
|
|
2983
|
-
name = "tokio"
|
|
2984
|
-
version = "0.1.22"
|
|
2187
|
+
name = "tinystr"
|
|
2188
|
+
version = "0.8.1"
|
|
2985
2189
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2986
|
-
checksum = "
|
|
2190
|
+
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
|
|
2987
2191
|
dependencies = [
|
|
2988
|
-
"
|
|
2989
|
-
"
|
|
2990
|
-
"mio 0.6.23",
|
|
2991
|
-
"num_cpus",
|
|
2992
|
-
"tokio-current-thread",
|
|
2993
|
-
"tokio-executor",
|
|
2994
|
-
"tokio-io",
|
|
2995
|
-
"tokio-reactor",
|
|
2996
|
-
"tokio-tcp",
|
|
2997
|
-
"tokio-threadpool",
|
|
2998
|
-
"tokio-timer",
|
|
2192
|
+
"displaydoc",
|
|
2193
|
+
"zerovec",
|
|
2999
2194
|
]
|
|
3000
2195
|
|
|
3001
2196
|
[[package]]
|
|
3002
2197
|
name = "tokio"
|
|
3003
|
-
version = "1.
|
|
2198
|
+
version = "1.47.1"
|
|
3004
2199
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3005
|
-
checksum = "
|
|
2200
|
+
checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038"
|
|
3006
2201
|
dependencies = [
|
|
3007
2202
|
"backtrace",
|
|
3008
|
-
"bytes
|
|
2203
|
+
"bytes",
|
|
2204
|
+
"io-uring",
|
|
3009
2205
|
"libc",
|
|
3010
|
-
"mio
|
|
2206
|
+
"mio",
|
|
3011
2207
|
"pin-project-lite",
|
|
3012
|
-
"
|
|
3013
|
-
"
|
|
3014
|
-
|
|
3015
|
-
|
|
3016
|
-
[[package]]
|
|
3017
|
-
name = "tokio-buf"
|
|
3018
|
-
version = "0.1.1"
|
|
3019
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3020
|
-
checksum = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46"
|
|
3021
|
-
dependencies = [
|
|
3022
|
-
"bytes 0.4.12",
|
|
3023
|
-
"either",
|
|
3024
|
-
"futures",
|
|
3025
|
-
]
|
|
3026
|
-
|
|
3027
|
-
[[package]]
|
|
3028
|
-
name = "tokio-current-thread"
|
|
3029
|
-
version = "0.1.7"
|
|
3030
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3031
|
-
checksum = "b1de0e32a83f131e002238d7ccde18211c0a5397f60cbfffcb112868c2e0e20e"
|
|
3032
|
-
dependencies = [
|
|
3033
|
-
"futures",
|
|
3034
|
-
"tokio-executor",
|
|
3035
|
-
]
|
|
3036
|
-
|
|
3037
|
-
[[package]]
|
|
3038
|
-
name = "tokio-executor"
|
|
3039
|
-
version = "0.1.10"
|
|
3040
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3041
|
-
checksum = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671"
|
|
3042
|
-
dependencies = [
|
|
3043
|
-
"crossbeam-utils 0.7.2",
|
|
3044
|
-
"futures",
|
|
3045
|
-
]
|
|
3046
|
-
|
|
3047
|
-
[[package]]
|
|
3048
|
-
name = "tokio-io"
|
|
3049
|
-
version = "0.1.13"
|
|
3050
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3051
|
-
checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674"
|
|
3052
|
-
dependencies = [
|
|
3053
|
-
"bytes 0.4.12",
|
|
3054
|
-
"futures",
|
|
3055
|
-
"log",
|
|
2208
|
+
"slab",
|
|
2209
|
+
"socket2 0.6.0",
|
|
2210
|
+
"windows-sys 0.59.0",
|
|
3056
2211
|
]
|
|
3057
2212
|
|
|
3058
2213
|
[[package]]
|
|
@@ -3062,134 +2217,31 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3062
2217
|
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
|
3063
2218
|
dependencies = [
|
|
3064
2219
|
"native-tls",
|
|
3065
|
-
"tokio
|
|
3066
|
-
]
|
|
3067
|
-
|
|
3068
|
-
[[package]]
|
|
3069
|
-
name = "tokio-reactor"
|
|
3070
|
-
version = "0.1.12"
|
|
3071
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3072
|
-
checksum = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351"
|
|
3073
|
-
dependencies = [
|
|
3074
|
-
"crossbeam-utils 0.7.2",
|
|
3075
|
-
"futures",
|
|
3076
|
-
"lazy_static",
|
|
3077
|
-
"log",
|
|
3078
|
-
"mio 0.6.23",
|
|
3079
|
-
"num_cpus",
|
|
3080
|
-
"parking_lot",
|
|
3081
|
-
"slab",
|
|
3082
|
-
"tokio-executor",
|
|
3083
|
-
"tokio-io",
|
|
3084
|
-
"tokio-sync",
|
|
3085
|
-
]
|
|
3086
|
-
|
|
3087
|
-
[[package]]
|
|
3088
|
-
name = "tokio-rustls"
|
|
3089
|
-
version = "0.26.2"
|
|
3090
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3091
|
-
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
|
3092
|
-
dependencies = [
|
|
3093
|
-
"rustls",
|
|
3094
|
-
"tokio 1.44.2",
|
|
3095
|
-
]
|
|
3096
|
-
|
|
3097
|
-
[[package]]
|
|
3098
|
-
name = "tokio-sync"
|
|
3099
|
-
version = "0.1.8"
|
|
3100
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3101
|
-
checksum = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee"
|
|
3102
|
-
dependencies = [
|
|
3103
|
-
"fnv",
|
|
3104
|
-
"futures",
|
|
3105
|
-
]
|
|
3106
|
-
|
|
3107
|
-
[[package]]
|
|
3108
|
-
name = "tokio-tcp"
|
|
3109
|
-
version = "0.1.4"
|
|
3110
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3111
|
-
checksum = "98df18ed66e3b72e742f185882a9e201892407957e45fbff8da17ae7a7c51f72"
|
|
3112
|
-
dependencies = [
|
|
3113
|
-
"bytes 0.4.12",
|
|
3114
|
-
"futures",
|
|
3115
|
-
"iovec",
|
|
3116
|
-
"mio 0.6.23",
|
|
3117
|
-
"tokio-io",
|
|
3118
|
-
"tokio-reactor",
|
|
3119
|
-
]
|
|
3120
|
-
|
|
3121
|
-
[[package]]
|
|
3122
|
-
name = "tokio-threadpool"
|
|
3123
|
-
version = "0.1.18"
|
|
3124
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3125
|
-
checksum = "df720b6581784c118f0eb4310796b12b1d242a7eb95f716a8367855325c25f89"
|
|
3126
|
-
dependencies = [
|
|
3127
|
-
"crossbeam-deque",
|
|
3128
|
-
"crossbeam-queue",
|
|
3129
|
-
"crossbeam-utils 0.7.2",
|
|
3130
|
-
"futures",
|
|
3131
|
-
"lazy_static",
|
|
3132
|
-
"log",
|
|
3133
|
-
"num_cpus",
|
|
3134
|
-
"slab",
|
|
3135
|
-
"tokio-executor",
|
|
3136
|
-
]
|
|
3137
|
-
|
|
3138
|
-
[[package]]
|
|
3139
|
-
name = "tokio-timer"
|
|
3140
|
-
version = "0.2.13"
|
|
3141
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3142
|
-
checksum = "93044f2d313c95ff1cb7809ce9a7a05735b012288a888b62d4434fd58c94f296"
|
|
3143
|
-
dependencies = [
|
|
3144
|
-
"crossbeam-utils 0.7.2",
|
|
3145
|
-
"futures",
|
|
3146
|
-
"slab",
|
|
3147
|
-
"tokio-executor",
|
|
2220
|
+
"tokio",
|
|
3148
2221
|
]
|
|
3149
2222
|
|
|
3150
2223
|
[[package]]
|
|
3151
2224
|
name = "tokio-util"
|
|
3152
|
-
version = "0.7.
|
|
2225
|
+
version = "0.7.16"
|
|
3153
2226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3154
|
-
checksum = "
|
|
2227
|
+
checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
|
|
3155
2228
|
dependencies = [
|
|
3156
|
-
"bytes
|
|
2229
|
+
"bytes",
|
|
3157
2230
|
"futures-core",
|
|
3158
2231
|
"futures-sink",
|
|
3159
2232
|
"pin-project-lite",
|
|
3160
|
-
"tokio
|
|
2233
|
+
"tokio",
|
|
3161
2234
|
]
|
|
3162
2235
|
|
|
3163
2236
|
[[package]]
|
|
3164
2237
|
name = "toml"
|
|
3165
|
-
version = "0.5.
|
|
2238
|
+
version = "0.5.11"
|
|
3166
2239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3167
|
-
checksum = "
|
|
2240
|
+
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
|
|
3168
2241
|
dependencies = [
|
|
3169
2242
|
"serde",
|
|
3170
2243
|
]
|
|
3171
2244
|
|
|
3172
|
-
[[package]]
|
|
3173
|
-
name = "tower"
|
|
3174
|
-
version = "0.5.2"
|
|
3175
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3176
|
-
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
|
3177
|
-
dependencies = [
|
|
3178
|
-
"futures-core",
|
|
3179
|
-
"futures-util",
|
|
3180
|
-
"pin-project-lite",
|
|
3181
|
-
"sync_wrapper",
|
|
3182
|
-
"tokio 1.44.2",
|
|
3183
|
-
"tower-layer",
|
|
3184
|
-
"tower-service",
|
|
3185
|
-
]
|
|
3186
|
-
|
|
3187
|
-
[[package]]
|
|
3188
|
-
name = "tower-layer"
|
|
3189
|
-
version = "0.3.3"
|
|
3190
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3191
|
-
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
3192
|
-
|
|
3193
2245
|
[[package]]
|
|
3194
2246
|
name = "tower-service"
|
|
3195
2247
|
version = "0.3.3"
|
|
@@ -3208,9 +2260,9 @@ dependencies = [
|
|
|
3208
2260
|
|
|
3209
2261
|
[[package]]
|
|
3210
2262
|
name = "tracing-core"
|
|
3211
|
-
version = "0.1.
|
|
2263
|
+
version = "0.1.34"
|
|
3212
2264
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3213
|
-
checksum = "
|
|
2265
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
|
3214
2266
|
dependencies = [
|
|
3215
2267
|
"once_cell",
|
|
3216
2268
|
]
|
|
@@ -3221,80 +2273,35 @@ version = "0.2.5"
|
|
|
3221
2273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3222
2274
|
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
3223
2275
|
|
|
3224
|
-
[[package]]
|
|
3225
|
-
name = "try_from"
|
|
3226
|
-
version = "0.3.2"
|
|
3227
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3228
|
-
checksum = "283d3b89e1368717881a9d51dad843cc435380d8109c9e47d38780a324698d8b"
|
|
3229
|
-
dependencies = [
|
|
3230
|
-
"cfg-if 0.1.10",
|
|
3231
|
-
]
|
|
3232
|
-
|
|
3233
2276
|
[[package]]
|
|
3234
2277
|
name = "ungrammar"
|
|
3235
2278
|
version = "1.16.1"
|
|
3236
2279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3237
2280
|
checksum = "a3e5df347f0bf3ec1d670aad6ca5c6a1859cd9ea61d2113125794654ccced68f"
|
|
3238
2281
|
|
|
3239
|
-
[[package]]
|
|
3240
|
-
name = "unicase"
|
|
3241
|
-
version = "2.6.0"
|
|
3242
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3243
|
-
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
|
|
3244
|
-
dependencies = [
|
|
3245
|
-
"version_check",
|
|
3246
|
-
]
|
|
3247
|
-
|
|
3248
|
-
[[package]]
|
|
3249
|
-
name = "unicode-bidi"
|
|
3250
|
-
version = "0.3.8"
|
|
3251
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3252
|
-
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
|
|
3253
|
-
|
|
3254
2282
|
[[package]]
|
|
3255
2283
|
name = "unicode-ident"
|
|
3256
2284
|
version = "1.0.18"
|
|
3257
2285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3258
2286
|
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
3259
2287
|
|
|
3260
|
-
[[package]]
|
|
3261
|
-
name = "unicode-normalization"
|
|
3262
|
-
version = "0.1.21"
|
|
3263
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3264
|
-
checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6"
|
|
3265
|
-
dependencies = [
|
|
3266
|
-
"tinyvec",
|
|
3267
|
-
]
|
|
3268
|
-
|
|
3269
2288
|
[[package]]
|
|
3270
2289
|
name = "unicode-segmentation"
|
|
3271
|
-
version = "1.
|
|
2290
|
+
version = "1.12.0"
|
|
3272
2291
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3273
|
-
checksum = "
|
|
2292
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
3274
2293
|
|
|
3275
2294
|
[[package]]
|
|
3276
2295
|
name = "unicode-width"
|
|
3277
|
-
version = "0.1.
|
|
2296
|
+
version = "0.1.14"
|
|
3278
2297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3279
|
-
checksum = "
|
|
2298
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
3280
2299
|
|
|
3281
2300
|
[[package]]
|
|
3282
2301
|
name = "unicode-width"
|
|
3283
|
-
version = "0.2.
|
|
3284
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3285
|
-
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
|
|
3286
|
-
|
|
3287
|
-
[[package]]
|
|
3288
|
-
name = "unicode-xid"
|
|
3289
|
-
version = "0.2.3"
|
|
3290
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3291
|
-
checksum = "957e51f3646910546462e67d5f7599b9e4fb8acdd304b087a6494730f9eebf04"
|
|
3292
|
-
|
|
3293
|
-
[[package]]
|
|
3294
|
-
name = "untrusted"
|
|
3295
|
-
version = "0.7.1"
|
|
2302
|
+
version = "0.2.1"
|
|
3296
2303
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3297
|
-
checksum = "
|
|
2304
|
+
checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
|
|
3298
2305
|
|
|
3299
2306
|
[[package]]
|
|
3300
2307
|
name = "untrusted"
|
|
@@ -3304,33 +2311,16 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
|
3304
2311
|
|
|
3305
2312
|
[[package]]
|
|
3306
2313
|
name = "url"
|
|
3307
|
-
version = "
|
|
3308
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3309
|
-
checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"
|
|
3310
|
-
dependencies = [
|
|
3311
|
-
"idna 0.1.5",
|
|
3312
|
-
"matches",
|
|
3313
|
-
"percent-encoding 1.0.1",
|
|
3314
|
-
]
|
|
3315
|
-
|
|
3316
|
-
[[package]]
|
|
3317
|
-
name = "url"
|
|
3318
|
-
version = "2.5.4"
|
|
2314
|
+
version = "2.5.7"
|
|
3319
2315
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3320
|
-
checksum = "
|
|
2316
|
+
checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
|
|
3321
2317
|
dependencies = [
|
|
3322
2318
|
"form_urlencoded",
|
|
3323
|
-
"idna
|
|
3324
|
-
"percent-encoding
|
|
2319
|
+
"idna",
|
|
2320
|
+
"percent-encoding",
|
|
3325
2321
|
"serde",
|
|
3326
2322
|
]
|
|
3327
2323
|
|
|
3328
|
-
[[package]]
|
|
3329
|
-
name = "utf16_iter"
|
|
3330
|
-
version = "1.0.5"
|
|
3331
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3332
|
-
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
3333
|
-
|
|
3334
2324
|
[[package]]
|
|
3335
2325
|
name = "utf8_iter"
|
|
3336
2326
|
version = "1.0.4"
|
|
@@ -3343,15 +2333,6 @@ version = "0.2.2"
|
|
|
3343
2333
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3344
2334
|
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
3345
2335
|
|
|
3346
|
-
[[package]]
|
|
3347
|
-
name = "uuid"
|
|
3348
|
-
version = "0.7.4"
|
|
3349
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3350
|
-
checksum = "90dbc611eb48397705a6b0f6e917da23ae517e4d127123d2cf7674206627d32a"
|
|
3351
|
-
dependencies = [
|
|
3352
|
-
"rand",
|
|
3353
|
-
]
|
|
3354
|
-
|
|
3355
2336
|
[[package]]
|
|
3356
2337
|
name = "vcpkg"
|
|
3357
2338
|
version = "0.2.15"
|
|
@@ -3366,9 +2347,9 @@ checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
|
|
|
3366
2347
|
|
|
3367
2348
|
[[package]]
|
|
3368
2349
|
name = "version_check"
|
|
3369
|
-
version = "0.9.
|
|
2350
|
+
version = "0.9.5"
|
|
3370
2351
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3371
|
-
checksum = "
|
|
2352
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3372
2353
|
|
|
3373
2354
|
[[package]]
|
|
3374
2355
|
name = "walkdir"
|
|
@@ -3380,17 +2361,6 @@ dependencies = [
|
|
|
3380
2361
|
"winapi-util",
|
|
3381
2362
|
]
|
|
3382
2363
|
|
|
3383
|
-
[[package]]
|
|
3384
|
-
name = "want"
|
|
3385
|
-
version = "0.2.0"
|
|
3386
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3387
|
-
checksum = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230"
|
|
3388
|
-
dependencies = [
|
|
3389
|
-
"futures",
|
|
3390
|
-
"log",
|
|
3391
|
-
"try-lock",
|
|
3392
|
-
]
|
|
3393
|
-
|
|
3394
2364
|
[[package]]
|
|
3395
2365
|
name = "want"
|
|
3396
2366
|
version = "0.3.1"
|
|
@@ -3402,15 +2372,18 @@ dependencies = [
|
|
|
3402
2372
|
|
|
3403
2373
|
[[package]]
|
|
3404
2374
|
name = "wasi"
|
|
3405
|
-
version = "0.
|
|
2375
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3406
2376
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3407
|
-
checksum = "
|
|
2377
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3408
2378
|
|
|
3409
2379
|
[[package]]
|
|
3410
2380
|
name = "wasi"
|
|
3411
|
-
version = "0.
|
|
2381
|
+
version = "0.14.3+wasi-0.2.4"
|
|
3412
2382
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3413
|
-
checksum = "
|
|
2383
|
+
checksum = "6a51ae83037bdd272a9e28ce236db8c07016dd0d50c27038b3f407533c030c95"
|
|
2384
|
+
dependencies = [
|
|
2385
|
+
"wit-bindgen",
|
|
2386
|
+
]
|
|
3414
2387
|
|
|
3415
2388
|
[[package]]
|
|
3416
2389
|
name = "wasm-bindgen"
|
|
@@ -3418,7 +2391,7 @@ version = "0.2.100"
|
|
|
3418
2391
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3419
2392
|
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
3420
2393
|
dependencies = [
|
|
3421
|
-
"cfg-if
|
|
2394
|
+
"cfg-if",
|
|
3422
2395
|
"once_cell",
|
|
3423
2396
|
"rustversion",
|
|
3424
2397
|
"wasm-bindgen-macro",
|
|
@@ -3434,7 +2407,7 @@ dependencies = [
|
|
|
3434
2407
|
"log",
|
|
3435
2408
|
"proc-macro2",
|
|
3436
2409
|
"quote",
|
|
3437
|
-
"syn 2.0.
|
|
2410
|
+
"syn 2.0.106",
|
|
3438
2411
|
"wasm-bindgen-shared",
|
|
3439
2412
|
]
|
|
3440
2413
|
|
|
@@ -3444,7 +2417,7 @@ version = "0.4.50"
|
|
|
3444
2417
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3445
2418
|
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
|
|
3446
2419
|
dependencies = [
|
|
3447
|
-
"cfg-if
|
|
2420
|
+
"cfg-if",
|
|
3448
2421
|
"js-sys",
|
|
3449
2422
|
"once_cell",
|
|
3450
2423
|
"wasm-bindgen",
|
|
@@ -3469,7 +2442,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
|
3469
2442
|
dependencies = [
|
|
3470
2443
|
"proc-macro2",
|
|
3471
2444
|
"quote",
|
|
3472
|
-
"syn 2.0.
|
|
2445
|
+
"syn 2.0.106",
|
|
3473
2446
|
"wasm-bindgen-backend",
|
|
3474
2447
|
"wasm-bindgen-shared",
|
|
3475
2448
|
]
|
|
@@ -3504,7 +2477,7 @@ checksum = "17d5042cc5fa009658f9a7333ef24291b1291a25b6382dd68862a7f3b969f69b"
|
|
|
3504
2477
|
dependencies = [
|
|
3505
2478
|
"proc-macro2",
|
|
3506
2479
|
"quote",
|
|
3507
|
-
"syn 2.0.
|
|
2480
|
+
"syn 2.0.106",
|
|
3508
2481
|
]
|
|
3509
2482
|
|
|
3510
2483
|
[[package]]
|
|
@@ -3526,15 +2499,9 @@ dependencies = [
|
|
|
3526
2499
|
"either",
|
|
3527
2500
|
"home",
|
|
3528
2501
|
"once_cell",
|
|
3529
|
-
"rustix",
|
|
2502
|
+
"rustix 0.38.44",
|
|
3530
2503
|
]
|
|
3531
2504
|
|
|
3532
|
-
[[package]]
|
|
3533
|
-
name = "winapi"
|
|
3534
|
-
version = "0.2.8"
|
|
3535
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3536
|
-
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
|
|
3537
|
-
|
|
3538
2505
|
[[package]]
|
|
3539
2506
|
name = "winapi"
|
|
3540
2507
|
version = "0.3.9"
|
|
@@ -3545,12 +2512,6 @@ dependencies = [
|
|
|
3545
2512
|
"winapi-x86_64-pc-windows-gnu",
|
|
3546
2513
|
]
|
|
3547
2514
|
|
|
3548
|
-
[[package]]
|
|
3549
|
-
name = "winapi-build"
|
|
3550
|
-
version = "0.1.1"
|
|
3551
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3552
|
-
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
|
|
3553
|
-
|
|
3554
2515
|
[[package]]
|
|
3555
2516
|
name = "winapi-i686-pc-windows-gnu"
|
|
3556
2517
|
version = "0.4.0"
|
|
@@ -3559,11 +2520,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
|
3559
2520
|
|
|
3560
2521
|
[[package]]
|
|
3561
2522
|
name = "winapi-util"
|
|
3562
|
-
version = "0.1.
|
|
2523
|
+
version = "0.1.10"
|
|
3563
2524
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3564
|
-
checksum = "
|
|
2525
|
+
checksum = "0978bf7171b3d90bac376700cb56d606feb40f251a475a5d6634613564460b22"
|
|
3565
2526
|
dependencies = [
|
|
3566
|
-
"
|
|
2527
|
+
"windows-sys 0.60.2",
|
|
3567
2528
|
]
|
|
3568
2529
|
|
|
3569
2530
|
[[package]]
|
|
@@ -3574,68 +2535,59 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
3574
2535
|
|
|
3575
2536
|
[[package]]
|
|
3576
2537
|
name = "windows-link"
|
|
3577
|
-
version = "0.1.
|
|
3578
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3579
|
-
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
|
3580
|
-
|
|
3581
|
-
[[package]]
|
|
3582
|
-
name = "windows-registry"
|
|
3583
|
-
version = "0.4.0"
|
|
2538
|
+
version = "0.1.3"
|
|
3584
2539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3585
|
-
checksum = "
|
|
3586
|
-
dependencies = [
|
|
3587
|
-
"windows-result",
|
|
3588
|
-
"windows-strings",
|
|
3589
|
-
"windows-targets 0.53.0",
|
|
3590
|
-
]
|
|
2540
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
3591
2541
|
|
|
3592
2542
|
[[package]]
|
|
3593
|
-
name = "windows-
|
|
3594
|
-
version = "0.
|
|
2543
|
+
name = "windows-sys"
|
|
2544
|
+
version = "0.48.0"
|
|
3595
2545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3596
|
-
checksum = "
|
|
2546
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
3597
2547
|
dependencies = [
|
|
3598
|
-
"windows-
|
|
2548
|
+
"windows-targets 0.48.5",
|
|
3599
2549
|
]
|
|
3600
2550
|
|
|
3601
2551
|
[[package]]
|
|
3602
|
-
name = "windows-
|
|
3603
|
-
version = "0.
|
|
2552
|
+
name = "windows-sys"
|
|
2553
|
+
version = "0.52.0"
|
|
3604
2554
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3605
|
-
checksum = "
|
|
2555
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3606
2556
|
dependencies = [
|
|
3607
|
-
"windows-
|
|
2557
|
+
"windows-targets 0.52.6",
|
|
3608
2558
|
]
|
|
3609
2559
|
|
|
3610
2560
|
[[package]]
|
|
3611
2561
|
name = "windows-sys"
|
|
3612
|
-
version = "0.
|
|
2562
|
+
version = "0.59.0"
|
|
3613
2563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3614
|
-
checksum = "
|
|
2564
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3615
2565
|
dependencies = [
|
|
3616
|
-
"
|
|
3617
|
-
"windows_i686_gnu 0.36.1",
|
|
3618
|
-
"windows_i686_msvc 0.36.1",
|
|
3619
|
-
"windows_x86_64_gnu 0.36.1",
|
|
3620
|
-
"windows_x86_64_msvc 0.36.1",
|
|
2566
|
+
"windows-targets 0.52.6",
|
|
3621
2567
|
]
|
|
3622
2568
|
|
|
3623
2569
|
[[package]]
|
|
3624
2570
|
name = "windows-sys"
|
|
3625
|
-
version = "0.
|
|
2571
|
+
version = "0.60.2"
|
|
3626
2572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3627
|
-
checksum = "
|
|
2573
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
3628
2574
|
dependencies = [
|
|
3629
|
-
"windows-targets 0.
|
|
2575
|
+
"windows-targets 0.53.3",
|
|
3630
2576
|
]
|
|
3631
2577
|
|
|
3632
2578
|
[[package]]
|
|
3633
|
-
name = "windows-
|
|
3634
|
-
version = "0.
|
|
2579
|
+
name = "windows-targets"
|
|
2580
|
+
version = "0.48.5"
|
|
3635
2581
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3636
|
-
checksum = "
|
|
2582
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
3637
2583
|
dependencies = [
|
|
3638
|
-
"
|
|
2584
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
2585
|
+
"windows_aarch64_msvc 0.48.5",
|
|
2586
|
+
"windows_i686_gnu 0.48.5",
|
|
2587
|
+
"windows_i686_msvc 0.48.5",
|
|
2588
|
+
"windows_x86_64_gnu 0.48.5",
|
|
2589
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
2590
|
+
"windows_x86_64_msvc 0.48.5",
|
|
3639
2591
|
]
|
|
3640
2592
|
|
|
3641
2593
|
[[package]]
|
|
@@ -3656,10 +2608,11 @@ dependencies = [
|
|
|
3656
2608
|
|
|
3657
2609
|
[[package]]
|
|
3658
2610
|
name = "windows-targets"
|
|
3659
|
-
version = "0.53.
|
|
2611
|
+
version = "0.53.3"
|
|
3660
2612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3661
|
-
checksum = "
|
|
2613
|
+
checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
|
|
3662
2614
|
dependencies = [
|
|
2615
|
+
"windows-link",
|
|
3663
2616
|
"windows_aarch64_gnullvm 0.53.0",
|
|
3664
2617
|
"windows_aarch64_msvc 0.53.0",
|
|
3665
2618
|
"windows_i686_gnu 0.53.0",
|
|
@@ -3670,6 +2623,12 @@ dependencies = [
|
|
|
3670
2623
|
"windows_x86_64_msvc 0.53.0",
|
|
3671
2624
|
]
|
|
3672
2625
|
|
|
2626
|
+
[[package]]
|
|
2627
|
+
name = "windows_aarch64_gnullvm"
|
|
2628
|
+
version = "0.48.5"
|
|
2629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2630
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
2631
|
+
|
|
3673
2632
|
[[package]]
|
|
3674
2633
|
name = "windows_aarch64_gnullvm"
|
|
3675
2634
|
version = "0.52.6"
|
|
@@ -3684,9 +2643,9 @@ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
|
3684
2643
|
|
|
3685
2644
|
[[package]]
|
|
3686
2645
|
name = "windows_aarch64_msvc"
|
|
3687
|
-
version = "0.
|
|
2646
|
+
version = "0.48.5"
|
|
3688
2647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3689
|
-
checksum = "
|
|
2648
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
3690
2649
|
|
|
3691
2650
|
[[package]]
|
|
3692
2651
|
name = "windows_aarch64_msvc"
|
|
@@ -3702,9 +2661,9 @@ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
|
3702
2661
|
|
|
3703
2662
|
[[package]]
|
|
3704
2663
|
name = "windows_i686_gnu"
|
|
3705
|
-
version = "0.
|
|
2664
|
+
version = "0.48.5"
|
|
3706
2665
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3707
|
-
checksum = "
|
|
2666
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
3708
2667
|
|
|
3709
2668
|
[[package]]
|
|
3710
2669
|
name = "windows_i686_gnu"
|
|
@@ -3732,9 +2691,9 @@ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
|
3732
2691
|
|
|
3733
2692
|
[[package]]
|
|
3734
2693
|
name = "windows_i686_msvc"
|
|
3735
|
-
version = "0.
|
|
2694
|
+
version = "0.48.5"
|
|
3736
2695
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3737
|
-
checksum = "
|
|
2696
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
3738
2697
|
|
|
3739
2698
|
[[package]]
|
|
3740
2699
|
name = "windows_i686_msvc"
|
|
@@ -3750,9 +2709,9 @@ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
|
3750
2709
|
|
|
3751
2710
|
[[package]]
|
|
3752
2711
|
name = "windows_x86_64_gnu"
|
|
3753
|
-
version = "0.
|
|
2712
|
+
version = "0.48.5"
|
|
3754
2713
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3755
|
-
checksum = "
|
|
2714
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
3756
2715
|
|
|
3757
2716
|
[[package]]
|
|
3758
2717
|
name = "windows_x86_64_gnu"
|
|
@@ -3766,6 +2725,12 @@ version = "0.53.0"
|
|
|
3766
2725
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3767
2726
|
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
3768
2727
|
|
|
2728
|
+
[[package]]
|
|
2729
|
+
name = "windows_x86_64_gnullvm"
|
|
2730
|
+
version = "0.48.5"
|
|
2731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2732
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
2733
|
+
|
|
3769
2734
|
[[package]]
|
|
3770
2735
|
name = "windows_x86_64_gnullvm"
|
|
3771
2736
|
version = "0.52.6"
|
|
@@ -3780,9 +2745,9 @@ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
|
3780
2745
|
|
|
3781
2746
|
[[package]]
|
|
3782
2747
|
name = "windows_x86_64_msvc"
|
|
3783
|
-
version = "0.
|
|
2748
|
+
version = "0.48.5"
|
|
3784
2749
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3785
|
-
checksum = "
|
|
2750
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
3786
2751
|
|
|
3787
2752
|
[[package]]
|
|
3788
2753
|
name = "windows_x86_64_msvc"
|
|
@@ -3798,34 +2763,25 @@ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
|
3798
2763
|
|
|
3799
2764
|
[[package]]
|
|
3800
2765
|
name = "winreg"
|
|
3801
|
-
version = "0.
|
|
2766
|
+
version = "0.50.0"
|
|
3802
2767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3803
|
-
checksum = "
|
|
2768
|
+
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
|
|
3804
2769
|
dependencies = [
|
|
3805
|
-
"
|
|
2770
|
+
"cfg-if",
|
|
2771
|
+
"windows-sys 0.48.0",
|
|
3806
2772
|
]
|
|
3807
2773
|
|
|
3808
2774
|
[[package]]
|
|
3809
|
-
name = "
|
|
3810
|
-
version = "
|
|
2775
|
+
name = "wit-bindgen"
|
|
2776
|
+
version = "0.45.0"
|
|
3811
2777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3812
|
-
checksum = "
|
|
2778
|
+
checksum = "052283831dbae3d879dc7f51f3d92703a316ca49f91540417d38591826127814"
|
|
3813
2779
|
|
|
3814
2780
|
[[package]]
|
|
3815
2781
|
name = "writeable"
|
|
3816
|
-
version = "0.
|
|
3817
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3818
|
-
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
|
3819
|
-
|
|
3820
|
-
[[package]]
|
|
3821
|
-
name = "ws2_32-sys"
|
|
3822
|
-
version = "0.2.1"
|
|
2782
|
+
version = "0.6.1"
|
|
3823
2783
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3824
|
-
checksum = "
|
|
3825
|
-
dependencies = [
|
|
3826
|
-
"winapi 0.2.8",
|
|
3827
|
-
"winapi-build",
|
|
3828
|
-
]
|
|
2784
|
+
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
|
|
3829
2785
|
|
|
3830
2786
|
[[package]]
|
|
3831
2787
|
name = "xshell"
|
|
@@ -3848,13 +2804,13 @@ version = "0.1.0"
|
|
|
3848
2804
|
dependencies = [
|
|
3849
2805
|
"anyhow",
|
|
3850
2806
|
"camino",
|
|
3851
|
-
"clap 4.5.
|
|
2807
|
+
"clap 4.5.46",
|
|
3852
2808
|
"convert_case",
|
|
3853
2809
|
"enum-iterator",
|
|
3854
2810
|
"proc-macro2",
|
|
3855
2811
|
"quote",
|
|
3856
2812
|
"regex",
|
|
3857
|
-
"reqwest
|
|
2813
|
+
"reqwest",
|
|
3858
2814
|
"serde",
|
|
3859
2815
|
"serde_json",
|
|
3860
2816
|
"ungrammar",
|
|
@@ -3863,9 +2819,9 @@ dependencies = [
|
|
|
3863
2819
|
|
|
3864
2820
|
[[package]]
|
|
3865
2821
|
name = "yoke"
|
|
3866
|
-
version = "0.
|
|
2822
|
+
version = "0.8.0"
|
|
3867
2823
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3868
|
-
checksum = "
|
|
2824
|
+
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
|
|
3869
2825
|
dependencies = [
|
|
3870
2826
|
"serde",
|
|
3871
2827
|
"stable_deref_trait",
|
|
@@ -3875,14 +2831,14 @@ dependencies = [
|
|
|
3875
2831
|
|
|
3876
2832
|
[[package]]
|
|
3877
2833
|
name = "yoke-derive"
|
|
3878
|
-
version = "0.
|
|
2834
|
+
version = "0.8.0"
|
|
3879
2835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3880
|
-
checksum = "
|
|
2836
|
+
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
|
3881
2837
|
dependencies = [
|
|
3882
2838
|
"proc-macro2",
|
|
3883
2839
|
"quote",
|
|
3884
|
-
"syn 2.0.
|
|
3885
|
-
"synstructure
|
|
2840
|
+
"syn 2.0.106",
|
|
2841
|
+
"synstructure",
|
|
3886
2842
|
]
|
|
3887
2843
|
|
|
3888
2844
|
[[package]]
|
|
@@ -3902,21 +2858,26 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
|
3902
2858
|
dependencies = [
|
|
3903
2859
|
"proc-macro2",
|
|
3904
2860
|
"quote",
|
|
3905
|
-
"syn 2.0.
|
|
3906
|
-
"synstructure
|
|
2861
|
+
"syn 2.0.106",
|
|
2862
|
+
"synstructure",
|
|
3907
2863
|
]
|
|
3908
2864
|
|
|
3909
2865
|
[[package]]
|
|
3910
|
-
name = "
|
|
3911
|
-
version = "
|
|
2866
|
+
name = "zerotrie"
|
|
2867
|
+
version = "0.2.2"
|
|
3912
2868
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3913
|
-
checksum = "
|
|
2869
|
+
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
|
|
2870
|
+
dependencies = [
|
|
2871
|
+
"displaydoc",
|
|
2872
|
+
"yoke",
|
|
2873
|
+
"zerofrom",
|
|
2874
|
+
]
|
|
3914
2875
|
|
|
3915
2876
|
[[package]]
|
|
3916
2877
|
name = "zerovec"
|
|
3917
|
-
version = "0.
|
|
2878
|
+
version = "0.11.4"
|
|
3918
2879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3919
|
-
checksum = "
|
|
2880
|
+
checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
|
|
3920
2881
|
dependencies = [
|
|
3921
2882
|
"yoke",
|
|
3922
2883
|
"zerofrom",
|
|
@@ -3925,11 +2886,11 @@ dependencies = [
|
|
|
3925
2886
|
|
|
3926
2887
|
[[package]]
|
|
3927
2888
|
name = "zerovec-derive"
|
|
3928
|
-
version = "0.
|
|
2889
|
+
version = "0.11.1"
|
|
3929
2890
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3930
|
-
checksum = "
|
|
2891
|
+
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
|
3931
2892
|
dependencies = [
|
|
3932
2893
|
"proc-macro2",
|
|
3933
2894
|
"quote",
|
|
3934
|
-
"syn 2.0.
|
|
2895
|
+
"syn 2.0.106",
|
|
3935
2896
|
]
|