squawk-cli 2.31.0__tar.gz → 2.32.0__tar.gz

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