squawk-cli 2.33.2__tar.gz → 2.35.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.35.0/Cargo.lock +2876 -0
- squawk_cli-2.35.0/Cargo.toml +88 -0
- squawk_cli-2.35.0/PKG-INFO +15 -0
- squawk_cli-2.35.0/crates/squawk/src/reporter.rs +646 -0
- squawk_cli-2.35.0/crates/squawk/tests/example_output.rs +15 -0
- squawk_cli-2.35.0/crates/squawk_github/src/app.rs +304 -0
- squawk_cli-2.35.0/crates/squawk_ide/src/binder.rs +402 -0
- squawk_cli-2.35.0/crates/squawk_ide/src/code_actions.rs +1148 -0
- squawk_cli-2.35.0/crates/squawk_ide/src/column_name.rs +433 -0
- squawk_cli-2.35.0/crates/squawk_ide/src/document_symbols.rs +562 -0
- squawk_cli-2.35.0/crates/squawk_ide/src/expand_selection.rs +579 -0
- squawk_cli-2.35.0/crates/squawk_ide/src/find_references.rs +343 -0
- squawk_cli-2.35.0/crates/squawk_ide/src/goto_definition.rs +3457 -0
- squawk_cli-2.35.0/crates/squawk_ide/src/hover.rs +2647 -0
- squawk_cli-2.35.0/crates/squawk_ide/src/inlay_hints.rs +346 -0
- squawk_cli-2.35.0/crates/squawk_ide/src/lib.rs +17 -0
- squawk_cli-2.35.0/crates/squawk_ide/src/quote.rs +113 -0
- squawk_cli-2.35.0/crates/squawk_ide/src/resolve.rs +1473 -0
- squawk_cli-2.35.0/crates/squawk_ide/src/symbols.rs +78 -0
- squawk_cli-2.35.0/crates/squawk_linter/Cargo.toml +28 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/lib.rs +496 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/adding_field_with_default.rs +322 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/adding_foreign_key_constraint.rs +172 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/adding_not_null_field.rs +93 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/adding_primary_key_constraint.rs +88 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/adding_required_field.rs +104 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/ban_alter_domain_with_add_constraint.rs +53 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/ban_char_field.rs +222 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/ban_concurrent_index_creation_in_transaction.rs +137 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/ban_create_domain_with_constraint.rs +69 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/ban_drop_column.rs +39 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/ban_drop_database.rs +38 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/ban_drop_not_null.rs +43 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/ban_drop_table.rs +37 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/ban_truncate_cascade.rs +46 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/ban_uncommitted_transaction.rs +198 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/changing_column_type.rs +60 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/constraint_missing_not_valid.rs +313 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/disallow_unique_constraint.rs +163 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/prefer_bigint_over_int.rs +169 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/prefer_bigint_over_smallint.rs +161 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/prefer_identity.rs +148 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/prefer_robust_stmts.rs +735 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/prefer_text_field.rs +223 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/prefer_timestamptz.rs +207 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/renaming_column.rs +39 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/renaming_table.rs +39 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/require_concurrent_index_creation.rs +131 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/require_concurrent_index_deletion.rs +106 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/require_timeout_settings.rs +403 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__arbitrary_func_err.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_random_with_args_err.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_uuid_error.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_uuid_error_multi_stmt.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_volatile_func_err.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__docs_example_error_on_pg_11.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__generated_stored_err.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_foreign_key_constraint__test__add_column_references_lock.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_foreign_key_constraint__test__add_foreign_key_constraint_lock.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test__regression_gh_issue_519.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test__set_not_null.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_primary_key_constraint__test__plain_primary_key.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_primary_key_constraint__test__serial_primary_key.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_required_field__test__not_null_without_default.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_alter_domain_with_add_constraint__test__err.snap +8 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__all_the_types.snap +51 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__alter_table_err.snap +12 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__array_char_type_err.snap +12 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__case_insensitive.snap +12 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__creating_table_with_char_errors.snap +35 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_concurrent_index_creation_in_transaction__test__assuming_in_transaction_err.snap +10 -0
- squawk_cli-2.35.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 +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_create_domain_with_constraint__test__err.snap +8 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_create_domain_with_constraint__test__err_with_multiple_constraints.snap +8 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_drop_column__test__err.snap +8 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_drop_database__test__ban_drop_database.snap +16 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_drop_not_null__test__err.snap +8 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_drop_table__test__err.snap +16 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_truncate_cascade__test__err.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__changing_column_type__test__another_err.snap +12 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__changing_column_type__test__err.snap +8 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test__adding_check_constraint_err.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test__adding_fk_err.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test__not_valid_validate_assume_transaction_err.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test__not_valid_validate_transaction_err.snap +10 -0
- squawk_cli-2.35.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 +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test__adding_unique_constraint_err.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test__unique_constraint_inline_add_column_err.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test__unique_constraint_inline_add_column_unique_err.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_bigint_over_int__test__err.snap +52 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_bigint_over_smallint__test__err.snap +44 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_identity__test__err.snap +74 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_identity__test__ok_when_quoted.snap +24 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__alter_column_set_not_null.snap +8 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__alter_table_drop_column_err.snap +11 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__alter_table_drop_constraint_err.snap +11 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__alter_table_err.snap +11 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__create_index_concurrently_err.snap +13 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__create_table_err.snap +11 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__create_table_with_on_commit_drop_err.snap +11 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__create_temp_table_without_on_commit_drop_err.snap +11 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__disable_row_level_security_err.snap +8 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__double_add_after_drop_err.snap +8 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__drop_index_err.snap +11 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__enable_row_level_security_err.snap +8 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__enable_row_level_security_without_exists_check_err.snap +8 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test__adding_column_non_text_err.snap +14 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test__create_table_with_pgcatalog_varchar_err.snap +14 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test__create_table_with_varchar_err.snap +14 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test__increase_varchar_size_err.snap +14 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_timestamptz__test__alter_table_with_timestamp_err.snap +23 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_timestamptz__test__create_table_with_timestamp_err.snap +23 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__renaming_column__test__err.snap +8 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__renaming_table__test__err.snap +8 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__require_concurrent_index_creation__test__adding_index_non_concurrently_err.snap +13 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__require_concurrent_index_deletion__test__drop_index_missing_concurrently_err.snap +13 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__begin_assume_transaction_err.snap +22 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__begin_repeated_err.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__commit_repeated_err.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__commit_with_assume_in_transaction_err.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__rollback_with_assume_in_transaction_err.snap +10 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/rules/transaction_nesting.rs +171 -0
- squawk_cli-2.35.0/crates/squawk_linter/src/test_utils.rs +134 -0
- squawk_cli-2.35.0/crates/squawk_parser/Cargo.toml +31 -0
- squawk_cli-2.35.0/crates/squawk_parser/src/generated/syntax_kind.rs +2195 -0
- squawk_cli-2.35.0/crates/squawk_parser/src/generated/token_sets.rs +2214 -0
- squawk_cli-2.35.0/crates/squawk_parser/src/grammar.rs +14525 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/data/err/select.sql +68 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/data/ok/select_casts.sql +278 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/data/ok/select_cte_pg19.sql +5 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__alter_database_ok.snap +311 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__alter_foreign_data_wrapper_err.snap +25 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__alter_procedure_ok.snap +436 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__alter_sequence_err.snap +23 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__alter_server_err.snap +21 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__alter_subscription_ok.snap +383 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__alter_table_err.snap +240 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__copy_err.snap +56 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__copy_ok.snap +415 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__create_function_err.snap +151 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__create_function_ok.snap +3227 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__create_index_err.snap +50 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__create_table_err.snap +729 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__drop_database_err.snap +31 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__drop_table_err.snap +64 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__insert_err.snap +198 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__misc_ok.snap +7048 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__prepare_err.snap +88 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__regression_compression_lz4.snap +5 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__regression_eager_aggregate.snap +5 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__regression_errors.snap +461 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__regression_nls.snap +5 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__regression_partition_merge.snap +5 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__regression_partition_split.snap +5 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__regression_pg_dependencies.snap +5 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__regression_pg_ndistinct.snap +5 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__regression_stats_rewrite.snap +5 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__reindex_err.snap +38 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__schemas_ok.snap +736 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__select_casts_ok.snap +4112 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__select_cte_err.snap +359 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__select_cte_pg19_ok.snap +58 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__select_err.snap +817 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__update_err.snap +94 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__vacuum_err.snap +38 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/snapshots/tests__values_err.snap +62 -0
- squawk_cli-2.35.0/crates/squawk_parser/tests/tests.rs +197 -0
- squawk_cli-2.35.0/crates/squawk_server/src/lib.rs +766 -0
- squawk_cli-2.35.0/crates/squawk_server/src/lint.rs +113 -0
- squawk_cli-2.35.0/crates/squawk_syntax/Cargo.toml +26 -0
- squawk_cli-2.35.0/crates/squawk_syntax/src/ast/generated/nodes.rs +33267 -0
- squawk_cli-2.35.0/crates/squawk_syntax/src/ast/node_ext.rs +508 -0
- squawk_cli-2.35.0/crates/squawk_syntax/src/ast/traits.rs +36 -0
- squawk_cli-2.35.0/crates/squawk_syntax/src/ast.rs +128 -0
- squawk_cli-2.35.0/crates/squawk_syntax/src/lib.rs +482 -0
- squawk_cli-2.35.0/crates/squawk_syntax/src/postgresql.ungram +3222 -0
- squawk_cli-2.35.0/crates/squawk_syntax/src/snapshots/squawk_syntax__test__alter_aggregate_params_validation.snap +78 -0
- squawk_cli-2.35.0/crates/squawk_syntax/src/snapshots/squawk_syntax__test__array_exprs_validation.snap +55 -0
- squawk_cli-2.35.0/crates/squawk_syntax/src/snapshots/squawk_syntax__test__create_aggregate_params_validation.snap +56 -0
- squawk_cli-2.35.0/crates/squawk_syntax/src/snapshots/squawk_syntax__test__create_table_validation.snap +43 -0
- squawk_cli-2.35.0/crates/squawk_syntax/src/snapshots/squawk_syntax__test__custom_operators_validation.snap +126 -0
- squawk_cli-2.35.0/crates/squawk_syntax/src/snapshots/squawk_syntax__test__drop_aggregate_params_validation.snap +258 -0
- squawk_cli-2.35.0/crates/squawk_syntax/src/snapshots/squawk_syntax__test__join_clauses_validation.snap +425 -0
- squawk_cli-2.35.0/crates/squawk_syntax/src/snapshots/squawk_syntax__test__non_standard_param_validation.snap +41 -0
- squawk_cli-2.35.0/crates/squawk_syntax/src/snapshots/squawk_syntax__test__validate_string_continuation_validation.snap +120 -0
- squawk_cli-2.35.0/crates/squawk_syntax/src/test.rs +79 -0
- squawk_cli-2.33.2/Cargo.lock +0 -2871
- squawk_cli-2.33.2/Cargo.toml +0 -88
- squawk_cli-2.33.2/PKG-INFO +0 -15
- squawk_cli-2.33.2/crates/squawk/src/reporter.rs +0 -647
- squawk_cli-2.33.2/crates/squawk/tests/example_output.rs +0 -15
- squawk_cli-2.33.2/crates/squawk_github/src/app.rs +0 -304
- squawk_cli-2.33.2/crates/squawk_ide/src/binder.rs +0 -115
- squawk_cli-2.33.2/crates/squawk_ide/src/code_actions.rs +0 -936
- squawk_cli-2.33.2/crates/squawk_ide/src/column_name.rs +0 -428
- squawk_cli-2.33.2/crates/squawk_ide/src/expand_selection.rs +0 -577
- squawk_cli-2.33.2/crates/squawk_ide/src/goto_definition.rs +0 -443
- squawk_cli-2.33.2/crates/squawk_ide/src/lib.rs +0 -12
- squawk_cli-2.33.2/crates/squawk_ide/src/resolve.rs +0 -83
- squawk_cli-2.33.2/crates/squawk_ide/src/symbols.rs +0 -45
- squawk_cli-2.33.2/crates/squawk_linter/Cargo.toml +0 -27
- squawk_cli-2.33.2/crates/squawk_linter/src/lib.rs +0 -496
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/adding_field_with_default.rs +0 -348
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/adding_foreign_key_constraint.rs +0 -168
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/adding_not_null_field.rs +0 -100
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/adding_primary_key_constraint.rs +0 -93
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/adding_required_field.rs +0 -110
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/ban_alter_domain_with_add_constraint.rs +0 -56
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/ban_char_field.rs +0 -233
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/ban_concurrent_index_creation_in_transaction.rs +0 -112
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/ban_create_domain_with_constraint.rs +0 -74
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/ban_drop_column.rs +0 -41
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/ban_drop_database.rs +0 -40
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/ban_drop_not_null.rs +0 -45
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/ban_drop_table.rs +0 -39
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/ban_truncate_cascade.rs +0 -49
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/ban_uncommitted_transaction.rs +0 -274
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/changing_column_type.rs +0 -64
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/constraint_missing_not_valid.rs +0 -294
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/disallow_unique_constraint.rs +0 -166
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/prefer_bigint_over_int.rs +0 -180
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/prefer_bigint_over_smallint.rs +0 -172
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/prefer_identity.rs +0 -161
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/prefer_robust_stmts.rs +0 -725
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/prefer_text_field.rs +0 -233
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/prefer_timestamptz.rs +0 -213
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/renaming_column.rs +0 -41
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/renaming_table.rs +0 -41
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/require_concurrent_index_creation.rs +0 -126
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/require_concurrent_index_deletion.rs +0 -113
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/require_timeout_settings.rs +0 -551
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__arbitrary_func_err.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_random_with_args_err.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_uuid_error.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_uuid_error_multi_stmt.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_volatile_func_err.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__docs_example_error_on_pg_11.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__generated_stored_err.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test__regression_gh_issue_519.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test__set_not_null.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_primary_key_constraint__test__plain_primary_key.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_primary_key_constraint__test__serial_primary_key.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_required_field__test__not_null_without_default.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_alter_domain_with_add_constraint__test__err.snap +0 -13
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__all_the_types.snap +0 -120
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__alter_table_err.snap +0 -25
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__array_char_type_err.snap +0 -25
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__case_insensitive.snap +0 -25
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__creating_table_with_char_errors.snap +0 -82
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_concurrent_index_creation_in_transaction__test__assuming_in_transaction_err.snap +0 -15
- squawk_cli-2.33.2/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 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_create_domain_with_constraint__test__err.snap +0 -13
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_create_domain_with_constraint__test__err_with_multiple_constraints.snap +0 -13
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_drop_column__test__err.snap +0 -13
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_drop_database__test__ban_drop_database.snap +0 -27
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_drop_not_null__test__err.snap +0 -13
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_drop_table__test__err.snap +0 -27
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_truncate_cascade__test__err.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__changing_column_type__test__another_err.snap +0 -20
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__changing_column_type__test__err.snap +0 -13
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test__adding_check_constraint_err.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test__adding_fk_err.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test__not_valid_validate_assume_transaction_err.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test__not_valid_validate_transaction_err.snap +0 -15
- squawk_cli-2.33.2/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 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test__adding_unique_constraint_err.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test__unique_constraint_inline_add_column_err.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test__unique_constraint_inline_add_column_unique_err.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_bigint_over_int__test__err.snap +0 -111
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_bigint_over_smallint__test__err.snap +0 -90
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_identity__test__err.snap +0 -153
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_identity__test__ok_when_quoted.snap +0 -48
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__alter_column_set_not_null.snap +0 -13
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__alter_table_drop_column_err.snap +0 -25
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__alter_table_drop_constraint_err.snap +0 -25
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__alter_table_err.snap +0 -25
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__create_index_concurrently_err.snap +0 -27
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__create_table_err.snap +0 -25
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__create_table_with_on_commit_drop_err.snap +0 -25
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__create_temp_table_without_on_commit_drop_err.snap +0 -25
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__disable_row_level_security_err.snap +0 -13
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__double_add_after_drop_err.snap +0 -13
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__drop_index_err.snap +0 -25
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__enable_row_level_security_err.snap +0 -13
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__enable_row_level_security_without_exists_check_err.snap +0 -13
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test__adding_column_non_text_err.snap +0 -27
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test__create_table_with_pgcatalog_varchar_err.snap +0 -27
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test__create_table_with_varchar_err.snap +0 -27
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test__increase_varchar_size_err.snap +0 -27
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_timestamptz__test__alter_table_with_timestamp_err.snap +0 -48
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_timestamptz__test__create_table_with_timestamp_err.snap +0 -48
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__renaming_column__test__err.snap +0 -13
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__renaming_table__test__err.snap +0 -13
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__require_concurrent_index_creation__test__adding_index_non_concurrently_err.snap +0 -27
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__require_concurrent_index_deletion__test__drop_index_missing_concurrently_err.snap +0 -27
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__begin_assume_transaction_err.snap +0 -33
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__begin_repeated_err.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__commit_repeated_err.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__commit_with_assume_in_transaction_err.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__rollback_with_assume_in_transaction_err.snap +0 -15
- squawk_cli-2.33.2/crates/squawk_linter/src/rules/transaction_nesting.rs +0 -180
- squawk_cli-2.33.2/crates/squawk_linter/src/test_utils.rs +0 -69
- squawk_cli-2.33.2/crates/squawk_parser/Cargo.toml +0 -30
- squawk_cli-2.33.2/crates/squawk_parser/src/generated/syntax_kind.rs +0 -2171
- squawk_cli-2.33.2/crates/squawk_parser/src/generated/token_sets.rs +0 -2186
- squawk_cli-2.33.2/crates/squawk_parser/src/grammar.rs +0 -14507
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/err/select.sql +0 -59
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/ok/select_casts.sql +0 -274
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/LICENSE +0 -23
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/advisory_lock.sql +0 -148
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/aggregates.sql +0 -1634
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/alter_generic.sql +0 -616
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/alter_operator.sql +0 -225
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/alter_table.sql +0 -3041
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/amutils.sql +0 -99
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/arrays.sql +0 -890
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/async.sql +0 -23
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/bit.sql +0 -228
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/bitmapops.sql +0 -47
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/boolean.sql +0 -271
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/box.sql +0 -289
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/brin.sql +0 -536
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/brin_bloom.sql +0 -376
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/brin_multi.sql +0 -706
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/btree_index.sql +0 -390
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/case.sql +0 -270
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/char.sql +0 -94
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/circle.sql +0 -57
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/cluster.sql +0 -323
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/collate.icu.utf8.sql +0 -1001
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/collate.linux.utf8.sql +0 -457
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/collate.sql +0 -307
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/collate.utf8.sql +0 -147
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/combocid.sql +0 -111
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/comments.sql +0 -42
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/compression.sql +0 -140
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/constraints.sql +0 -1000
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/conversion.sql +0 -370
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/copy.sql +0 -342
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/copy2.sql +0 -429
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/copydml.sql +0 -92
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/copyencoding.sql +0 -48
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/copyselect.sql +0 -91
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/create_aggregate.sql +0 -329
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/create_am.sql +0 -367
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/create_cast.sql +0 -75
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/create_function_c.sql +0 -30
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/create_function_sql.sql +0 -465
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/create_index.sql +0 -1489
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/create_index_spgist.sql +0 -437
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/create_misc.sql +0 -258
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/create_operator.sql +0 -268
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/create_procedure.sql +0 -281
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/create_role.sql +0 -216
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/create_schema.sql +0 -67
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/create_table.sql +0 -715
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/create_table_like.sql +0 -243
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/create_type.sql +0 -296
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/create_view.sql +0 -801
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/database.sql +0 -24
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/date.sql +0 -376
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/dbsize.sql +0 -72
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/delete.sql +0 -25
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/dependency.sql +0 -110
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/domain.sql +0 -884
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/drop_if_exists.sql +0 -304
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/drop_operator.sql +0 -56
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/enum.sql +0 -342
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/equivclass.sql +0 -321
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/errors.sql +0 -369
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/event_trigger.sql +0 -587
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/event_trigger_login.sql +0 -21
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/explain.sql +0 -189
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/expressions.sql +0 -209
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/fast_default.sql +0 -628
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/float4.sql +0 -360
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/float8.sql +0 -538
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/foreign_data.sql +0 -783
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/foreign_key.sql +0 -2348
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/functional_deps.sql +0 -210
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/generated_stored.sql +0 -693
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/generated_virtual.sql +0 -795
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/geometry.sql +0 -531
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/gin.sql +0 -183
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/gist.sql +0 -188
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/groupingsets.sql +0 -704
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/guc.sql +0 -370
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/hash_func.sql +0 -264
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/hash_index.sql +0 -321
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/hash_part.sql +0 -90
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/horology.sql +0 -698
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/identity.sql +0 -515
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/incremental_sort.sql +0 -300
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/index_including.sql +0 -236
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/index_including_gist.sql +0 -88
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/indexing.sql +0 -906
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/indirect_toast.sql +0 -79
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/inet.sql +0 -274
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/infinite_recurse.sql +0 -24
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/inherit.sql +0 -1541
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/init_privs.sql +0 -10
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/insert.sql +0 -662
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/insert_conflict.sql +0 -591
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/int2.sql +0 -157
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/int4.sql +0 -212
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/int8.sql +0 -302
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/interval.sql +0 -816
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/join.sql +0 -3585
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/join_hash.sql +0 -625
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/json.sql +0 -890
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/json_encoding.sql +0 -79
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/jsonb.sql +0 -1586
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/jsonb_jsonpath.sql +0 -1149
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/jsonpath.sql +0 -267
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/jsonpath_encoding.sql +0 -56
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/largeobject.sql +0 -300
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/limit.sql +0 -199
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/line.sql +0 -54
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/lock.sql +0 -197
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/lseg.sql +0 -28
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/macaddr.sql +0 -49
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/macaddr8.sql +0 -95
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/maintain_every.sql +0 -26
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/matview.sql +0 -306
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/md5.sql +0 -36
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/memoize.sql +0 -246
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/merge.sql +0 -1792
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/misc.sql +0 -268
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/misc_functions.sql +0 -410
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/misc_sanity.sql +0 -81
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/money.sql +0 -148
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/multirangetypes.sql +0 -883
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/mvcc.sql +0 -44
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/name.sql +0 -87
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/namespace.sql +0 -100
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/numa.sql +0 -6
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/numeric.sql +0 -1560
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/numeric_big.sql +0 -1366
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/numerology.sql +0 -195
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/object_address.sql +0 -294
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/oid.sql +0 -57
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/oidjoins.sql +0 -49
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/opr_sanity.sql +0 -1426
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/partition_aggregate.sql +0 -336
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/partition_info.sql +0 -129
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/partition_join.sql +0 -1256
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/partition_prune.sql +0 -1444
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/password.sql +0 -120
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/path.sql +0 -50
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/pg_lsn.sql +0 -60
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/plancache.sql +0 -225
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/plpgsql.sql +0 -4777
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/point.sql +0 -102
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/polygon.sql +0 -148
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/polymorphism.sql +0 -1134
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/portals.sql +0 -607
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/portals_p2.sql +0 -98
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/predicate.sql +0 -185
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/prepare.sql +0 -84
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/prepared_xacts.sql +0 -162
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/privileges.sql +0 -2061
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/publication.sql +0 -1156
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/random.sql +0 -279
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/rangefuncs.sql +0 -827
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/rangetypes.sql +0 -700
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/regex.sql +0 -158
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/regproc.sql +0 -153
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/reindex_catalog.sql +0 -52
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/reloptions.sql +0 -139
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/replica_identity.sql +0 -134
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/returning.sql +0 -409
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/roleattributes.sql +0 -98
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/rowsecurity.sql +0 -2339
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/rowtypes.sql +0 -564
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/rules.sql +0 -1420
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/sanity_check.sql +0 -21
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/security_label.sql +0 -45
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/select.sql +0 -264
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/select_distinct.sql +0 -276
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/select_distinct_on.sql +0 -84
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/select_having.sql +0 -50
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/select_implicit.sql +0 -156
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/select_into.sql +0 -138
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/select_parallel.sql +0 -590
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/select_views.sql +0 -155
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/sequence.sql +0 -415
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/spgist.sql +0 -91
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/sqljson.sql +0 -501
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/sqljson_jsontable.sql +0 -552
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/sqljson_queryfuncs.sql +0 -501
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/stats.sql +0 -920
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/stats_ext.sql +0 -1748
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/stats_import.sql +0 -973
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/strings.sql +0 -892
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/subscription.sql +0 -324
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/subselect.sql +0 -1302
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/sysviews.sql +0 -121
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/tablesample.sql +0 -108
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/tablespace.sql +0 -382
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/temp.sql +0 -416
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/test_setup.sql +0 -280
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/text.sql +0 -114
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/tid.sql +0 -72
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/tidrangescan.sql +0 -101
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/tidscan.sql +0 -104
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/time.sql +0 -79
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/timestamp.sql +0 -432
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/timestamptz.sql +0 -697
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/timetz.sql +0 -108
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/transactions.sql +0 -644
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/triggers.sql +0 -2721
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/truncate.sql +0 -329
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/tsdicts.sql +0 -283
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/tsearch.sql +0 -887
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/tsrf.sql +0 -185
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/tstypes.sql +0 -281
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/tuplesort.sql +0 -307
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/txid.sql +0 -102
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/type_sanity.sql +0 -584
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/typed_table.sql +0 -74
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/unicode.sql +0 -35
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/union.sql +0 -594
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/updatable_views.sql +0 -2094
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/update.sql +0 -669
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/uuid.sql +0 -151
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/vacuum.sql +0 -497
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/vacuum_parallel.sql +0 -46
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/varchar.sql +0 -73
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/window.sql +0 -1960
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/with.sql +0 -1719
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/without_overlaps.sql +0 -2008
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/write_parallel.sql +0 -43
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/xid.sql +0 -171
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/xml.sql +0 -675
- squawk_cli-2.33.2/crates/squawk_parser/tests/data/regression_suite/xmlmap.sql +0 -63
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__alter_database_ok.snap +0 -309
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__alter_foreign_data_wrapper_err.snap +0 -22
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__alter_procedure_ok.snap +0 -434
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__alter_sequence_err.snap +0 -20
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__alter_server_err.snap +0 -18
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__alter_subscription_ok.snap +0 -383
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__alter_table_err.snap +0 -219
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__copy_err.snap +0 -47
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__copy_ok.snap +0 -374
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__create_function_err.snap +0 -135
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__create_function_ok.snap +0 -3225
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__create_index_err.snap +0 -47
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__create_table_err.snap +0 -688
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__drop_database_err.snap +0 -28
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__drop_table_err.snap +0 -58
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__insert_err.snap +0 -183
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__misc_ok.snap +0 -7045
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__prepare_err.snap +0 -82
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__regression_errors.snap +0 -5
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__reindex_err.snap +0 -32
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__schemas_ok.snap +0 -731
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__select_casts_ok.snap +0 -4063
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__select_cte_err.snap +0 -341
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__select_err.snap +0 -652
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__update_err.snap +0 -88
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__vacuum_err.snap +0 -32
- squawk_cli-2.33.2/crates/squawk_parser/tests/snapshots/tests__values_err.snap +0 -53
- squawk_cli-2.33.2/crates/squawk_parser/tests/tests.rs +0 -165
- squawk_cli-2.33.2/crates/squawk_server/src/lib.rs +0 -543
- squawk_cli-2.33.2/crates/squawk_server/src/lint.rs +0 -113
- squawk_cli-2.33.2/crates/squawk_syntax/Cargo.toml +0 -25
- squawk_cli-2.33.2/crates/squawk_syntax/src/ast/generated/nodes.rs +0 -32911
- squawk_cli-2.33.2/crates/squawk_syntax/src/ast/node_ext.rs +0 -503
- squawk_cli-2.33.2/crates/squawk_syntax/src/ast/traits.rs +0 -28
- squawk_cli-2.33.2/crates/squawk_syntax/src/ast.rs +0 -126
- squawk_cli-2.33.2/crates/squawk_syntax/src/lib.rs +0 -482
- squawk_cli-2.33.2/crates/squawk_syntax/src/postgresql.ungram +0 -3183
- squawk_cli-2.33.2/crates/squawk_syntax/src/snapshots/squawk_syntax__test__alter_aggregate_params_validation.snap +0 -75
- squawk_cli-2.33.2/crates/squawk_syntax/src/snapshots/squawk_syntax__test__array_exprs_validation.snap +0 -49
- squawk_cli-2.33.2/crates/squawk_syntax/src/snapshots/squawk_syntax__test__create_aggregate_params_validation.snap +0 -53
- squawk_cli-2.33.2/crates/squawk_syntax/src/snapshots/squawk_syntax__test__create_table_validation.snap +0 -40
- squawk_cli-2.33.2/crates/squawk_syntax/src/snapshots/squawk_syntax__test__custom_operators_validation.snap +0 -105
- squawk_cli-2.33.2/crates/squawk_syntax/src/snapshots/squawk_syntax__test__drop_aggregate_params_validation.snap +0 -249
- squawk_cli-2.33.2/crates/squawk_syntax/src/snapshots/squawk_syntax__test__join_clauses_validation.snap +0 -407
- squawk_cli-2.33.2/crates/squawk_syntax/src/snapshots/squawk_syntax__test__non_standard_param_validation.snap +0 -35
- squawk_cli-2.33.2/crates/squawk_syntax/src/snapshots/squawk_syntax__test__validate_string_continuation_validation.snap +0 -99
- squawk_cli-2.33.2/crates/squawk_syntax/src/test.rs +0 -59
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/Cargo.toml +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/README.md +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/cmd.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/config.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/debug.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/file.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/file_finding.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/github.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/main.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/snapshots/example.svg +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/snapshots/squawk__config__test_config__load_assume_in_transaction.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/snapshots/squawk__config__test_config__load_cfg_full.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/snapshots/squawk__config__test_config__load_excluded_paths.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/snapshots/squawk__config__test_config__load_excluded_rules.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/snapshots/squawk__config__test_config__load_excluded_rules_with_alias.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/snapshots/squawk__config__test_config__load_fail_on_violations.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/snapshots/squawk__config__test_config__load_pg_version.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/snapshots/squawk__debug__test__dump_ast_basic_output.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/snapshots/squawk__github__test_github_comment__generating_comment_multiple_files.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/snapshots/squawk__github__test_github_comment__generating_comment_no_violations.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/snapshots/squawk__github__test_github_comment__generating_no_violations_no_files.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/snapshots/squawk__reporter__test_check_files__check_files_invalid_syntax.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/snapshots/squawk__reporter__test_reporter__display_no_violations_tty.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/snapshots/squawk__reporter__test_reporter__display_violations_tty.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/snapshots/squawk__reporter__test_reporter__display_violations_tty_and_github_annotations.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk/src/snapshots/squawk__reporter__test_reporter__span_offsets.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_github/Cargo.toml +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_github/README.md +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_github/src/actions.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_github/src/lib.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_ide/Cargo.toml +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_ide/src/generated/keywords.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_ide/src/generated/mod.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_ide/src/offsets.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_ide/src/scope.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_ide/src/test_utils.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/Cargo.toml +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/README.md +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/LICENSE-MIT +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/cursor.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/lib.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__bitstring.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__block_comment.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__block_comment_unterminated.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__dollar_quote_mismatch_tags_complex.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__dollar_quote_mismatch_tags_simple.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__dollar_quoting.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__dollar_strings_part2.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__lex_statement.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__line_comment.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__line_comment_whitespace.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__numeric.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__numeric_non_decimal.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__numeric_with_seperators.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__params.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__quoted_ident.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__quoted_ident_with_escape_quote.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__select_with_period.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__string.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__string_unicode_escape.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__string_with_escapes.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_lexer/src/token.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_linter/README.md +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_linter/src/analyze.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_linter/src/ignore.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_linter/src/ignore_index.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_linter/src/rules/mod.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_linter/src/rules/non_volatile_built_in_functions.txt +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__add_numbers_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_bool_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_empty_array_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_enum_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_func_current_timestamp_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.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.33.2 → squawk_cli-2.35.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_jsonb_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_str_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_with_const_bin_expr.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__docs_example_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.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.33.2 → squawk_cli-2.35.0}/crates/squawk_linter/src/snapshots/squawk_linter__version__test_pg_version__parse.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_linter/src/version.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_linter/src/visitors.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/README.md +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/src/event.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/src/generated/mod.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/src/input.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/src/lexed_str.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/src/lib.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/src/output.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/src/shortcuts.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/src/syntax_kind.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/src/token_set.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/err/alter_foreign_data_wrapper.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/err/alter_sequence.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/err/alter_server.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/err/alter_table.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/err/copy.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/err/create_function.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/err/create_index.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/err/create_table.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/err/drop_database.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/err/drop_table.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/err/insert.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/err/prepare.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/err/reindex.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/err/select_cte.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/err/update.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/err/vacuum.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/err/values.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_aggregate.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_collation.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_conversion.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_database.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_default_privileges.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_domain.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_event_trigger.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_extension.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_foreign_data_wrapper.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_foreign_table.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_function.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_group.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_index.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_language.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_large_object.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_materialized_view.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_operator.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_operator_class.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_operator_family.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_policy.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_procedure.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_publication.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_role.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_routine.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_rule.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_schema.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_sequence.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_server.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_statistics.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_subscription.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_system.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_table.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_table_pg17.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_tablespace.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_text_search_configuration.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_text_search_dictionary.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_text_search_parser.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_text_search_template.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_trigger.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_type.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_user.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_user_mapping.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/alter_view.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/analyze.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/call.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/checkpoint.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/close.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/cluster.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/comment.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/copy.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_access_method.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_aggregate.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_cast.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_collation.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_conversion.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_database.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_domain.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_event_trigger.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_ext.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_foreign_data_wrapper.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_foreign_table.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_foreign_table_pg18.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_function.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_group.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_index.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_language.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_materialized_view.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_operator.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_operator_class.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_operator_family.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_policy.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_procedure.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_publication.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_role.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_rule.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_sequence.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_server.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_statistics.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_subscription.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_table.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_table_as.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_table_pg17.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_tablespace.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_text_search_config.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_text_search_dict.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_text_search_parser.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_text_search_template.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_transform.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_trigger.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_type.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_user.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_view.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/create_view_extra_parens.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/deallocate.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/declare.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/delete.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/discard.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/do.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_access_method.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_aggregate.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_cast.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_collation.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_conversion.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_database.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_domain.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_event_trigger.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_extension.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_foreign_data.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_foreign_table.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_function.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_group.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_index.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_language.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_materialized_view.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_operator.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_operator_class.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_operator_family.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_owned.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_policy.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_procedure.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_publication.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_role.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_routine.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_rule.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_sequence.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_server.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_statistics.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_subscription.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_table.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_tablespace.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_text_search_config.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_text_search_dict.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_text_search_parser.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_text_search_template.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_transform.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_trigger.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_type.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_user.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_user_mapping.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/drop_view.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/execute.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/explain.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/fetch.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/grant.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/import_foreign_schema.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/insert.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/listen.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/load.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/lock.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/merge.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/merge_pg17.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/misc.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/move.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/notify.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/precedence.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/prepare.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/reassign.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/refresh.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/reindex.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/reset.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/revoke.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/schemas.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/schemas_pg17.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/security_label.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/select.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/select_casts_pg17.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/select_compound_union_select.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/select_cte.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/select_funcs.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/select_funcs_pg17.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/select_into.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/select_operators.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/select_xml.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/set_constraints.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/set_role.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/set_session_auth.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/set_transaction.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/show.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/transaction.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/truncate.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/unlisten.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/update.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/update_pg18.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/vacuum.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/data/ok/values.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_aggregate_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_collation_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_conversion_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_default_privileges_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_domain_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_event_trigger_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_extension_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_foreign_data_wrapper_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_foreign_table_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_function_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_group_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_index_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_language_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_large_object_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_materialized_view_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_operator_class_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_operator_family_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_operator_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_policy_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_publication_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_role_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_routine_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_rule_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_schema_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_sequence_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_server_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_statistics_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_system_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_table_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_table_pg17_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_tablespace_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_text_search_configuration_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_text_search_dictionary_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_text_search_parser_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_text_search_template_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_trigger_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_type_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_user_mapping_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_user_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__alter_view_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__analyze_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__call_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__checkpoint_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__close_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__cluster_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__comment_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_access_method_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_aggregate_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_cast_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_collation_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_conversion_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_database_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_domain_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_event_trigger_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_ext_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_foreign_data_wrapper_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_foreign_table_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_foreign_table_pg18_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_group_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_index_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_language_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_materialized_view_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_operator_class_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_operator_family_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_operator_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_policy_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_procedure_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_publication_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_role_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_rule_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_sequence_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_server_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_statistics_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_subscription_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_table_as_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_table_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_table_pg17_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_tablespace_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_text_search_config_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_text_search_dict_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_text_search_parser_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_text_search_template_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_transform_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_trigger_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_type_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_user_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_view_extra_parens_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__create_view_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__deallocate_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__declare_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__delete_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__discard_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__do_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_access_method_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_aggregate_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_cast_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_collation_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_conversion_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_database_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_domain_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_event_trigger_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_extension_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_foreign_data_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_foreign_table_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_function_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_group_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_index_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_language_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_materialized_view_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_operator_class_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_operator_family_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_operator_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_owned_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_policy_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_procedure_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_publication_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_role_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_routine_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_rule_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_sequence_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_server_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_statistics_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_subscription_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_table_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_tablespace_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_text_search_config_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_text_search_dict_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_text_search_parser_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_text_search_template_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_transform_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_trigger_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_type_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_user_mapping_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_user_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__drop_view_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__execute_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__explain_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__fetch_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__grant_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__import_foreign_schema_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__insert_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__listen_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__load_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__lock_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__merge_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__merge_pg17_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__move_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__notify_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__precedence_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__prepare_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__reassign_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__refresh_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_advisory_lock.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_aggregates.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_alter_generic.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_alter_operator.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_alter_table.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_amutils.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_arrays.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_async.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_bit.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_bitmapops.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_boolean.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_box.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_brin.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_brin_bloom.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_brin_multi.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_btree_index.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_case.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_char.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_circle.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_cluster.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_collate.icu.utf8.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_collate.linux.utf8.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_collate.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_collate.utf8.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_combocid.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_comments.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_compression.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_constraints.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_conversion.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_copy.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_copy2.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_copydml.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_copyencoding.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_copyselect.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_aggregate.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_am.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_cast.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_function_c.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_function_sql.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_index.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_index_spgist.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_misc.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_operator.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_procedure.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_role.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_schema.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_table.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_table_like.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_type.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_create_view.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_database.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_date.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_dbsize.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_delete.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_dependency.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_domain.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_drop_if_exists.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_drop_operator.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_enum.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_equivclass.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_event_trigger.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_event_trigger_login.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_explain.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_expressions.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_fast_default.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_float4.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_float8.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_foreign_data.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_foreign_key.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_functional_deps.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_generated_stored.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_generated_virtual.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_geometry.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_gin.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_gist.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_groupingsets.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_guc.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_hash_func.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_hash_index.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_hash_part.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_horology.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_identity.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_incremental_sort.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_index_including.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_index_including_gist.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_indexing.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_indirect_toast.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_inet.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_infinite_recurse.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_inherit.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_init_privs.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_insert.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_insert_conflict.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_int2.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_int4.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_int8.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_interval.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_join.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_join_hash.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_json.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_json_encoding.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_jsonb.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_jsonb_jsonpath.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_jsonpath.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_jsonpath_encoding.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_largeobject.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_limit.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_line.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_lock.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_lseg.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_macaddr.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_macaddr8.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_maintain_every.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_matview.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_md5.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_memoize.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_merge.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_misc.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_misc_functions.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_misc_sanity.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_money.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_multirangetypes.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_mvcc.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_name.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_namespace.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_numa.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_numeric.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_numeric_big.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_numerology.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_object_address.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_oid.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_oidjoins.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_opr_sanity.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_partition_aggregate.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_partition_info.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_partition_join.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_partition_prune.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_password.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_path.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_pg_lsn.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_plancache.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_plpgsql.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_point.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_polygon.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_polymorphism.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_portals.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_portals_p2.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_predicate.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_prepare.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_prepared_xacts.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_privileges.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_publication.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_random.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_rangefuncs.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_rangetypes.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_regex.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_regproc.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_reindex_catalog.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_reloptions.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_replica_identity.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_returning.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_roleattributes.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_rowsecurity.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_rowtypes.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_rules.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_sanity_check.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_security_label.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_select.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_select_distinct.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_select_distinct_on.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_select_having.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_select_implicit.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_select_into.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_select_parallel.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_select_views.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_sequence.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_spgist.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_sqljson.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_sqljson_jsontable.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_sqljson_queryfuncs.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_stats.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_stats_ext.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_stats_import.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_strings.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_subscription.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_subselect.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_sysviews.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_tablesample.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_tablespace.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_temp.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_test_setup.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_text.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_tid.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_tidrangescan.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_tidscan.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_time.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_timestamp.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_timestamptz.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_timetz.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_transactions.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_triggers.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_truncate.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_tsdicts.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_tsearch.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_tsrf.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_tstypes.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_tuplesort.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_txid.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_type_sanity.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_typed_table.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_unicode.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_union.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_updatable_views.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_update.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_uuid.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_vacuum.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_vacuum_parallel.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_varchar.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_window.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_with.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_without_overlaps.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_write_parallel.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_xid.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_xml.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__regression_xmlmap.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__reindex_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__reset_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__revoke_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__schemas_pg17_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__security_label_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__select_casts_pg17_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__select_compound_union_select_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__select_cte_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__select_funcs_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__select_funcs_pg17_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__select_into_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__select_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__select_operators_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__select_xml_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__set_constraints_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__set_role_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__set_session_auth_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__set_transaction_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__show_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__transaction_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__truncate_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__unlisten_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__update_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__update_pg18_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__vacuum_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_parser/tests/snapshots/tests__values_ok.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_server/Cargo.toml +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_server/README.md +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_server/src/diagnostic.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_server/src/ignore.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_server/src/lsp_utils.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/README.md +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/src/ast/generated/mod.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/src/ast/generated/tokens.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/src/ast/nodes.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/src/ast/support.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/src/identifier.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/src/parsing.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__alter_table_ok_validation.snap +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/src/syntax_error.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/src/syntax_node.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/src/token_text.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/src/validation.rs +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/test_data/validation/alter_aggregate_params.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/test_data/validation/alter_table_ok.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/test_data/validation/array_exprs.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/test_data/validation/create_aggregate_params.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/test_data/validation/create_table.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/test_data/validation/custom_operators.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/test_data/validation/drop_aggregate_params.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/test_data/validation/join_clauses.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/test_data/validation/non_standard_param.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/crates/squawk_syntax/test_data/validation/validate_string_continuation.sql +0 -0
- {squawk_cli-2.33.2 → squawk_cli-2.35.0}/pyproject.toml +0 -0
|
@@ -0,0 +1,2876 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "addr2line"
|
|
7
|
+
version = "0.24.2"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"gimli",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "adler2"
|
|
16
|
+
version = "2.0.1"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "aho-corasick"
|
|
22
|
+
version = "1.1.3"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"memchr",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "annotate-snippets"
|
|
31
|
+
version = "0.12.4"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "a8ee2f071d418442e50c643c4e7a4051ce3abd9dba11713cc6cdf4f4a3f3cca5"
|
|
34
|
+
dependencies = [
|
|
35
|
+
"anstyle",
|
|
36
|
+
"unicode-width 0.2.1",
|
|
37
|
+
]
|
|
38
|
+
|
|
39
|
+
[[package]]
|
|
40
|
+
name = "anstream"
|
|
41
|
+
version = "0.6.20"
|
|
42
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
43
|
+
checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192"
|
|
44
|
+
dependencies = [
|
|
45
|
+
"anstyle",
|
|
46
|
+
"anstyle-parse",
|
|
47
|
+
"anstyle-query",
|
|
48
|
+
"anstyle-wincon",
|
|
49
|
+
"colorchoice",
|
|
50
|
+
"is_terminal_polyfill",
|
|
51
|
+
"utf8parse",
|
|
52
|
+
]
|
|
53
|
+
|
|
54
|
+
[[package]]
|
|
55
|
+
name = "anstyle"
|
|
56
|
+
version = "1.0.11"
|
|
57
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
+
checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
|
|
59
|
+
|
|
60
|
+
[[package]]
|
|
61
|
+
name = "anstyle-lossy"
|
|
62
|
+
version = "1.1.4"
|
|
63
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
+
checksum = "04d3a5dc826f84d0ea11882bb8054ff7f3d482602e11bb181101303a279ea01f"
|
|
65
|
+
dependencies = [
|
|
66
|
+
"anstyle",
|
|
67
|
+
]
|
|
68
|
+
|
|
69
|
+
[[package]]
|
|
70
|
+
name = "anstyle-parse"
|
|
71
|
+
version = "0.2.7"
|
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
73
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
74
|
+
dependencies = [
|
|
75
|
+
"utf8parse",
|
|
76
|
+
]
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "anstyle-query"
|
|
80
|
+
version = "1.1.4"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
|
|
83
|
+
dependencies = [
|
|
84
|
+
"windows-sys 0.60.2",
|
|
85
|
+
]
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "anstyle-svg"
|
|
89
|
+
version = "0.1.11"
|
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
+
checksum = "26b9ec8c976eada1b0f9747a3d7cc4eae3bef10613e443746e7487f26c872fde"
|
|
92
|
+
dependencies = [
|
|
93
|
+
"anstyle",
|
|
94
|
+
"anstyle-lossy",
|
|
95
|
+
"anstyle-parse",
|
|
96
|
+
"html-escape",
|
|
97
|
+
"unicode-width 0.2.1",
|
|
98
|
+
]
|
|
99
|
+
|
|
100
|
+
[[package]]
|
|
101
|
+
name = "anstyle-wincon"
|
|
102
|
+
version = "3.0.10"
|
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
+
checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
|
|
105
|
+
dependencies = [
|
|
106
|
+
"anstyle",
|
|
107
|
+
"once_cell_polyfill",
|
|
108
|
+
"windows-sys 0.60.2",
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "anyhow"
|
|
113
|
+
version = "1.0.99"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100"
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "autocfg"
|
|
119
|
+
version = "1.5.0"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "backtrace"
|
|
125
|
+
version = "0.3.75"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
|
|
128
|
+
dependencies = [
|
|
129
|
+
"addr2line",
|
|
130
|
+
"cfg-if",
|
|
131
|
+
"libc",
|
|
132
|
+
"miniz_oxide",
|
|
133
|
+
"object",
|
|
134
|
+
"rustc-demangle",
|
|
135
|
+
"windows-targets 0.52.6",
|
|
136
|
+
]
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "base64"
|
|
140
|
+
version = "0.12.3"
|
|
141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
142
|
+
checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
|
|
143
|
+
|
|
144
|
+
[[package]]
|
|
145
|
+
name = "base64"
|
|
146
|
+
version = "0.21.7"
|
|
147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
148
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
149
|
+
|
|
150
|
+
[[package]]
|
|
151
|
+
name = "base64"
|
|
152
|
+
version = "0.22.1"
|
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "bindgen"
|
|
158
|
+
version = "0.66.1"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "f2b84e06fc203107bfbad243f4aba2af864eb7db3b1cf46ea0a023b0b433d2a7"
|
|
161
|
+
dependencies = [
|
|
162
|
+
"bitflags 2.9.3",
|
|
163
|
+
"cexpr",
|
|
164
|
+
"clang-sys",
|
|
165
|
+
"lazy_static",
|
|
166
|
+
"lazycell",
|
|
167
|
+
"log",
|
|
168
|
+
"peeking_take_while",
|
|
169
|
+
"prettyplease",
|
|
170
|
+
"proc-macro2",
|
|
171
|
+
"quote",
|
|
172
|
+
"regex",
|
|
173
|
+
"rustc-hash",
|
|
174
|
+
"shlex",
|
|
175
|
+
"syn",
|
|
176
|
+
"which",
|
|
177
|
+
]
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "bitflags"
|
|
181
|
+
version = "1.3.2"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "bitflags"
|
|
187
|
+
version = "2.9.3"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "34efbcccd345379ca2868b2b2c9d3782e9cc58ba87bc7d79d5b53d9c9ae6f25d"
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "borsh"
|
|
193
|
+
version = "1.5.7"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce"
|
|
196
|
+
dependencies = [
|
|
197
|
+
"cfg_aliases",
|
|
198
|
+
]
|
|
199
|
+
|
|
200
|
+
[[package]]
|
|
201
|
+
name = "bumpalo"
|
|
202
|
+
version = "3.19.0"
|
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "bytes"
|
|
208
|
+
version = "1.10.1"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "camino"
|
|
214
|
+
version = "1.1.12"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "dd0b03af37dad7a14518b7691d81acb0f8222604ad3d1b02f6b4bed5188c0cd5"
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "cc"
|
|
220
|
+
version = "1.2.34"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "42bc4aea80032b7bf409b0bc7ccad88853858911b7713a8062fdc0623867bedc"
|
|
223
|
+
dependencies = [
|
|
224
|
+
"shlex",
|
|
225
|
+
]
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "cexpr"
|
|
229
|
+
version = "0.6.0"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
232
|
+
dependencies = [
|
|
233
|
+
"nom",
|
|
234
|
+
]
|
|
235
|
+
|
|
236
|
+
[[package]]
|
|
237
|
+
name = "cfg-if"
|
|
238
|
+
version = "1.0.3"
|
|
239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
+
checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "cfg_aliases"
|
|
244
|
+
version = "0.2.1"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "clang-sys"
|
|
250
|
+
version = "1.8.1"
|
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
253
|
+
dependencies = [
|
|
254
|
+
"glob",
|
|
255
|
+
"libc",
|
|
256
|
+
"libloading",
|
|
257
|
+
]
|
|
258
|
+
|
|
259
|
+
[[package]]
|
|
260
|
+
name = "clap"
|
|
261
|
+
version = "4.5.46"
|
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
+
checksum = "2c5e4fcf9c21d2e544ca1ee9d8552de13019a42aa7dbf32747fa7aaf1df76e57"
|
|
264
|
+
dependencies = [
|
|
265
|
+
"clap_builder",
|
|
266
|
+
"clap_derive",
|
|
267
|
+
]
|
|
268
|
+
|
|
269
|
+
[[package]]
|
|
270
|
+
name = "clap_builder"
|
|
271
|
+
version = "4.5.46"
|
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
+
checksum = "fecb53a0e6fcfb055f686001bc2e2592fa527efaf38dbe81a6a9563562e57d41"
|
|
274
|
+
dependencies = [
|
|
275
|
+
"anstream",
|
|
276
|
+
"anstyle",
|
|
277
|
+
"clap_lex",
|
|
278
|
+
"strsim",
|
|
279
|
+
]
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "clap_derive"
|
|
283
|
+
version = "4.5.45"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "14cb31bb0a7d536caef2639baa7fad459e15c3144efefa6dbd1c84562c4739f6"
|
|
286
|
+
dependencies = [
|
|
287
|
+
"heck",
|
|
288
|
+
"proc-macro2",
|
|
289
|
+
"quote",
|
|
290
|
+
"syn",
|
|
291
|
+
]
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "clap_lex"
|
|
295
|
+
version = "0.7.5"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "colorchoice"
|
|
301
|
+
version = "1.0.4"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
304
|
+
|
|
305
|
+
[[package]]
|
|
306
|
+
name = "console"
|
|
307
|
+
version = "0.11.3"
|
|
308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
+
checksum = "8c0994e656bba7b922d8dd1245db90672ffb701e684e45be58f20719d69abc5a"
|
|
310
|
+
dependencies = [
|
|
311
|
+
"encode_unicode 0.3.6",
|
|
312
|
+
"lazy_static",
|
|
313
|
+
"libc",
|
|
314
|
+
"regex",
|
|
315
|
+
"terminal_size",
|
|
316
|
+
"termios",
|
|
317
|
+
"unicode-width 0.1.14",
|
|
318
|
+
"winapi",
|
|
319
|
+
"winapi-util",
|
|
320
|
+
]
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "console"
|
|
324
|
+
version = "0.15.11"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
|
327
|
+
dependencies = [
|
|
328
|
+
"encode_unicode 1.0.0",
|
|
329
|
+
"libc",
|
|
330
|
+
"once_cell",
|
|
331
|
+
"windows-sys 0.59.0",
|
|
332
|
+
]
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "console_error_panic_hook"
|
|
336
|
+
version = "0.1.7"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
|
|
339
|
+
dependencies = [
|
|
340
|
+
"cfg-if",
|
|
341
|
+
"wasm-bindgen",
|
|
342
|
+
]
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "console_log"
|
|
346
|
+
version = "1.0.0"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "be8aed40e4edbf4d3b4431ab260b63fdc40f5780a4766824329ea0f1eefe3c0f"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"log",
|
|
351
|
+
"web-sys",
|
|
352
|
+
]
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "convert_case"
|
|
356
|
+
version = "0.7.1"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "bb402b8d4c85569410425650ce3eddc7d698ed96d39a73f941b08fb63082f1e7"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"unicode-segmentation",
|
|
361
|
+
]
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "core-foundation"
|
|
365
|
+
version = "0.9.4"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
368
|
+
dependencies = [
|
|
369
|
+
"core-foundation-sys",
|
|
370
|
+
"libc",
|
|
371
|
+
]
|
|
372
|
+
|
|
373
|
+
[[package]]
|
|
374
|
+
name = "core-foundation-sys"
|
|
375
|
+
version = "0.8.7"
|
|
376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
378
|
+
|
|
379
|
+
[[package]]
|
|
380
|
+
name = "countme"
|
|
381
|
+
version = "3.0.1"
|
|
382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
383
|
+
checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "crossbeam-channel"
|
|
387
|
+
version = "0.5.15"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
390
|
+
dependencies = [
|
|
391
|
+
"crossbeam-utils",
|
|
392
|
+
]
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "crossbeam-utils"
|
|
396
|
+
version = "0.8.21"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
399
|
+
|
|
400
|
+
[[package]]
|
|
401
|
+
name = "deranged"
|
|
402
|
+
version = "0.4.0"
|
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
+
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
|
|
405
|
+
dependencies = [
|
|
406
|
+
"powerfmt",
|
|
407
|
+
]
|
|
408
|
+
|
|
409
|
+
[[package]]
|
|
410
|
+
name = "dir-test"
|
|
411
|
+
version = "0.4.1"
|
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
+
checksum = "62c013fe825864f3e4593f36426c1fa7a74f5603f13ca8d1af7a990c1cd94a79"
|
|
414
|
+
dependencies = [
|
|
415
|
+
"dir-test-macros",
|
|
416
|
+
]
|
|
417
|
+
|
|
418
|
+
[[package]]
|
|
419
|
+
name = "dir-test-macros"
|
|
420
|
+
version = "0.4.1"
|
|
421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
+
checksum = "d42f54d7b4a6bc2400fe5b338e35d1a335787585375322f49c5d5fe7b243da7e"
|
|
423
|
+
dependencies = [
|
|
424
|
+
"glob",
|
|
425
|
+
"proc-macro2",
|
|
426
|
+
"quote",
|
|
427
|
+
"syn",
|
|
428
|
+
]
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "displaydoc"
|
|
432
|
+
version = "0.2.5"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
435
|
+
dependencies = [
|
|
436
|
+
"proc-macro2",
|
|
437
|
+
"quote",
|
|
438
|
+
"syn",
|
|
439
|
+
]
|
|
440
|
+
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "drop_bomb"
|
|
443
|
+
version = "0.1.5"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "9bda8e21c04aca2ae33ffc2fd8c23134f3cac46db123ba97bd9d3f3b8a4a85e1"
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "either"
|
|
449
|
+
version = "1.15.0"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
452
|
+
|
|
453
|
+
[[package]]
|
|
454
|
+
name = "encode_unicode"
|
|
455
|
+
version = "0.3.6"
|
|
456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
457
|
+
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
|
|
458
|
+
|
|
459
|
+
[[package]]
|
|
460
|
+
name = "encode_unicode"
|
|
461
|
+
version = "1.0.0"
|
|
462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "encoding_rs"
|
|
467
|
+
version = "0.8.35"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
470
|
+
dependencies = [
|
|
471
|
+
"cfg-if",
|
|
472
|
+
]
|
|
473
|
+
|
|
474
|
+
[[package]]
|
|
475
|
+
name = "enum-iterator"
|
|
476
|
+
version = "2.1.0"
|
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
|
+
checksum = "c280b9e6b3ae19e152d8e31cf47f18389781e119d4013a2a2bb0180e5facc635"
|
|
479
|
+
dependencies = [
|
|
480
|
+
"enum-iterator-derive",
|
|
481
|
+
]
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "enum-iterator-derive"
|
|
485
|
+
version = "1.4.0"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "a1ab991c1362ac86c61ab6f556cff143daa22e5a15e4e189df818b2fd19fe65b"
|
|
488
|
+
dependencies = [
|
|
489
|
+
"proc-macro2",
|
|
490
|
+
"quote",
|
|
491
|
+
"syn",
|
|
492
|
+
]
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "equivalent"
|
|
496
|
+
version = "1.0.2"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "errno"
|
|
502
|
+
version = "0.3.13"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
|
|
505
|
+
dependencies = [
|
|
506
|
+
"libc",
|
|
507
|
+
"windows-sys 0.60.2",
|
|
508
|
+
]
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "fastrand"
|
|
512
|
+
version = "2.3.0"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
515
|
+
|
|
516
|
+
[[package]]
|
|
517
|
+
name = "fixedbitset"
|
|
518
|
+
version = "0.5.7"
|
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "fnv"
|
|
524
|
+
version = "1.0.7"
|
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "foreign-types"
|
|
530
|
+
version = "0.3.2"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
533
|
+
dependencies = [
|
|
534
|
+
"foreign-types-shared",
|
|
535
|
+
]
|
|
536
|
+
|
|
537
|
+
[[package]]
|
|
538
|
+
name = "foreign-types-shared"
|
|
539
|
+
version = "0.1.1"
|
|
540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
+
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "form_urlencoded"
|
|
545
|
+
version = "1.2.2"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
548
|
+
dependencies = [
|
|
549
|
+
"percent-encoding",
|
|
550
|
+
]
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "fs_extra"
|
|
554
|
+
version = "1.3.0"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
557
|
+
|
|
558
|
+
[[package]]
|
|
559
|
+
name = "futures-channel"
|
|
560
|
+
version = "0.3.31"
|
|
561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
562
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
563
|
+
dependencies = [
|
|
564
|
+
"futures-core",
|
|
565
|
+
]
|
|
566
|
+
|
|
567
|
+
[[package]]
|
|
568
|
+
name = "futures-core"
|
|
569
|
+
version = "0.3.31"
|
|
570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
572
|
+
|
|
573
|
+
[[package]]
|
|
574
|
+
name = "futures-io"
|
|
575
|
+
version = "0.3.31"
|
|
576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "futures-sink"
|
|
581
|
+
version = "0.3.31"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "futures-task"
|
|
587
|
+
version = "0.3.31"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "futures-util"
|
|
593
|
+
version = "0.3.31"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
596
|
+
dependencies = [
|
|
597
|
+
"futures-core",
|
|
598
|
+
"futures-io",
|
|
599
|
+
"futures-task",
|
|
600
|
+
"memchr",
|
|
601
|
+
"pin-project-lite",
|
|
602
|
+
"pin-utils",
|
|
603
|
+
"slab",
|
|
604
|
+
]
|
|
605
|
+
|
|
606
|
+
[[package]]
|
|
607
|
+
name = "getrandom"
|
|
608
|
+
version = "0.2.16"
|
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
611
|
+
dependencies = [
|
|
612
|
+
"cfg-if",
|
|
613
|
+
"js-sys",
|
|
614
|
+
"libc",
|
|
615
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
616
|
+
"wasm-bindgen",
|
|
617
|
+
]
|
|
618
|
+
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "getrandom"
|
|
621
|
+
version = "0.3.3"
|
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
|
624
|
+
dependencies = [
|
|
625
|
+
"cfg-if",
|
|
626
|
+
"libc",
|
|
627
|
+
"r-efi",
|
|
628
|
+
"wasi 0.14.3+wasi-0.2.4",
|
|
629
|
+
]
|
|
630
|
+
|
|
631
|
+
[[package]]
|
|
632
|
+
name = "gimli"
|
|
633
|
+
version = "0.31.1"
|
|
634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "glob"
|
|
639
|
+
version = "0.3.3"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
642
|
+
|
|
643
|
+
[[package]]
|
|
644
|
+
name = "h2"
|
|
645
|
+
version = "0.3.27"
|
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
+
checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
|
|
648
|
+
dependencies = [
|
|
649
|
+
"bytes",
|
|
650
|
+
"fnv",
|
|
651
|
+
"futures-core",
|
|
652
|
+
"futures-sink",
|
|
653
|
+
"futures-util",
|
|
654
|
+
"http",
|
|
655
|
+
"indexmap",
|
|
656
|
+
"slab",
|
|
657
|
+
"tokio",
|
|
658
|
+
"tokio-util",
|
|
659
|
+
"tracing",
|
|
660
|
+
]
|
|
661
|
+
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "hashbrown"
|
|
664
|
+
version = "0.14.5"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "hashbrown"
|
|
670
|
+
version = "0.15.5"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
673
|
+
|
|
674
|
+
[[package]]
|
|
675
|
+
name = "heck"
|
|
676
|
+
version = "0.5.0"
|
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "home"
|
|
682
|
+
version = "0.5.11"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
|
|
685
|
+
dependencies = [
|
|
686
|
+
"windows-sys 0.59.0",
|
|
687
|
+
]
|
|
688
|
+
|
|
689
|
+
[[package]]
|
|
690
|
+
name = "html-escape"
|
|
691
|
+
version = "0.2.13"
|
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
+
checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
|
|
694
|
+
dependencies = [
|
|
695
|
+
"utf8-width",
|
|
696
|
+
]
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "http"
|
|
700
|
+
version = "0.2.12"
|
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
+
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
703
|
+
dependencies = [
|
|
704
|
+
"bytes",
|
|
705
|
+
"fnv",
|
|
706
|
+
"itoa",
|
|
707
|
+
]
|
|
708
|
+
|
|
709
|
+
[[package]]
|
|
710
|
+
name = "http-body"
|
|
711
|
+
version = "0.4.6"
|
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
+
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
714
|
+
dependencies = [
|
|
715
|
+
"bytes",
|
|
716
|
+
"http",
|
|
717
|
+
"pin-project-lite",
|
|
718
|
+
]
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "httparse"
|
|
722
|
+
version = "1.10.1"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
725
|
+
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "httpdate"
|
|
728
|
+
version = "1.0.3"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
731
|
+
|
|
732
|
+
[[package]]
|
|
733
|
+
name = "hyper"
|
|
734
|
+
version = "0.14.32"
|
|
735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
+
checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
|
|
737
|
+
dependencies = [
|
|
738
|
+
"bytes",
|
|
739
|
+
"futures-channel",
|
|
740
|
+
"futures-core",
|
|
741
|
+
"futures-util",
|
|
742
|
+
"h2",
|
|
743
|
+
"http",
|
|
744
|
+
"http-body",
|
|
745
|
+
"httparse",
|
|
746
|
+
"httpdate",
|
|
747
|
+
"itoa",
|
|
748
|
+
"pin-project-lite",
|
|
749
|
+
"socket2 0.5.10",
|
|
750
|
+
"tokio",
|
|
751
|
+
"tower-service",
|
|
752
|
+
"tracing",
|
|
753
|
+
"want",
|
|
754
|
+
]
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "hyper-tls"
|
|
758
|
+
version = "0.5.0"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
|
|
761
|
+
dependencies = [
|
|
762
|
+
"bytes",
|
|
763
|
+
"hyper",
|
|
764
|
+
"native-tls",
|
|
765
|
+
"tokio",
|
|
766
|
+
"tokio-native-tls",
|
|
767
|
+
]
|
|
768
|
+
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "icu_collections"
|
|
771
|
+
version = "2.0.0"
|
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
+
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
|
|
774
|
+
dependencies = [
|
|
775
|
+
"displaydoc",
|
|
776
|
+
"potential_utf",
|
|
777
|
+
"yoke",
|
|
778
|
+
"zerofrom",
|
|
779
|
+
"zerovec",
|
|
780
|
+
]
|
|
781
|
+
|
|
782
|
+
[[package]]
|
|
783
|
+
name = "icu_locale_core"
|
|
784
|
+
version = "2.0.0"
|
|
785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
+
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
|
|
787
|
+
dependencies = [
|
|
788
|
+
"displaydoc",
|
|
789
|
+
"litemap",
|
|
790
|
+
"tinystr",
|
|
791
|
+
"writeable",
|
|
792
|
+
"zerovec",
|
|
793
|
+
]
|
|
794
|
+
|
|
795
|
+
[[package]]
|
|
796
|
+
name = "icu_normalizer"
|
|
797
|
+
version = "2.0.0"
|
|
798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
799
|
+
checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
|
|
800
|
+
dependencies = [
|
|
801
|
+
"displaydoc",
|
|
802
|
+
"icu_collections",
|
|
803
|
+
"icu_normalizer_data",
|
|
804
|
+
"icu_properties",
|
|
805
|
+
"icu_provider",
|
|
806
|
+
"smallvec",
|
|
807
|
+
"zerovec",
|
|
808
|
+
]
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "icu_normalizer_data"
|
|
812
|
+
version = "2.0.0"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "icu_properties"
|
|
818
|
+
version = "2.0.1"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
|
|
821
|
+
dependencies = [
|
|
822
|
+
"displaydoc",
|
|
823
|
+
"icu_collections",
|
|
824
|
+
"icu_locale_core",
|
|
825
|
+
"icu_properties_data",
|
|
826
|
+
"icu_provider",
|
|
827
|
+
"potential_utf",
|
|
828
|
+
"zerotrie",
|
|
829
|
+
"zerovec",
|
|
830
|
+
]
|
|
831
|
+
|
|
832
|
+
[[package]]
|
|
833
|
+
name = "icu_properties_data"
|
|
834
|
+
version = "2.0.1"
|
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
+
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
|
|
837
|
+
|
|
838
|
+
[[package]]
|
|
839
|
+
name = "icu_provider"
|
|
840
|
+
version = "2.0.0"
|
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
+
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
|
|
843
|
+
dependencies = [
|
|
844
|
+
"displaydoc",
|
|
845
|
+
"icu_locale_core",
|
|
846
|
+
"stable_deref_trait",
|
|
847
|
+
"tinystr",
|
|
848
|
+
"writeable",
|
|
849
|
+
"yoke",
|
|
850
|
+
"zerofrom",
|
|
851
|
+
"zerotrie",
|
|
852
|
+
"zerovec",
|
|
853
|
+
]
|
|
854
|
+
|
|
855
|
+
[[package]]
|
|
856
|
+
name = "idna"
|
|
857
|
+
version = "1.1.0"
|
|
858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
859
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
860
|
+
dependencies = [
|
|
861
|
+
"idna_adapter",
|
|
862
|
+
"smallvec",
|
|
863
|
+
"utf8_iter",
|
|
864
|
+
]
|
|
865
|
+
|
|
866
|
+
[[package]]
|
|
867
|
+
name = "idna_adapter"
|
|
868
|
+
version = "1.2.1"
|
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
871
|
+
dependencies = [
|
|
872
|
+
"icu_normalizer",
|
|
873
|
+
"icu_properties",
|
|
874
|
+
]
|
|
875
|
+
|
|
876
|
+
[[package]]
|
|
877
|
+
name = "indexmap"
|
|
878
|
+
version = "2.11.0"
|
|
879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
+
checksum = "f2481980430f9f78649238835720ddccc57e52df14ffce1c6f37391d61b563e9"
|
|
881
|
+
dependencies = [
|
|
882
|
+
"equivalent",
|
|
883
|
+
"hashbrown 0.15.5",
|
|
884
|
+
]
|
|
885
|
+
|
|
886
|
+
[[package]]
|
|
887
|
+
name = "insta"
|
|
888
|
+
version = "1.43.1"
|
|
889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
890
|
+
checksum = "154934ea70c58054b556dd430b99a98c2a7ff5309ac9891597e339b5c28f4371"
|
|
891
|
+
dependencies = [
|
|
892
|
+
"console 0.15.11",
|
|
893
|
+
"once_cell",
|
|
894
|
+
"similar",
|
|
895
|
+
]
|
|
896
|
+
|
|
897
|
+
[[package]]
|
|
898
|
+
name = "io-uring"
|
|
899
|
+
version = "0.7.10"
|
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
+
checksum = "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b"
|
|
902
|
+
dependencies = [
|
|
903
|
+
"bitflags 2.9.3",
|
|
904
|
+
"cfg-if",
|
|
905
|
+
"libc",
|
|
906
|
+
]
|
|
907
|
+
|
|
908
|
+
[[package]]
|
|
909
|
+
name = "ipnet"
|
|
910
|
+
version = "2.11.0"
|
|
911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
912
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
913
|
+
|
|
914
|
+
[[package]]
|
|
915
|
+
name = "is_terminal_polyfill"
|
|
916
|
+
version = "1.70.1"
|
|
917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
918
|
+
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "itertools"
|
|
922
|
+
version = "0.10.5"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
925
|
+
dependencies = [
|
|
926
|
+
"either",
|
|
927
|
+
]
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "itertools"
|
|
931
|
+
version = "0.14.0"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
934
|
+
dependencies = [
|
|
935
|
+
"either",
|
|
936
|
+
]
|
|
937
|
+
|
|
938
|
+
[[package]]
|
|
939
|
+
name = "itoa"
|
|
940
|
+
version = "1.0.15"
|
|
941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "js-sys"
|
|
946
|
+
version = "0.3.77"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
949
|
+
dependencies = [
|
|
950
|
+
"once_cell",
|
|
951
|
+
"wasm-bindgen",
|
|
952
|
+
]
|
|
953
|
+
|
|
954
|
+
[[package]]
|
|
955
|
+
name = "jsonwebtoken"
|
|
956
|
+
version = "9.3.1"
|
|
957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
958
|
+
checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde"
|
|
959
|
+
dependencies = [
|
|
960
|
+
"base64 0.22.1",
|
|
961
|
+
"js-sys",
|
|
962
|
+
"pem",
|
|
963
|
+
"ring",
|
|
964
|
+
"serde",
|
|
965
|
+
"serde_json",
|
|
966
|
+
"simple_asn1",
|
|
967
|
+
]
|
|
968
|
+
|
|
969
|
+
[[package]]
|
|
970
|
+
name = "la-arena"
|
|
971
|
+
version = "0.3.1"
|
|
972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
+
checksum = "3752f229dcc5a481d60f385fa479ff46818033d881d2d801aa27dffcfb5e8306"
|
|
974
|
+
|
|
975
|
+
[[package]]
|
|
976
|
+
name = "lazy_static"
|
|
977
|
+
version = "1.5.0"
|
|
978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
979
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
980
|
+
|
|
981
|
+
[[package]]
|
|
982
|
+
name = "lazycell"
|
|
983
|
+
version = "1.3.0"
|
|
984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
985
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
986
|
+
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "libc"
|
|
989
|
+
version = "0.2.175"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "libloading"
|
|
995
|
+
version = "0.8.8"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
|
998
|
+
dependencies = [
|
|
999
|
+
"cfg-if",
|
|
1000
|
+
"windows-targets 0.53.3",
|
|
1001
|
+
]
|
|
1002
|
+
|
|
1003
|
+
[[package]]
|
|
1004
|
+
name = "line-index"
|
|
1005
|
+
version = "0.1.2"
|
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
+
checksum = "3e27e0ed5a392a7f5ba0b3808a2afccff16c64933312c84b57618b49d1209bd2"
|
|
1008
|
+
dependencies = [
|
|
1009
|
+
"nohash-hasher",
|
|
1010
|
+
"text-size",
|
|
1011
|
+
]
|
|
1012
|
+
|
|
1013
|
+
[[package]]
|
|
1014
|
+
name = "linux-raw-sys"
|
|
1015
|
+
version = "0.4.15"
|
|
1016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1018
|
+
|
|
1019
|
+
[[package]]
|
|
1020
|
+
name = "linux-raw-sys"
|
|
1021
|
+
version = "0.9.4"
|
|
1022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1023
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
1024
|
+
|
|
1025
|
+
[[package]]
|
|
1026
|
+
name = "litemap"
|
|
1027
|
+
version = "0.8.0"
|
|
1028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1029
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
|
1030
|
+
|
|
1031
|
+
[[package]]
|
|
1032
|
+
name = "log"
|
|
1033
|
+
version = "0.4.27"
|
|
1034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1035
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
1036
|
+
|
|
1037
|
+
[[package]]
|
|
1038
|
+
name = "lsp-server"
|
|
1039
|
+
version = "0.7.9"
|
|
1040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1041
|
+
checksum = "7d6ada348dbc2703cbe7637b2dda05cff84d3da2819c24abcb305dd613e0ba2e"
|
|
1042
|
+
dependencies = [
|
|
1043
|
+
"crossbeam-channel",
|
|
1044
|
+
"log",
|
|
1045
|
+
"serde",
|
|
1046
|
+
"serde_derive",
|
|
1047
|
+
"serde_json",
|
|
1048
|
+
]
|
|
1049
|
+
|
|
1050
|
+
[[package]]
|
|
1051
|
+
name = "lsp-types"
|
|
1052
|
+
version = "0.95.1"
|
|
1053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1054
|
+
checksum = "8e34d33a8e9b006cd3fc4fe69a921affa097bae4bb65f76271f4644f9a334365"
|
|
1055
|
+
dependencies = [
|
|
1056
|
+
"bitflags 1.3.2",
|
|
1057
|
+
"serde",
|
|
1058
|
+
"serde_json",
|
|
1059
|
+
"serde_repr",
|
|
1060
|
+
"url",
|
|
1061
|
+
]
|
|
1062
|
+
|
|
1063
|
+
[[package]]
|
|
1064
|
+
name = "memchr"
|
|
1065
|
+
version = "2.7.5"
|
|
1066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1067
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
|
1068
|
+
|
|
1069
|
+
[[package]]
|
|
1070
|
+
name = "memoffset"
|
|
1071
|
+
version = "0.9.1"
|
|
1072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1073
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1074
|
+
dependencies = [
|
|
1075
|
+
"autocfg",
|
|
1076
|
+
]
|
|
1077
|
+
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "mime"
|
|
1080
|
+
version = "0.3.17"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1083
|
+
|
|
1084
|
+
[[package]]
|
|
1085
|
+
name = "minicov"
|
|
1086
|
+
version = "0.3.7"
|
|
1087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
+
checksum = "f27fe9f1cc3c22e1687f9446c2083c4c5fc7f0bcf1c7a86bdbded14985895b4b"
|
|
1089
|
+
dependencies = [
|
|
1090
|
+
"cc",
|
|
1091
|
+
"walkdir",
|
|
1092
|
+
]
|
|
1093
|
+
|
|
1094
|
+
[[package]]
|
|
1095
|
+
name = "minimal-lexical"
|
|
1096
|
+
version = "0.2.1"
|
|
1097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1098
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1099
|
+
|
|
1100
|
+
[[package]]
|
|
1101
|
+
name = "miniz_oxide"
|
|
1102
|
+
version = "0.8.9"
|
|
1103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1105
|
+
dependencies = [
|
|
1106
|
+
"adler2",
|
|
1107
|
+
]
|
|
1108
|
+
|
|
1109
|
+
[[package]]
|
|
1110
|
+
name = "mio"
|
|
1111
|
+
version = "1.0.4"
|
|
1112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1113
|
+
checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
|
|
1114
|
+
dependencies = [
|
|
1115
|
+
"libc",
|
|
1116
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
1117
|
+
"windows-sys 0.59.0",
|
|
1118
|
+
]
|
|
1119
|
+
|
|
1120
|
+
[[package]]
|
|
1121
|
+
name = "multimap"
|
|
1122
|
+
version = "0.10.1"
|
|
1123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1124
|
+
checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
|
|
1125
|
+
|
|
1126
|
+
[[package]]
|
|
1127
|
+
name = "native-tls"
|
|
1128
|
+
version = "0.2.14"
|
|
1129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1130
|
+
checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
|
|
1131
|
+
dependencies = [
|
|
1132
|
+
"libc",
|
|
1133
|
+
"log",
|
|
1134
|
+
"openssl",
|
|
1135
|
+
"openssl-probe",
|
|
1136
|
+
"openssl-sys",
|
|
1137
|
+
"schannel",
|
|
1138
|
+
"security-framework",
|
|
1139
|
+
"security-framework-sys",
|
|
1140
|
+
"tempfile",
|
|
1141
|
+
]
|
|
1142
|
+
|
|
1143
|
+
[[package]]
|
|
1144
|
+
name = "nohash-hasher"
|
|
1145
|
+
version = "0.2.0"
|
|
1146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1147
|
+
checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
|
|
1148
|
+
|
|
1149
|
+
[[package]]
|
|
1150
|
+
name = "nom"
|
|
1151
|
+
version = "7.1.3"
|
|
1152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1153
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1154
|
+
dependencies = [
|
|
1155
|
+
"memchr",
|
|
1156
|
+
"minimal-lexical",
|
|
1157
|
+
]
|
|
1158
|
+
|
|
1159
|
+
[[package]]
|
|
1160
|
+
name = "normalize-line-endings"
|
|
1161
|
+
version = "0.3.0"
|
|
1162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1163
|
+
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
|
1164
|
+
|
|
1165
|
+
[[package]]
|
|
1166
|
+
name = "num-bigint"
|
|
1167
|
+
version = "0.4.6"
|
|
1168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
1170
|
+
dependencies = [
|
|
1171
|
+
"num-integer",
|
|
1172
|
+
"num-traits",
|
|
1173
|
+
]
|
|
1174
|
+
|
|
1175
|
+
[[package]]
|
|
1176
|
+
name = "num-conv"
|
|
1177
|
+
version = "0.1.0"
|
|
1178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1179
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
1180
|
+
|
|
1181
|
+
[[package]]
|
|
1182
|
+
name = "num-integer"
|
|
1183
|
+
version = "0.1.46"
|
|
1184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1185
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1186
|
+
dependencies = [
|
|
1187
|
+
"num-traits",
|
|
1188
|
+
]
|
|
1189
|
+
|
|
1190
|
+
[[package]]
|
|
1191
|
+
name = "num-traits"
|
|
1192
|
+
version = "0.2.19"
|
|
1193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1194
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1195
|
+
dependencies = [
|
|
1196
|
+
"autocfg",
|
|
1197
|
+
]
|
|
1198
|
+
|
|
1199
|
+
[[package]]
|
|
1200
|
+
name = "num_threads"
|
|
1201
|
+
version = "0.1.7"
|
|
1202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
|
+
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
|
|
1204
|
+
dependencies = [
|
|
1205
|
+
"libc",
|
|
1206
|
+
]
|
|
1207
|
+
|
|
1208
|
+
[[package]]
|
|
1209
|
+
name = "object"
|
|
1210
|
+
version = "0.36.7"
|
|
1211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1212
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
1213
|
+
dependencies = [
|
|
1214
|
+
"memchr",
|
|
1215
|
+
]
|
|
1216
|
+
|
|
1217
|
+
[[package]]
|
|
1218
|
+
name = "once_cell"
|
|
1219
|
+
version = "1.21.3"
|
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1222
|
+
|
|
1223
|
+
[[package]]
|
|
1224
|
+
name = "once_cell_polyfill"
|
|
1225
|
+
version = "1.70.1"
|
|
1226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1227
|
+
checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
|
|
1228
|
+
|
|
1229
|
+
[[package]]
|
|
1230
|
+
name = "openssl"
|
|
1231
|
+
version = "0.10.73"
|
|
1232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1233
|
+
checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8"
|
|
1234
|
+
dependencies = [
|
|
1235
|
+
"bitflags 2.9.3",
|
|
1236
|
+
"cfg-if",
|
|
1237
|
+
"foreign-types",
|
|
1238
|
+
"libc",
|
|
1239
|
+
"once_cell",
|
|
1240
|
+
"openssl-macros",
|
|
1241
|
+
"openssl-sys",
|
|
1242
|
+
]
|
|
1243
|
+
|
|
1244
|
+
[[package]]
|
|
1245
|
+
name = "openssl-macros"
|
|
1246
|
+
version = "0.1.1"
|
|
1247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1248
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
1249
|
+
dependencies = [
|
|
1250
|
+
"proc-macro2",
|
|
1251
|
+
"quote",
|
|
1252
|
+
"syn",
|
|
1253
|
+
]
|
|
1254
|
+
|
|
1255
|
+
[[package]]
|
|
1256
|
+
name = "openssl-probe"
|
|
1257
|
+
version = "0.1.6"
|
|
1258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1259
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1260
|
+
|
|
1261
|
+
[[package]]
|
|
1262
|
+
name = "openssl-src"
|
|
1263
|
+
version = "300.5.2+3.5.2"
|
|
1264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1265
|
+
checksum = "d270b79e2926f5150189d475bc7e9d2c69f9c4697b185fa917d5a32b792d21b4"
|
|
1266
|
+
dependencies = [
|
|
1267
|
+
"cc",
|
|
1268
|
+
]
|
|
1269
|
+
|
|
1270
|
+
[[package]]
|
|
1271
|
+
name = "openssl-sys"
|
|
1272
|
+
version = "0.9.109"
|
|
1273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
+
checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571"
|
|
1275
|
+
dependencies = [
|
|
1276
|
+
"cc",
|
|
1277
|
+
"libc",
|
|
1278
|
+
"openssl-src",
|
|
1279
|
+
"pkg-config",
|
|
1280
|
+
"vcpkg",
|
|
1281
|
+
]
|
|
1282
|
+
|
|
1283
|
+
[[package]]
|
|
1284
|
+
name = "os_pipe"
|
|
1285
|
+
version = "1.2.2"
|
|
1286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1287
|
+
checksum = "db335f4760b14ead6290116f2427bf33a14d4f0617d49f78a246de10c1831224"
|
|
1288
|
+
dependencies = [
|
|
1289
|
+
"libc",
|
|
1290
|
+
"windows-sys 0.59.0",
|
|
1291
|
+
]
|
|
1292
|
+
|
|
1293
|
+
[[package]]
|
|
1294
|
+
name = "peeking_take_while"
|
|
1295
|
+
version = "0.1.2"
|
|
1296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1297
|
+
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
|
1298
|
+
|
|
1299
|
+
[[package]]
|
|
1300
|
+
name = "pem"
|
|
1301
|
+
version = "3.0.5"
|
|
1302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
+
checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
|
|
1304
|
+
dependencies = [
|
|
1305
|
+
"base64 0.22.1",
|
|
1306
|
+
"serde",
|
|
1307
|
+
]
|
|
1308
|
+
|
|
1309
|
+
[[package]]
|
|
1310
|
+
name = "percent-encoding"
|
|
1311
|
+
version = "2.3.2"
|
|
1312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1313
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1314
|
+
|
|
1315
|
+
[[package]]
|
|
1316
|
+
name = "petgraph"
|
|
1317
|
+
version = "0.7.1"
|
|
1318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
|
+
checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
|
|
1320
|
+
dependencies = [
|
|
1321
|
+
"fixedbitset",
|
|
1322
|
+
"indexmap",
|
|
1323
|
+
]
|
|
1324
|
+
|
|
1325
|
+
[[package]]
|
|
1326
|
+
name = "pg_query"
|
|
1327
|
+
version = "6.1.1"
|
|
1328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1329
|
+
checksum = "6ca6fdb8f9d32182abf17328789f87f305dd8c8ce5bf48c5aa2b5cffc94e1c04"
|
|
1330
|
+
dependencies = [
|
|
1331
|
+
"bindgen",
|
|
1332
|
+
"cc",
|
|
1333
|
+
"fs_extra",
|
|
1334
|
+
"glob",
|
|
1335
|
+
"itertools 0.10.5",
|
|
1336
|
+
"prost",
|
|
1337
|
+
"prost-build",
|
|
1338
|
+
"serde",
|
|
1339
|
+
"serde_json",
|
|
1340
|
+
"thiserror 1.0.69",
|
|
1341
|
+
]
|
|
1342
|
+
|
|
1343
|
+
[[package]]
|
|
1344
|
+
name = "pin-project-lite"
|
|
1345
|
+
version = "0.2.16"
|
|
1346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1347
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
1348
|
+
|
|
1349
|
+
[[package]]
|
|
1350
|
+
name = "pin-utils"
|
|
1351
|
+
version = "0.1.0"
|
|
1352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1353
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1354
|
+
|
|
1355
|
+
[[package]]
|
|
1356
|
+
name = "pkg-config"
|
|
1357
|
+
version = "0.3.32"
|
|
1358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
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"
|
|
1375
|
+
|
|
1376
|
+
[[package]]
|
|
1377
|
+
name = "prettyplease"
|
|
1378
|
+
version = "0.2.37"
|
|
1379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1381
|
+
dependencies = [
|
|
1382
|
+
"proc-macro2",
|
|
1383
|
+
"syn",
|
|
1384
|
+
]
|
|
1385
|
+
|
|
1386
|
+
[[package]]
|
|
1387
|
+
name = "proc-macro2"
|
|
1388
|
+
version = "1.0.101"
|
|
1389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1390
|
+
checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
|
|
1391
|
+
dependencies = [
|
|
1392
|
+
"unicode-ident",
|
|
1393
|
+
]
|
|
1394
|
+
|
|
1395
|
+
[[package]]
|
|
1396
|
+
name = "prost"
|
|
1397
|
+
version = "0.13.5"
|
|
1398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1399
|
+
checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
|
|
1400
|
+
dependencies = [
|
|
1401
|
+
"bytes",
|
|
1402
|
+
"prost-derive",
|
|
1403
|
+
]
|
|
1404
|
+
|
|
1405
|
+
[[package]]
|
|
1406
|
+
name = "prost-build"
|
|
1407
|
+
version = "0.13.5"
|
|
1408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
+
checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf"
|
|
1410
|
+
dependencies = [
|
|
1411
|
+
"heck",
|
|
1412
|
+
"itertools 0.14.0",
|
|
1413
|
+
"log",
|
|
1414
|
+
"multimap",
|
|
1415
|
+
"once_cell",
|
|
1416
|
+
"petgraph",
|
|
1417
|
+
"prettyplease",
|
|
1418
|
+
"prost",
|
|
1419
|
+
"prost-types",
|
|
1420
|
+
"regex",
|
|
1421
|
+
"syn",
|
|
1422
|
+
"tempfile",
|
|
1423
|
+
]
|
|
1424
|
+
|
|
1425
|
+
[[package]]
|
|
1426
|
+
name = "prost-derive"
|
|
1427
|
+
version = "0.13.5"
|
|
1428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
+
checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
|
|
1430
|
+
dependencies = [
|
|
1431
|
+
"anyhow",
|
|
1432
|
+
"itertools 0.14.0",
|
|
1433
|
+
"proc-macro2",
|
|
1434
|
+
"quote",
|
|
1435
|
+
"syn",
|
|
1436
|
+
]
|
|
1437
|
+
|
|
1438
|
+
[[package]]
|
|
1439
|
+
name = "prost-types"
|
|
1440
|
+
version = "0.13.5"
|
|
1441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1442
|
+
checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16"
|
|
1443
|
+
dependencies = [
|
|
1444
|
+
"prost",
|
|
1445
|
+
]
|
|
1446
|
+
|
|
1447
|
+
[[package]]
|
|
1448
|
+
name = "quote"
|
|
1449
|
+
version = "1.0.40"
|
|
1450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
1452
|
+
dependencies = [
|
|
1453
|
+
"proc-macro2",
|
|
1454
|
+
]
|
|
1455
|
+
|
|
1456
|
+
[[package]]
|
|
1457
|
+
name = "r-efi"
|
|
1458
|
+
version = "5.3.0"
|
|
1459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1460
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1461
|
+
|
|
1462
|
+
[[package]]
|
|
1463
|
+
name = "regex"
|
|
1464
|
+
version = "1.11.2"
|
|
1465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
+
checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912"
|
|
1467
|
+
dependencies = [
|
|
1468
|
+
"aho-corasick",
|
|
1469
|
+
"memchr",
|
|
1470
|
+
"regex-automata",
|
|
1471
|
+
"regex-syntax",
|
|
1472
|
+
]
|
|
1473
|
+
|
|
1474
|
+
[[package]]
|
|
1475
|
+
name = "regex-automata"
|
|
1476
|
+
version = "0.4.10"
|
|
1477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1478
|
+
checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6"
|
|
1479
|
+
dependencies = [
|
|
1480
|
+
"aho-corasick",
|
|
1481
|
+
"memchr",
|
|
1482
|
+
"regex-syntax",
|
|
1483
|
+
]
|
|
1484
|
+
|
|
1485
|
+
[[package]]
|
|
1486
|
+
name = "regex-syntax"
|
|
1487
|
+
version = "0.8.6"
|
|
1488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1489
|
+
checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
|
|
1490
|
+
|
|
1491
|
+
[[package]]
|
|
1492
|
+
name = "reqwest"
|
|
1493
|
+
version = "0.11.27"
|
|
1494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
|
+
checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
|
|
1496
|
+
dependencies = [
|
|
1497
|
+
"base64 0.21.7",
|
|
1498
|
+
"bytes",
|
|
1499
|
+
"encoding_rs",
|
|
1500
|
+
"futures-core",
|
|
1501
|
+
"futures-util",
|
|
1502
|
+
"h2",
|
|
1503
|
+
"http",
|
|
1504
|
+
"http-body",
|
|
1505
|
+
"hyper",
|
|
1506
|
+
"hyper-tls",
|
|
1507
|
+
"ipnet",
|
|
1508
|
+
"js-sys",
|
|
1509
|
+
"log",
|
|
1510
|
+
"mime",
|
|
1511
|
+
"native-tls",
|
|
1512
|
+
"once_cell",
|
|
1513
|
+
"percent-encoding",
|
|
1514
|
+
"pin-project-lite",
|
|
1515
|
+
"rustls-pemfile",
|
|
1516
|
+
"serde",
|
|
1517
|
+
"serde_json",
|
|
1518
|
+
"serde_urlencoded",
|
|
1519
|
+
"sync_wrapper",
|
|
1520
|
+
"system-configuration",
|
|
1521
|
+
"tokio",
|
|
1522
|
+
"tokio-native-tls",
|
|
1523
|
+
"tower-service",
|
|
1524
|
+
"url",
|
|
1525
|
+
"wasm-bindgen",
|
|
1526
|
+
"wasm-bindgen-futures",
|
|
1527
|
+
"web-sys",
|
|
1528
|
+
"winreg",
|
|
1529
|
+
]
|
|
1530
|
+
|
|
1531
|
+
[[package]]
|
|
1532
|
+
name = "ring"
|
|
1533
|
+
version = "0.17.14"
|
|
1534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1535
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1536
|
+
dependencies = [
|
|
1537
|
+
"cc",
|
|
1538
|
+
"cfg-if",
|
|
1539
|
+
"getrandom 0.2.16",
|
|
1540
|
+
"libc",
|
|
1541
|
+
"untrusted",
|
|
1542
|
+
"windows-sys 0.52.0",
|
|
1543
|
+
]
|
|
1544
|
+
|
|
1545
|
+
[[package]]
|
|
1546
|
+
name = "rowan"
|
|
1547
|
+
version = "0.15.17"
|
|
1548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1549
|
+
checksum = "d4f1e4a001f863f41ea8d0e6a0c34b356d5b733db50dadab3efef640bafb779b"
|
|
1550
|
+
dependencies = [
|
|
1551
|
+
"countme",
|
|
1552
|
+
"hashbrown 0.14.5",
|
|
1553
|
+
"memoffset",
|
|
1554
|
+
"rustc-hash",
|
|
1555
|
+
"text-size",
|
|
1556
|
+
]
|
|
1557
|
+
|
|
1558
|
+
[[package]]
|
|
1559
|
+
name = "rustc-demangle"
|
|
1560
|
+
version = "0.1.26"
|
|
1561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
+
checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
|
|
1563
|
+
|
|
1564
|
+
[[package]]
|
|
1565
|
+
name = "rustc-hash"
|
|
1566
|
+
version = "1.1.0"
|
|
1567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1568
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1569
|
+
|
|
1570
|
+
[[package]]
|
|
1571
|
+
name = "rustix"
|
|
1572
|
+
version = "0.38.44"
|
|
1573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1574
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
1575
|
+
dependencies = [
|
|
1576
|
+
"bitflags 2.9.3",
|
|
1577
|
+
"errno",
|
|
1578
|
+
"libc",
|
|
1579
|
+
"linux-raw-sys 0.4.15",
|
|
1580
|
+
"windows-sys 0.59.0",
|
|
1581
|
+
]
|
|
1582
|
+
|
|
1583
|
+
[[package]]
|
|
1584
|
+
name = "rustix"
|
|
1585
|
+
version = "1.0.8"
|
|
1586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1587
|
+
checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
|
|
1588
|
+
dependencies = [
|
|
1589
|
+
"bitflags 2.9.3",
|
|
1590
|
+
"errno",
|
|
1591
|
+
"libc",
|
|
1592
|
+
"linux-raw-sys 0.9.4",
|
|
1593
|
+
"windows-sys 0.60.2",
|
|
1594
|
+
]
|
|
1595
|
+
|
|
1596
|
+
[[package]]
|
|
1597
|
+
name = "rustls-pemfile"
|
|
1598
|
+
version = "1.0.4"
|
|
1599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1600
|
+
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
|
|
1601
|
+
dependencies = [
|
|
1602
|
+
"base64 0.21.7",
|
|
1603
|
+
]
|
|
1604
|
+
|
|
1605
|
+
[[package]]
|
|
1606
|
+
name = "rustversion"
|
|
1607
|
+
version = "1.0.22"
|
|
1608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1609
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1610
|
+
|
|
1611
|
+
[[package]]
|
|
1612
|
+
name = "ryu"
|
|
1613
|
+
version = "1.0.20"
|
|
1614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1615
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
1616
|
+
|
|
1617
|
+
[[package]]
|
|
1618
|
+
name = "same-file"
|
|
1619
|
+
version = "1.0.6"
|
|
1620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1621
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1622
|
+
dependencies = [
|
|
1623
|
+
"winapi-util",
|
|
1624
|
+
]
|
|
1625
|
+
|
|
1626
|
+
[[package]]
|
|
1627
|
+
name = "schannel"
|
|
1628
|
+
version = "0.1.27"
|
|
1629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1630
|
+
checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
|
|
1631
|
+
dependencies = [
|
|
1632
|
+
"windows-sys 0.59.0",
|
|
1633
|
+
]
|
|
1634
|
+
|
|
1635
|
+
[[package]]
|
|
1636
|
+
name = "security-framework"
|
|
1637
|
+
version = "2.11.1"
|
|
1638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1639
|
+
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
|
1640
|
+
dependencies = [
|
|
1641
|
+
"bitflags 2.9.3",
|
|
1642
|
+
"core-foundation",
|
|
1643
|
+
"core-foundation-sys",
|
|
1644
|
+
"libc",
|
|
1645
|
+
"security-framework-sys",
|
|
1646
|
+
]
|
|
1647
|
+
|
|
1648
|
+
[[package]]
|
|
1649
|
+
name = "security-framework-sys"
|
|
1650
|
+
version = "2.14.0"
|
|
1651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1652
|
+
checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
|
|
1653
|
+
dependencies = [
|
|
1654
|
+
"core-foundation-sys",
|
|
1655
|
+
"libc",
|
|
1656
|
+
]
|
|
1657
|
+
|
|
1658
|
+
[[package]]
|
|
1659
|
+
name = "serde"
|
|
1660
|
+
version = "1.0.219"
|
|
1661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1662
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
1663
|
+
dependencies = [
|
|
1664
|
+
"serde_derive",
|
|
1665
|
+
]
|
|
1666
|
+
|
|
1667
|
+
[[package]]
|
|
1668
|
+
name = "serde-wasm-bindgen"
|
|
1669
|
+
version = "0.6.5"
|
|
1670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1671
|
+
checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
|
|
1672
|
+
dependencies = [
|
|
1673
|
+
"js-sys",
|
|
1674
|
+
"serde",
|
|
1675
|
+
"wasm-bindgen",
|
|
1676
|
+
]
|
|
1677
|
+
|
|
1678
|
+
[[package]]
|
|
1679
|
+
name = "serde_derive"
|
|
1680
|
+
version = "1.0.219"
|
|
1681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1682
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
1683
|
+
dependencies = [
|
|
1684
|
+
"proc-macro2",
|
|
1685
|
+
"quote",
|
|
1686
|
+
"syn",
|
|
1687
|
+
]
|
|
1688
|
+
|
|
1689
|
+
[[package]]
|
|
1690
|
+
name = "serde_json"
|
|
1691
|
+
version = "1.0.143"
|
|
1692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1693
|
+
checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a"
|
|
1694
|
+
dependencies = [
|
|
1695
|
+
"itoa",
|
|
1696
|
+
"memchr",
|
|
1697
|
+
"ryu",
|
|
1698
|
+
"serde",
|
|
1699
|
+
]
|
|
1700
|
+
|
|
1701
|
+
[[package]]
|
|
1702
|
+
name = "serde_plain"
|
|
1703
|
+
version = "1.0.2"
|
|
1704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1705
|
+
checksum = "9ce1fc6db65a611022b23a0dec6975d63fb80a302cb3388835ff02c097258d50"
|
|
1706
|
+
dependencies = [
|
|
1707
|
+
"serde",
|
|
1708
|
+
]
|
|
1709
|
+
|
|
1710
|
+
[[package]]
|
|
1711
|
+
name = "serde_repr"
|
|
1712
|
+
version = "0.1.20"
|
|
1713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1714
|
+
checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
|
|
1715
|
+
dependencies = [
|
|
1716
|
+
"proc-macro2",
|
|
1717
|
+
"quote",
|
|
1718
|
+
"syn",
|
|
1719
|
+
]
|
|
1720
|
+
|
|
1721
|
+
[[package]]
|
|
1722
|
+
name = "serde_urlencoded"
|
|
1723
|
+
version = "0.7.1"
|
|
1724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1725
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1726
|
+
dependencies = [
|
|
1727
|
+
"form_urlencoded",
|
|
1728
|
+
"itoa",
|
|
1729
|
+
"ryu",
|
|
1730
|
+
"serde",
|
|
1731
|
+
]
|
|
1732
|
+
|
|
1733
|
+
[[package]]
|
|
1734
|
+
name = "shlex"
|
|
1735
|
+
version = "1.3.0"
|
|
1736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1737
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1738
|
+
|
|
1739
|
+
[[package]]
|
|
1740
|
+
name = "similar"
|
|
1741
|
+
version = "2.7.0"
|
|
1742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1743
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
1744
|
+
|
|
1745
|
+
[[package]]
|
|
1746
|
+
name = "simple_asn1"
|
|
1747
|
+
version = "0.6.3"
|
|
1748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1749
|
+
checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb"
|
|
1750
|
+
dependencies = [
|
|
1751
|
+
"num-bigint",
|
|
1752
|
+
"num-traits",
|
|
1753
|
+
"thiserror 2.0.16",
|
|
1754
|
+
"time",
|
|
1755
|
+
]
|
|
1756
|
+
|
|
1757
|
+
[[package]]
|
|
1758
|
+
name = "simplelog"
|
|
1759
|
+
version = "0.12.2"
|
|
1760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1761
|
+
checksum = "16257adbfaef1ee58b1363bdc0664c9b8e1e30aed86049635fb5f147d065a9c0"
|
|
1762
|
+
dependencies = [
|
|
1763
|
+
"log",
|
|
1764
|
+
"termcolor",
|
|
1765
|
+
"time",
|
|
1766
|
+
]
|
|
1767
|
+
|
|
1768
|
+
[[package]]
|
|
1769
|
+
name = "slab"
|
|
1770
|
+
version = "0.4.11"
|
|
1771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1772
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
1773
|
+
|
|
1774
|
+
[[package]]
|
|
1775
|
+
name = "smallvec"
|
|
1776
|
+
version = "1.15.1"
|
|
1777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1778
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1779
|
+
|
|
1780
|
+
[[package]]
|
|
1781
|
+
name = "smol_str"
|
|
1782
|
+
version = "0.3.2"
|
|
1783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1784
|
+
checksum = "9676b89cd56310a87b93dec47b11af744f34d5fc9f367b829474eec0a891350d"
|
|
1785
|
+
dependencies = [
|
|
1786
|
+
"borsh",
|
|
1787
|
+
"serde",
|
|
1788
|
+
]
|
|
1789
|
+
|
|
1790
|
+
[[package]]
|
|
1791
|
+
name = "snapbox"
|
|
1792
|
+
version = "0.6.21"
|
|
1793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1794
|
+
checksum = "96dcfc4581e3355d70ac2ee14cfdf81dce3d85c85f1ed9e2c1d3013f53b3436b"
|
|
1795
|
+
dependencies = [
|
|
1796
|
+
"anstream",
|
|
1797
|
+
"anstyle",
|
|
1798
|
+
"anstyle-svg",
|
|
1799
|
+
"libc",
|
|
1800
|
+
"normalize-line-endings",
|
|
1801
|
+
"os_pipe",
|
|
1802
|
+
"serde_json",
|
|
1803
|
+
"similar",
|
|
1804
|
+
"snapbox-macros",
|
|
1805
|
+
"wait-timeout",
|
|
1806
|
+
"windows-sys 0.59.0",
|
|
1807
|
+
]
|
|
1808
|
+
|
|
1809
|
+
[[package]]
|
|
1810
|
+
name = "snapbox-macros"
|
|
1811
|
+
version = "0.3.10"
|
|
1812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1813
|
+
checksum = "16569f53ca23a41bb6f62e0a5084aa1661f4814a67fa33696a79073e03a664af"
|
|
1814
|
+
dependencies = [
|
|
1815
|
+
"anstream",
|
|
1816
|
+
]
|
|
1817
|
+
|
|
1818
|
+
[[package]]
|
|
1819
|
+
name = "socket2"
|
|
1820
|
+
version = "0.5.10"
|
|
1821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1822
|
+
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
|
1823
|
+
dependencies = [
|
|
1824
|
+
"libc",
|
|
1825
|
+
"windows-sys 0.52.0",
|
|
1826
|
+
]
|
|
1827
|
+
|
|
1828
|
+
[[package]]
|
|
1829
|
+
name = "socket2"
|
|
1830
|
+
version = "0.6.0"
|
|
1831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1832
|
+
checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
|
|
1833
|
+
dependencies = [
|
|
1834
|
+
"libc",
|
|
1835
|
+
"windows-sys 0.59.0",
|
|
1836
|
+
]
|
|
1837
|
+
|
|
1838
|
+
[[package]]
|
|
1839
|
+
name = "squawk"
|
|
1840
|
+
version = "2.35.0"
|
|
1841
|
+
dependencies = [
|
|
1842
|
+
"annotate-snippets",
|
|
1843
|
+
"anyhow",
|
|
1844
|
+
"base64 0.12.3",
|
|
1845
|
+
"clap",
|
|
1846
|
+
"console 0.11.3",
|
|
1847
|
+
"enum-iterator",
|
|
1848
|
+
"glob",
|
|
1849
|
+
"insta",
|
|
1850
|
+
"line-index",
|
|
1851
|
+
"log",
|
|
1852
|
+
"lsp-server",
|
|
1853
|
+
"lsp-types",
|
|
1854
|
+
"serde",
|
|
1855
|
+
"serde_json",
|
|
1856
|
+
"simplelog",
|
|
1857
|
+
"snapbox",
|
|
1858
|
+
"squawk-github",
|
|
1859
|
+
"squawk-lexer",
|
|
1860
|
+
"squawk-linter",
|
|
1861
|
+
"squawk-server",
|
|
1862
|
+
"squawk-syntax",
|
|
1863
|
+
"tempfile",
|
|
1864
|
+
"toml",
|
|
1865
|
+
]
|
|
1866
|
+
|
|
1867
|
+
[[package]]
|
|
1868
|
+
name = "squawk-github"
|
|
1869
|
+
version = "2.35.0"
|
|
1870
|
+
dependencies = [
|
|
1871
|
+
"jsonwebtoken",
|
|
1872
|
+
"log",
|
|
1873
|
+
"reqwest",
|
|
1874
|
+
"serde",
|
|
1875
|
+
"serde_json",
|
|
1876
|
+
]
|
|
1877
|
+
|
|
1878
|
+
[[package]]
|
|
1879
|
+
name = "squawk-ide"
|
|
1880
|
+
version = "2.35.0"
|
|
1881
|
+
dependencies = [
|
|
1882
|
+
"annotate-snippets",
|
|
1883
|
+
"insta",
|
|
1884
|
+
"la-arena",
|
|
1885
|
+
"line-index",
|
|
1886
|
+
"log",
|
|
1887
|
+
"rowan",
|
|
1888
|
+
"smol_str",
|
|
1889
|
+
"squawk-linter",
|
|
1890
|
+
"squawk-syntax",
|
|
1891
|
+
]
|
|
1892
|
+
|
|
1893
|
+
[[package]]
|
|
1894
|
+
name = "squawk-lexer"
|
|
1895
|
+
version = "2.35.0"
|
|
1896
|
+
dependencies = [
|
|
1897
|
+
"insta",
|
|
1898
|
+
]
|
|
1899
|
+
|
|
1900
|
+
[[package]]
|
|
1901
|
+
name = "squawk-linter"
|
|
1902
|
+
version = "2.35.0"
|
|
1903
|
+
dependencies = [
|
|
1904
|
+
"annotate-snippets",
|
|
1905
|
+
"enum-iterator",
|
|
1906
|
+
"insta",
|
|
1907
|
+
"lazy_static",
|
|
1908
|
+
"line-index",
|
|
1909
|
+
"rowan",
|
|
1910
|
+
"serde",
|
|
1911
|
+
"serde_plain",
|
|
1912
|
+
"squawk-syntax",
|
|
1913
|
+
]
|
|
1914
|
+
|
|
1915
|
+
[[package]]
|
|
1916
|
+
name = "squawk-parser"
|
|
1917
|
+
version = "2.35.0"
|
|
1918
|
+
dependencies = [
|
|
1919
|
+
"annotate-snippets",
|
|
1920
|
+
"camino",
|
|
1921
|
+
"dir-test",
|
|
1922
|
+
"drop_bomb",
|
|
1923
|
+
"insta",
|
|
1924
|
+
"pg_query",
|
|
1925
|
+
"squawk-lexer",
|
|
1926
|
+
"xshell",
|
|
1927
|
+
]
|
|
1928
|
+
|
|
1929
|
+
[[package]]
|
|
1930
|
+
name = "squawk-server"
|
|
1931
|
+
version = "2.35.0"
|
|
1932
|
+
dependencies = [
|
|
1933
|
+
"anyhow",
|
|
1934
|
+
"insta",
|
|
1935
|
+
"line-index",
|
|
1936
|
+
"log",
|
|
1937
|
+
"lsp-server",
|
|
1938
|
+
"lsp-types",
|
|
1939
|
+
"rowan",
|
|
1940
|
+
"serde",
|
|
1941
|
+
"serde_json",
|
|
1942
|
+
"simplelog",
|
|
1943
|
+
"squawk-ide",
|
|
1944
|
+
"squawk-lexer",
|
|
1945
|
+
"squawk-linter",
|
|
1946
|
+
"squawk-syntax",
|
|
1947
|
+
]
|
|
1948
|
+
|
|
1949
|
+
[[package]]
|
|
1950
|
+
name = "squawk-syntax"
|
|
1951
|
+
version = "2.35.0"
|
|
1952
|
+
dependencies = [
|
|
1953
|
+
"annotate-snippets",
|
|
1954
|
+
"camino",
|
|
1955
|
+
"dir-test",
|
|
1956
|
+
"insta",
|
|
1957
|
+
"rowan",
|
|
1958
|
+
"smol_str",
|
|
1959
|
+
"squawk-parser",
|
|
1960
|
+
]
|
|
1961
|
+
|
|
1962
|
+
[[package]]
|
|
1963
|
+
name = "squawk-wasm"
|
|
1964
|
+
version = "2.35.0"
|
|
1965
|
+
dependencies = [
|
|
1966
|
+
"console_error_panic_hook",
|
|
1967
|
+
"console_log",
|
|
1968
|
+
"line-index",
|
|
1969
|
+
"log",
|
|
1970
|
+
"rowan",
|
|
1971
|
+
"serde",
|
|
1972
|
+
"serde-wasm-bindgen",
|
|
1973
|
+
"squawk-ide",
|
|
1974
|
+
"squawk-lexer",
|
|
1975
|
+
"squawk-linter",
|
|
1976
|
+
"squawk-syntax",
|
|
1977
|
+
"wasm-bindgen",
|
|
1978
|
+
"wasm-bindgen-test",
|
|
1979
|
+
"web-sys",
|
|
1980
|
+
]
|
|
1981
|
+
|
|
1982
|
+
[[package]]
|
|
1983
|
+
name = "stable_deref_trait"
|
|
1984
|
+
version = "1.2.0"
|
|
1985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1986
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
1987
|
+
|
|
1988
|
+
[[package]]
|
|
1989
|
+
name = "strsim"
|
|
1990
|
+
version = "0.11.1"
|
|
1991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1992
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1993
|
+
|
|
1994
|
+
[[package]]
|
|
1995
|
+
name = "syn"
|
|
1996
|
+
version = "2.0.106"
|
|
1997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1998
|
+
checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
|
|
1999
|
+
dependencies = [
|
|
2000
|
+
"proc-macro2",
|
|
2001
|
+
"quote",
|
|
2002
|
+
"unicode-ident",
|
|
2003
|
+
]
|
|
2004
|
+
|
|
2005
|
+
[[package]]
|
|
2006
|
+
name = "sync_wrapper"
|
|
2007
|
+
version = "0.1.2"
|
|
2008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2009
|
+
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
|
|
2010
|
+
|
|
2011
|
+
[[package]]
|
|
2012
|
+
name = "synstructure"
|
|
2013
|
+
version = "0.13.2"
|
|
2014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2015
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2016
|
+
dependencies = [
|
|
2017
|
+
"proc-macro2",
|
|
2018
|
+
"quote",
|
|
2019
|
+
"syn",
|
|
2020
|
+
]
|
|
2021
|
+
|
|
2022
|
+
[[package]]
|
|
2023
|
+
name = "system-configuration"
|
|
2024
|
+
version = "0.5.1"
|
|
2025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2026
|
+
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
|
|
2027
|
+
dependencies = [
|
|
2028
|
+
"bitflags 1.3.2",
|
|
2029
|
+
"core-foundation",
|
|
2030
|
+
"system-configuration-sys",
|
|
2031
|
+
]
|
|
2032
|
+
|
|
2033
|
+
[[package]]
|
|
2034
|
+
name = "system-configuration-sys"
|
|
2035
|
+
version = "0.5.0"
|
|
2036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2037
|
+
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
|
|
2038
|
+
dependencies = [
|
|
2039
|
+
"core-foundation-sys",
|
|
2040
|
+
"libc",
|
|
2041
|
+
]
|
|
2042
|
+
|
|
2043
|
+
[[package]]
|
|
2044
|
+
name = "tempfile"
|
|
2045
|
+
version = "3.21.0"
|
|
2046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2047
|
+
checksum = "15b61f8f20e3a6f7e0649d825294eaf317edce30f82cf6026e7e4cb9222a7d1e"
|
|
2048
|
+
dependencies = [
|
|
2049
|
+
"fastrand",
|
|
2050
|
+
"getrandom 0.3.3",
|
|
2051
|
+
"once_cell",
|
|
2052
|
+
"rustix 1.0.8",
|
|
2053
|
+
"windows-sys 0.60.2",
|
|
2054
|
+
]
|
|
2055
|
+
|
|
2056
|
+
[[package]]
|
|
2057
|
+
name = "termcolor"
|
|
2058
|
+
version = "1.4.1"
|
|
2059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2060
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
2061
|
+
dependencies = [
|
|
2062
|
+
"winapi-util",
|
|
2063
|
+
]
|
|
2064
|
+
|
|
2065
|
+
[[package]]
|
|
2066
|
+
name = "terminal_size"
|
|
2067
|
+
version = "0.1.17"
|
|
2068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2069
|
+
checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
|
|
2070
|
+
dependencies = [
|
|
2071
|
+
"libc",
|
|
2072
|
+
"winapi",
|
|
2073
|
+
]
|
|
2074
|
+
|
|
2075
|
+
[[package]]
|
|
2076
|
+
name = "termios"
|
|
2077
|
+
version = "0.3.3"
|
|
2078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2079
|
+
checksum = "411c5bf740737c7918b8b1fe232dca4dc9f8e754b8ad5e20966814001ed0ac6b"
|
|
2080
|
+
dependencies = [
|
|
2081
|
+
"libc",
|
|
2082
|
+
]
|
|
2083
|
+
|
|
2084
|
+
[[package]]
|
|
2085
|
+
name = "text-size"
|
|
2086
|
+
version = "1.1.1"
|
|
2087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2088
|
+
checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
|
|
2089
|
+
|
|
2090
|
+
[[package]]
|
|
2091
|
+
name = "thiserror"
|
|
2092
|
+
version = "1.0.69"
|
|
2093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2094
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
2095
|
+
dependencies = [
|
|
2096
|
+
"thiserror-impl 1.0.69",
|
|
2097
|
+
]
|
|
2098
|
+
|
|
2099
|
+
[[package]]
|
|
2100
|
+
name = "thiserror"
|
|
2101
|
+
version = "2.0.16"
|
|
2102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2103
|
+
checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0"
|
|
2104
|
+
dependencies = [
|
|
2105
|
+
"thiserror-impl 2.0.16",
|
|
2106
|
+
]
|
|
2107
|
+
|
|
2108
|
+
[[package]]
|
|
2109
|
+
name = "thiserror-impl"
|
|
2110
|
+
version = "1.0.69"
|
|
2111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2112
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
2113
|
+
dependencies = [
|
|
2114
|
+
"proc-macro2",
|
|
2115
|
+
"quote",
|
|
2116
|
+
"syn",
|
|
2117
|
+
]
|
|
2118
|
+
|
|
2119
|
+
[[package]]
|
|
2120
|
+
name = "thiserror-impl"
|
|
2121
|
+
version = "2.0.16"
|
|
2122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2123
|
+
checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960"
|
|
2124
|
+
dependencies = [
|
|
2125
|
+
"proc-macro2",
|
|
2126
|
+
"quote",
|
|
2127
|
+
"syn",
|
|
2128
|
+
]
|
|
2129
|
+
|
|
2130
|
+
[[package]]
|
|
2131
|
+
name = "time"
|
|
2132
|
+
version = "0.3.41"
|
|
2133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2134
|
+
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
|
2135
|
+
dependencies = [
|
|
2136
|
+
"deranged",
|
|
2137
|
+
"itoa",
|
|
2138
|
+
"libc",
|
|
2139
|
+
"num-conv",
|
|
2140
|
+
"num_threads",
|
|
2141
|
+
"powerfmt",
|
|
2142
|
+
"serde",
|
|
2143
|
+
"time-core",
|
|
2144
|
+
"time-macros",
|
|
2145
|
+
]
|
|
2146
|
+
|
|
2147
|
+
[[package]]
|
|
2148
|
+
name = "time-core"
|
|
2149
|
+
version = "0.1.4"
|
|
2150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2151
|
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
|
2152
|
+
|
|
2153
|
+
[[package]]
|
|
2154
|
+
name = "time-macros"
|
|
2155
|
+
version = "0.2.22"
|
|
2156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2157
|
+
checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
|
|
2158
|
+
dependencies = [
|
|
2159
|
+
"num-conv",
|
|
2160
|
+
"time-core",
|
|
2161
|
+
]
|
|
2162
|
+
|
|
2163
|
+
[[package]]
|
|
2164
|
+
name = "tinystr"
|
|
2165
|
+
version = "0.8.1"
|
|
2166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2167
|
+
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
|
|
2168
|
+
dependencies = [
|
|
2169
|
+
"displaydoc",
|
|
2170
|
+
"zerovec",
|
|
2171
|
+
]
|
|
2172
|
+
|
|
2173
|
+
[[package]]
|
|
2174
|
+
name = "tokio"
|
|
2175
|
+
version = "1.47.1"
|
|
2176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2177
|
+
checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038"
|
|
2178
|
+
dependencies = [
|
|
2179
|
+
"backtrace",
|
|
2180
|
+
"bytes",
|
|
2181
|
+
"io-uring",
|
|
2182
|
+
"libc",
|
|
2183
|
+
"mio",
|
|
2184
|
+
"pin-project-lite",
|
|
2185
|
+
"slab",
|
|
2186
|
+
"socket2 0.6.0",
|
|
2187
|
+
"windows-sys 0.59.0",
|
|
2188
|
+
]
|
|
2189
|
+
|
|
2190
|
+
[[package]]
|
|
2191
|
+
name = "tokio-native-tls"
|
|
2192
|
+
version = "0.3.1"
|
|
2193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2194
|
+
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
|
2195
|
+
dependencies = [
|
|
2196
|
+
"native-tls",
|
|
2197
|
+
"tokio",
|
|
2198
|
+
]
|
|
2199
|
+
|
|
2200
|
+
[[package]]
|
|
2201
|
+
name = "tokio-util"
|
|
2202
|
+
version = "0.7.16"
|
|
2203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2204
|
+
checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
|
|
2205
|
+
dependencies = [
|
|
2206
|
+
"bytes",
|
|
2207
|
+
"futures-core",
|
|
2208
|
+
"futures-sink",
|
|
2209
|
+
"pin-project-lite",
|
|
2210
|
+
"tokio",
|
|
2211
|
+
]
|
|
2212
|
+
|
|
2213
|
+
[[package]]
|
|
2214
|
+
name = "toml"
|
|
2215
|
+
version = "0.5.11"
|
|
2216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2217
|
+
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
|
|
2218
|
+
dependencies = [
|
|
2219
|
+
"serde",
|
|
2220
|
+
]
|
|
2221
|
+
|
|
2222
|
+
[[package]]
|
|
2223
|
+
name = "tower-service"
|
|
2224
|
+
version = "0.3.3"
|
|
2225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2226
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
2227
|
+
|
|
2228
|
+
[[package]]
|
|
2229
|
+
name = "tracing"
|
|
2230
|
+
version = "0.1.41"
|
|
2231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2232
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
2233
|
+
dependencies = [
|
|
2234
|
+
"pin-project-lite",
|
|
2235
|
+
"tracing-core",
|
|
2236
|
+
]
|
|
2237
|
+
|
|
2238
|
+
[[package]]
|
|
2239
|
+
name = "tracing-core"
|
|
2240
|
+
version = "0.1.34"
|
|
2241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2242
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
|
2243
|
+
dependencies = [
|
|
2244
|
+
"once_cell",
|
|
2245
|
+
]
|
|
2246
|
+
|
|
2247
|
+
[[package]]
|
|
2248
|
+
name = "try-lock"
|
|
2249
|
+
version = "0.2.5"
|
|
2250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2251
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
2252
|
+
|
|
2253
|
+
[[package]]
|
|
2254
|
+
name = "ungrammar"
|
|
2255
|
+
version = "1.16.1"
|
|
2256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2257
|
+
checksum = "a3e5df347f0bf3ec1d670aad6ca5c6a1859cd9ea61d2113125794654ccced68f"
|
|
2258
|
+
|
|
2259
|
+
[[package]]
|
|
2260
|
+
name = "unicode-ident"
|
|
2261
|
+
version = "1.0.18"
|
|
2262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2263
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
2264
|
+
|
|
2265
|
+
[[package]]
|
|
2266
|
+
name = "unicode-segmentation"
|
|
2267
|
+
version = "1.12.0"
|
|
2268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2269
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
2270
|
+
|
|
2271
|
+
[[package]]
|
|
2272
|
+
name = "unicode-width"
|
|
2273
|
+
version = "0.1.14"
|
|
2274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2275
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
2276
|
+
|
|
2277
|
+
[[package]]
|
|
2278
|
+
name = "unicode-width"
|
|
2279
|
+
version = "0.2.1"
|
|
2280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2281
|
+
checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
|
|
2282
|
+
|
|
2283
|
+
[[package]]
|
|
2284
|
+
name = "untrusted"
|
|
2285
|
+
version = "0.9.0"
|
|
2286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2287
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
2288
|
+
|
|
2289
|
+
[[package]]
|
|
2290
|
+
name = "url"
|
|
2291
|
+
version = "2.5.7"
|
|
2292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2293
|
+
checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
|
|
2294
|
+
dependencies = [
|
|
2295
|
+
"form_urlencoded",
|
|
2296
|
+
"idna",
|
|
2297
|
+
"percent-encoding",
|
|
2298
|
+
"serde",
|
|
2299
|
+
]
|
|
2300
|
+
|
|
2301
|
+
[[package]]
|
|
2302
|
+
name = "utf8-width"
|
|
2303
|
+
version = "0.1.7"
|
|
2304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2305
|
+
checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3"
|
|
2306
|
+
|
|
2307
|
+
[[package]]
|
|
2308
|
+
name = "utf8_iter"
|
|
2309
|
+
version = "1.0.4"
|
|
2310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2311
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2312
|
+
|
|
2313
|
+
[[package]]
|
|
2314
|
+
name = "utf8parse"
|
|
2315
|
+
version = "0.2.2"
|
|
2316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2317
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
2318
|
+
|
|
2319
|
+
[[package]]
|
|
2320
|
+
name = "vcpkg"
|
|
2321
|
+
version = "0.2.15"
|
|
2322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2323
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
2324
|
+
|
|
2325
|
+
[[package]]
|
|
2326
|
+
name = "wait-timeout"
|
|
2327
|
+
version = "0.2.1"
|
|
2328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2329
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
2330
|
+
dependencies = [
|
|
2331
|
+
"libc",
|
|
2332
|
+
]
|
|
2333
|
+
|
|
2334
|
+
[[package]]
|
|
2335
|
+
name = "walkdir"
|
|
2336
|
+
version = "2.5.0"
|
|
2337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2338
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
2339
|
+
dependencies = [
|
|
2340
|
+
"same-file",
|
|
2341
|
+
"winapi-util",
|
|
2342
|
+
]
|
|
2343
|
+
|
|
2344
|
+
[[package]]
|
|
2345
|
+
name = "want"
|
|
2346
|
+
version = "0.3.1"
|
|
2347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2348
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
2349
|
+
dependencies = [
|
|
2350
|
+
"try-lock",
|
|
2351
|
+
]
|
|
2352
|
+
|
|
2353
|
+
[[package]]
|
|
2354
|
+
name = "wasi"
|
|
2355
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
2356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2357
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2358
|
+
|
|
2359
|
+
[[package]]
|
|
2360
|
+
name = "wasi"
|
|
2361
|
+
version = "0.14.3+wasi-0.2.4"
|
|
2362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2363
|
+
checksum = "6a51ae83037bdd272a9e28ce236db8c07016dd0d50c27038b3f407533c030c95"
|
|
2364
|
+
dependencies = [
|
|
2365
|
+
"wit-bindgen",
|
|
2366
|
+
]
|
|
2367
|
+
|
|
2368
|
+
[[package]]
|
|
2369
|
+
name = "wasm-bindgen"
|
|
2370
|
+
version = "0.2.100"
|
|
2371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2372
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
2373
|
+
dependencies = [
|
|
2374
|
+
"cfg-if",
|
|
2375
|
+
"once_cell",
|
|
2376
|
+
"rustversion",
|
|
2377
|
+
"wasm-bindgen-macro",
|
|
2378
|
+
]
|
|
2379
|
+
|
|
2380
|
+
[[package]]
|
|
2381
|
+
name = "wasm-bindgen-backend"
|
|
2382
|
+
version = "0.2.100"
|
|
2383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2384
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
2385
|
+
dependencies = [
|
|
2386
|
+
"bumpalo",
|
|
2387
|
+
"log",
|
|
2388
|
+
"proc-macro2",
|
|
2389
|
+
"quote",
|
|
2390
|
+
"syn",
|
|
2391
|
+
"wasm-bindgen-shared",
|
|
2392
|
+
]
|
|
2393
|
+
|
|
2394
|
+
[[package]]
|
|
2395
|
+
name = "wasm-bindgen-futures"
|
|
2396
|
+
version = "0.4.50"
|
|
2397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2398
|
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
|
|
2399
|
+
dependencies = [
|
|
2400
|
+
"cfg-if",
|
|
2401
|
+
"js-sys",
|
|
2402
|
+
"once_cell",
|
|
2403
|
+
"wasm-bindgen",
|
|
2404
|
+
"web-sys",
|
|
2405
|
+
]
|
|
2406
|
+
|
|
2407
|
+
[[package]]
|
|
2408
|
+
name = "wasm-bindgen-macro"
|
|
2409
|
+
version = "0.2.100"
|
|
2410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2411
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
2412
|
+
dependencies = [
|
|
2413
|
+
"quote",
|
|
2414
|
+
"wasm-bindgen-macro-support",
|
|
2415
|
+
]
|
|
2416
|
+
|
|
2417
|
+
[[package]]
|
|
2418
|
+
name = "wasm-bindgen-macro-support"
|
|
2419
|
+
version = "0.2.100"
|
|
2420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2421
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
2422
|
+
dependencies = [
|
|
2423
|
+
"proc-macro2",
|
|
2424
|
+
"quote",
|
|
2425
|
+
"syn",
|
|
2426
|
+
"wasm-bindgen-backend",
|
|
2427
|
+
"wasm-bindgen-shared",
|
|
2428
|
+
]
|
|
2429
|
+
|
|
2430
|
+
[[package]]
|
|
2431
|
+
name = "wasm-bindgen-shared"
|
|
2432
|
+
version = "0.2.100"
|
|
2433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2434
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
2435
|
+
dependencies = [
|
|
2436
|
+
"unicode-ident",
|
|
2437
|
+
]
|
|
2438
|
+
|
|
2439
|
+
[[package]]
|
|
2440
|
+
name = "wasm-bindgen-test"
|
|
2441
|
+
version = "0.3.50"
|
|
2442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2443
|
+
checksum = "66c8d5e33ca3b6d9fa3b4676d774c5778031d27a578c2b007f905acf816152c3"
|
|
2444
|
+
dependencies = [
|
|
2445
|
+
"js-sys",
|
|
2446
|
+
"minicov",
|
|
2447
|
+
"wasm-bindgen",
|
|
2448
|
+
"wasm-bindgen-futures",
|
|
2449
|
+
"wasm-bindgen-test-macro",
|
|
2450
|
+
]
|
|
2451
|
+
|
|
2452
|
+
[[package]]
|
|
2453
|
+
name = "wasm-bindgen-test-macro"
|
|
2454
|
+
version = "0.3.50"
|
|
2455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2456
|
+
checksum = "17d5042cc5fa009658f9a7333ef24291b1291a25b6382dd68862a7f3b969f69b"
|
|
2457
|
+
dependencies = [
|
|
2458
|
+
"proc-macro2",
|
|
2459
|
+
"quote",
|
|
2460
|
+
"syn",
|
|
2461
|
+
]
|
|
2462
|
+
|
|
2463
|
+
[[package]]
|
|
2464
|
+
name = "web-sys"
|
|
2465
|
+
version = "0.3.77"
|
|
2466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2467
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
|
2468
|
+
dependencies = [
|
|
2469
|
+
"js-sys",
|
|
2470
|
+
"wasm-bindgen",
|
|
2471
|
+
]
|
|
2472
|
+
|
|
2473
|
+
[[package]]
|
|
2474
|
+
name = "which"
|
|
2475
|
+
version = "4.4.2"
|
|
2476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2477
|
+
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
|
|
2478
|
+
dependencies = [
|
|
2479
|
+
"either",
|
|
2480
|
+
"home",
|
|
2481
|
+
"once_cell",
|
|
2482
|
+
"rustix 0.38.44",
|
|
2483
|
+
]
|
|
2484
|
+
|
|
2485
|
+
[[package]]
|
|
2486
|
+
name = "winapi"
|
|
2487
|
+
version = "0.3.9"
|
|
2488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2489
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
2490
|
+
dependencies = [
|
|
2491
|
+
"winapi-i686-pc-windows-gnu",
|
|
2492
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
2493
|
+
]
|
|
2494
|
+
|
|
2495
|
+
[[package]]
|
|
2496
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
2497
|
+
version = "0.4.0"
|
|
2498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2499
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2500
|
+
|
|
2501
|
+
[[package]]
|
|
2502
|
+
name = "winapi-util"
|
|
2503
|
+
version = "0.1.10"
|
|
2504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2505
|
+
checksum = "0978bf7171b3d90bac376700cb56d606feb40f251a475a5d6634613564460b22"
|
|
2506
|
+
dependencies = [
|
|
2507
|
+
"windows-sys 0.60.2",
|
|
2508
|
+
]
|
|
2509
|
+
|
|
2510
|
+
[[package]]
|
|
2511
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
2512
|
+
version = "0.4.0"
|
|
2513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2514
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2515
|
+
|
|
2516
|
+
[[package]]
|
|
2517
|
+
name = "windows-link"
|
|
2518
|
+
version = "0.1.3"
|
|
2519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2520
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
2521
|
+
|
|
2522
|
+
[[package]]
|
|
2523
|
+
name = "windows-sys"
|
|
2524
|
+
version = "0.48.0"
|
|
2525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2526
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
2527
|
+
dependencies = [
|
|
2528
|
+
"windows-targets 0.48.5",
|
|
2529
|
+
]
|
|
2530
|
+
|
|
2531
|
+
[[package]]
|
|
2532
|
+
name = "windows-sys"
|
|
2533
|
+
version = "0.52.0"
|
|
2534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2535
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2536
|
+
dependencies = [
|
|
2537
|
+
"windows-targets 0.52.6",
|
|
2538
|
+
]
|
|
2539
|
+
|
|
2540
|
+
[[package]]
|
|
2541
|
+
name = "windows-sys"
|
|
2542
|
+
version = "0.59.0"
|
|
2543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2544
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
2545
|
+
dependencies = [
|
|
2546
|
+
"windows-targets 0.52.6",
|
|
2547
|
+
]
|
|
2548
|
+
|
|
2549
|
+
[[package]]
|
|
2550
|
+
name = "windows-sys"
|
|
2551
|
+
version = "0.60.2"
|
|
2552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2553
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
2554
|
+
dependencies = [
|
|
2555
|
+
"windows-targets 0.53.3",
|
|
2556
|
+
]
|
|
2557
|
+
|
|
2558
|
+
[[package]]
|
|
2559
|
+
name = "windows-targets"
|
|
2560
|
+
version = "0.48.5"
|
|
2561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2562
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
2563
|
+
dependencies = [
|
|
2564
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
2565
|
+
"windows_aarch64_msvc 0.48.5",
|
|
2566
|
+
"windows_i686_gnu 0.48.5",
|
|
2567
|
+
"windows_i686_msvc 0.48.5",
|
|
2568
|
+
"windows_x86_64_gnu 0.48.5",
|
|
2569
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
2570
|
+
"windows_x86_64_msvc 0.48.5",
|
|
2571
|
+
]
|
|
2572
|
+
|
|
2573
|
+
[[package]]
|
|
2574
|
+
name = "windows-targets"
|
|
2575
|
+
version = "0.52.6"
|
|
2576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2577
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2578
|
+
dependencies = [
|
|
2579
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
2580
|
+
"windows_aarch64_msvc 0.52.6",
|
|
2581
|
+
"windows_i686_gnu 0.52.6",
|
|
2582
|
+
"windows_i686_gnullvm 0.52.6",
|
|
2583
|
+
"windows_i686_msvc 0.52.6",
|
|
2584
|
+
"windows_x86_64_gnu 0.52.6",
|
|
2585
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
2586
|
+
"windows_x86_64_msvc 0.52.6",
|
|
2587
|
+
]
|
|
2588
|
+
|
|
2589
|
+
[[package]]
|
|
2590
|
+
name = "windows-targets"
|
|
2591
|
+
version = "0.53.3"
|
|
2592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2593
|
+
checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
|
|
2594
|
+
dependencies = [
|
|
2595
|
+
"windows-link",
|
|
2596
|
+
"windows_aarch64_gnullvm 0.53.0",
|
|
2597
|
+
"windows_aarch64_msvc 0.53.0",
|
|
2598
|
+
"windows_i686_gnu 0.53.0",
|
|
2599
|
+
"windows_i686_gnullvm 0.53.0",
|
|
2600
|
+
"windows_i686_msvc 0.53.0",
|
|
2601
|
+
"windows_x86_64_gnu 0.53.0",
|
|
2602
|
+
"windows_x86_64_gnullvm 0.53.0",
|
|
2603
|
+
"windows_x86_64_msvc 0.53.0",
|
|
2604
|
+
]
|
|
2605
|
+
|
|
2606
|
+
[[package]]
|
|
2607
|
+
name = "windows_aarch64_gnullvm"
|
|
2608
|
+
version = "0.48.5"
|
|
2609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2610
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
2611
|
+
|
|
2612
|
+
[[package]]
|
|
2613
|
+
name = "windows_aarch64_gnullvm"
|
|
2614
|
+
version = "0.52.6"
|
|
2615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2616
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2617
|
+
|
|
2618
|
+
[[package]]
|
|
2619
|
+
name = "windows_aarch64_gnullvm"
|
|
2620
|
+
version = "0.53.0"
|
|
2621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2622
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
2623
|
+
|
|
2624
|
+
[[package]]
|
|
2625
|
+
name = "windows_aarch64_msvc"
|
|
2626
|
+
version = "0.48.5"
|
|
2627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2628
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
2629
|
+
|
|
2630
|
+
[[package]]
|
|
2631
|
+
name = "windows_aarch64_msvc"
|
|
2632
|
+
version = "0.52.6"
|
|
2633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2634
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2635
|
+
|
|
2636
|
+
[[package]]
|
|
2637
|
+
name = "windows_aarch64_msvc"
|
|
2638
|
+
version = "0.53.0"
|
|
2639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2640
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
2641
|
+
|
|
2642
|
+
[[package]]
|
|
2643
|
+
name = "windows_i686_gnu"
|
|
2644
|
+
version = "0.48.5"
|
|
2645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2646
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
2647
|
+
|
|
2648
|
+
[[package]]
|
|
2649
|
+
name = "windows_i686_gnu"
|
|
2650
|
+
version = "0.52.6"
|
|
2651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2652
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2653
|
+
|
|
2654
|
+
[[package]]
|
|
2655
|
+
name = "windows_i686_gnu"
|
|
2656
|
+
version = "0.53.0"
|
|
2657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2658
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
2659
|
+
|
|
2660
|
+
[[package]]
|
|
2661
|
+
name = "windows_i686_gnullvm"
|
|
2662
|
+
version = "0.52.6"
|
|
2663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2664
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2665
|
+
|
|
2666
|
+
[[package]]
|
|
2667
|
+
name = "windows_i686_gnullvm"
|
|
2668
|
+
version = "0.53.0"
|
|
2669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2670
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
2671
|
+
|
|
2672
|
+
[[package]]
|
|
2673
|
+
name = "windows_i686_msvc"
|
|
2674
|
+
version = "0.48.5"
|
|
2675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2676
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
2677
|
+
|
|
2678
|
+
[[package]]
|
|
2679
|
+
name = "windows_i686_msvc"
|
|
2680
|
+
version = "0.52.6"
|
|
2681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2682
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2683
|
+
|
|
2684
|
+
[[package]]
|
|
2685
|
+
name = "windows_i686_msvc"
|
|
2686
|
+
version = "0.53.0"
|
|
2687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2688
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
2689
|
+
|
|
2690
|
+
[[package]]
|
|
2691
|
+
name = "windows_x86_64_gnu"
|
|
2692
|
+
version = "0.48.5"
|
|
2693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2694
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
2695
|
+
|
|
2696
|
+
[[package]]
|
|
2697
|
+
name = "windows_x86_64_gnu"
|
|
2698
|
+
version = "0.52.6"
|
|
2699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2700
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2701
|
+
|
|
2702
|
+
[[package]]
|
|
2703
|
+
name = "windows_x86_64_gnu"
|
|
2704
|
+
version = "0.53.0"
|
|
2705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2706
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
2707
|
+
|
|
2708
|
+
[[package]]
|
|
2709
|
+
name = "windows_x86_64_gnullvm"
|
|
2710
|
+
version = "0.48.5"
|
|
2711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2712
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
2713
|
+
|
|
2714
|
+
[[package]]
|
|
2715
|
+
name = "windows_x86_64_gnullvm"
|
|
2716
|
+
version = "0.52.6"
|
|
2717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2718
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2719
|
+
|
|
2720
|
+
[[package]]
|
|
2721
|
+
name = "windows_x86_64_gnullvm"
|
|
2722
|
+
version = "0.53.0"
|
|
2723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2724
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
2725
|
+
|
|
2726
|
+
[[package]]
|
|
2727
|
+
name = "windows_x86_64_msvc"
|
|
2728
|
+
version = "0.48.5"
|
|
2729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2730
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
2731
|
+
|
|
2732
|
+
[[package]]
|
|
2733
|
+
name = "windows_x86_64_msvc"
|
|
2734
|
+
version = "0.52.6"
|
|
2735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2736
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2737
|
+
|
|
2738
|
+
[[package]]
|
|
2739
|
+
name = "windows_x86_64_msvc"
|
|
2740
|
+
version = "0.53.0"
|
|
2741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2742
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
2743
|
+
|
|
2744
|
+
[[package]]
|
|
2745
|
+
name = "winreg"
|
|
2746
|
+
version = "0.50.0"
|
|
2747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2748
|
+
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
|
|
2749
|
+
dependencies = [
|
|
2750
|
+
"cfg-if",
|
|
2751
|
+
"windows-sys 0.48.0",
|
|
2752
|
+
]
|
|
2753
|
+
|
|
2754
|
+
[[package]]
|
|
2755
|
+
name = "wit-bindgen"
|
|
2756
|
+
version = "0.45.0"
|
|
2757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2758
|
+
checksum = "052283831dbae3d879dc7f51f3d92703a316ca49f91540417d38591826127814"
|
|
2759
|
+
|
|
2760
|
+
[[package]]
|
|
2761
|
+
name = "writeable"
|
|
2762
|
+
version = "0.6.1"
|
|
2763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2764
|
+
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
|
|
2765
|
+
|
|
2766
|
+
[[package]]
|
|
2767
|
+
name = "xshell"
|
|
2768
|
+
version = "0.2.7"
|
|
2769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2770
|
+
checksum = "9e7290c623014758632efe00737145b6867b66292c42167f2ec381eb566a373d"
|
|
2771
|
+
dependencies = [
|
|
2772
|
+
"xshell-macros",
|
|
2773
|
+
]
|
|
2774
|
+
|
|
2775
|
+
[[package]]
|
|
2776
|
+
name = "xshell-macros"
|
|
2777
|
+
version = "0.2.7"
|
|
2778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2779
|
+
checksum = "32ac00cd3f8ec9c1d33fb3e7958a82df6989c42d747bd326c822b1d625283547"
|
|
2780
|
+
|
|
2781
|
+
[[package]]
|
|
2782
|
+
name = "xtask"
|
|
2783
|
+
version = "2.35.0"
|
|
2784
|
+
dependencies = [
|
|
2785
|
+
"anyhow",
|
|
2786
|
+
"camino",
|
|
2787
|
+
"clap",
|
|
2788
|
+
"convert_case",
|
|
2789
|
+
"enum-iterator",
|
|
2790
|
+
"proc-macro2",
|
|
2791
|
+
"quote",
|
|
2792
|
+
"regex",
|
|
2793
|
+
"reqwest",
|
|
2794
|
+
"serde",
|
|
2795
|
+
"serde_json",
|
|
2796
|
+
"ungrammar",
|
|
2797
|
+
"xshell",
|
|
2798
|
+
]
|
|
2799
|
+
|
|
2800
|
+
[[package]]
|
|
2801
|
+
name = "yoke"
|
|
2802
|
+
version = "0.8.0"
|
|
2803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2804
|
+
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
|
|
2805
|
+
dependencies = [
|
|
2806
|
+
"serde",
|
|
2807
|
+
"stable_deref_trait",
|
|
2808
|
+
"yoke-derive",
|
|
2809
|
+
"zerofrom",
|
|
2810
|
+
]
|
|
2811
|
+
|
|
2812
|
+
[[package]]
|
|
2813
|
+
name = "yoke-derive"
|
|
2814
|
+
version = "0.8.0"
|
|
2815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2816
|
+
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
|
2817
|
+
dependencies = [
|
|
2818
|
+
"proc-macro2",
|
|
2819
|
+
"quote",
|
|
2820
|
+
"syn",
|
|
2821
|
+
"synstructure",
|
|
2822
|
+
]
|
|
2823
|
+
|
|
2824
|
+
[[package]]
|
|
2825
|
+
name = "zerofrom"
|
|
2826
|
+
version = "0.1.6"
|
|
2827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2828
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
2829
|
+
dependencies = [
|
|
2830
|
+
"zerofrom-derive",
|
|
2831
|
+
]
|
|
2832
|
+
|
|
2833
|
+
[[package]]
|
|
2834
|
+
name = "zerofrom-derive"
|
|
2835
|
+
version = "0.1.6"
|
|
2836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2837
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
2838
|
+
dependencies = [
|
|
2839
|
+
"proc-macro2",
|
|
2840
|
+
"quote",
|
|
2841
|
+
"syn",
|
|
2842
|
+
"synstructure",
|
|
2843
|
+
]
|
|
2844
|
+
|
|
2845
|
+
[[package]]
|
|
2846
|
+
name = "zerotrie"
|
|
2847
|
+
version = "0.2.2"
|
|
2848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2849
|
+
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
|
|
2850
|
+
dependencies = [
|
|
2851
|
+
"displaydoc",
|
|
2852
|
+
"yoke",
|
|
2853
|
+
"zerofrom",
|
|
2854
|
+
]
|
|
2855
|
+
|
|
2856
|
+
[[package]]
|
|
2857
|
+
name = "zerovec"
|
|
2858
|
+
version = "0.11.4"
|
|
2859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2860
|
+
checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
|
|
2861
|
+
dependencies = [
|
|
2862
|
+
"yoke",
|
|
2863
|
+
"zerofrom",
|
|
2864
|
+
"zerovec-derive",
|
|
2865
|
+
]
|
|
2866
|
+
|
|
2867
|
+
[[package]]
|
|
2868
|
+
name = "zerovec-derive"
|
|
2869
|
+
version = "0.11.1"
|
|
2870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2871
|
+
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
|
2872
|
+
dependencies = [
|
|
2873
|
+
"proc-macro2",
|
|
2874
|
+
"quote",
|
|
2875
|
+
"syn",
|
|
2876
|
+
]
|