squawk-cli 2.43.0__tar.gz → 2.45.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 (1306) hide show
  1. squawk_cli-2.45.0/Cargo.lock +3544 -0
  2. squawk_cli-2.45.0/Cargo.toml +102 -0
  3. squawk_cli-2.45.0/PKG-INFO +15 -0
  4. squawk_cli-2.45.0/crates/squawk/Cargo.toml +48 -0
  5. squawk_cli-2.45.0/crates/squawk/README.md +356 -0
  6. squawk_cli-2.45.0/crates/squawk/src/main.rs +236 -0
  7. squawk_cli-2.45.0/crates/squawk_github/src/app.rs +304 -0
  8. squawk_cli-2.45.0/crates/squawk_ide/Cargo.toml +38 -0
  9. squawk_cli-2.45.0/crates/squawk_ide/src/binder.rs +1094 -0
  10. squawk_cli-2.45.0/crates/squawk_ide/src/builtins.rs +52 -0
  11. squawk_cli-2.45.0/crates/squawk_ide/src/classify.rs +975 -0
  12. squawk_cli-2.45.0/crates/squawk_ide/src/code_actions.rs +2405 -0
  13. squawk_cli-2.45.0/crates/squawk_ide/src/completion.rs +1453 -0
  14. squawk_cli-2.45.0/crates/squawk_ide/src/db.rs +39 -0
  15. squawk_cli-2.45.0/crates/squawk_ide/src/document_symbols.rs +1661 -0
  16. squawk_cli-2.45.0/crates/squawk_ide/src/expand_selection.rs +575 -0
  17. squawk_cli-2.45.0/crates/squawk_ide/src/find_references.rs +476 -0
  18. squawk_cli-2.45.0/crates/squawk_ide/src/folding_ranges.rs +559 -0
  19. squawk_cli-2.45.0/crates/squawk_ide/src/generated/builtins.sql +23012 -0
  20. squawk_cli-2.45.0/crates/squawk_ide/src/generated/extensions/bloom.sql +8 -0
  21. squawk_cli-2.45.0/crates/squawk_ide/src/generated/extensions/citext.sql +311 -0
  22. squawk_cli-2.45.0/crates/squawk_ide/src/generated/extensions/cube.sql +223 -0
  23. squawk_cli-2.45.0/crates/squawk_ide/src/generated/extensions/h3.sql +389 -0
  24. squawk_cli-2.45.0/crates/squawk_ide/src/generated/extensions/hll.sql +262 -0
  25. squawk_cli-2.45.0/crates/squawk_ide/src/generated/extensions/hstore.sql +309 -0
  26. squawk_cli-2.45.0/crates/squawk_ide/src/generated/extensions/isn.sql +1780 -0
  27. squawk_cli-2.45.0/crates/squawk_ide/src/generated/extensions/ltree.sql +551 -0
  28. squawk_cli-2.45.0/crates/squawk_ide/src/generated/extensions/pg_stat_statements.sql +76 -0
  29. squawk_cli-2.45.0/crates/squawk_ide/src/generated/extensions/pg_trgm.sql +161 -0
  30. squawk_cli-2.45.0/crates/squawk_ide/src/generated/extensions/pg_walinspect.sql +17 -0
  31. squawk_cli-2.45.0/crates/squawk_ide/src/generated/extensions/pgcrypto.sql +116 -0
  32. squawk_cli-2.45.0/crates/squawk_ide/src/generated/extensions/plpgsql.sql +14 -0
  33. squawk_cli-2.45.0/crates/squawk_ide/src/generated/extensions/postgis.sql +2781 -0
  34. squawk_cli-2.45.0/crates/squawk_ide/src/generated/extensions/postgres_fdw.sql +20 -0
  35. squawk_cli-2.45.0/crates/squawk_ide/src/generated/extensions/tablefunc.sql +59 -0
  36. squawk_cli-2.45.0/crates/squawk_ide/src/generated/extensions/vector.sql +624 -0
  37. squawk_cli-2.45.0/crates/squawk_ide/src/goto_definition.rs +9120 -0
  38. squawk_cli-2.45.0/crates/squawk_ide/src/hover.rs +4872 -0
  39. squawk_cli-2.45.0/crates/squawk_ide/src/inlay_hints.rs +495 -0
  40. squawk_cli-2.45.0/crates/squawk_ide/src/lib.rs +24 -0
  41. squawk_cli-2.45.0/crates/squawk_ide/src/resolve.rs +4294 -0
  42. squawk_cli-2.45.0/crates/squawk_ide/src/scope.rs +30 -0
  43. squawk_cli-2.45.0/crates/squawk_ide/src/symbols.rs +92 -0
  44. squawk_cli-2.45.0/crates/squawk_lexer/src/lib.rs +768 -0
  45. squawk_cli-2.45.0/crates/squawk_lexer/src/token.rs +159 -0
  46. squawk_cli-2.45.0/crates/squawk_linter/Cargo.toml +30 -0
  47. squawk_cli-2.45.0/crates/squawk_linter/src/analyze.rs +267 -0
  48. squawk_cli-2.45.0/crates/squawk_linter/src/ignore.rs +615 -0
  49. squawk_cli-2.45.0/crates/squawk_linter/src/ignore_index.rs +76 -0
  50. squawk_cli-2.45.0/crates/squawk_linter/src/lib.rs +503 -0
  51. squawk_cli-2.45.0/crates/squawk_linter/src/rules/adding_field_with_default.rs +324 -0
  52. squawk_cli-2.45.0/crates/squawk_linter/src/rules/adding_not_null_field.rs +393 -0
  53. squawk_cli-2.45.0/crates/squawk_linter/src/rules/ban_char_field.rs +225 -0
  54. squawk_cli-2.45.0/crates/squawk_linter/src/rules/constraint_missing_not_valid.rs +314 -0
  55. squawk_cli-2.45.0/crates/squawk_linter/src/rules/mod.rs +65 -0
  56. squawk_cli-2.45.0/crates/squawk_linter/src/rules/prefer_bigint_over_int.rs +172 -0
  57. squawk_cli-2.45.0/crates/squawk_linter/src/rules/prefer_bigint_over_smallint.rs +164 -0
  58. squawk_cli-2.45.0/crates/squawk_linter/src/rules/prefer_identity.rs +151 -0
  59. squawk_cli-2.45.0/crates/squawk_linter/src/rules/prefer_robust_stmts.rs +710 -0
  60. squawk_cli-2.45.0/crates/squawk_linter/src/rules/prefer_text_field.rs +215 -0
  61. squawk_cli-2.45.0/crates/squawk_linter/src/rules/require_enum_value_ordering.rs +82 -0
  62. squawk_cli-2.45.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test__pg11_cross_migration_validate_then_set_not_null_err.snap +11 -0
  63. squawk_cli-2.45.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__require_enum_value_ordering__test__err_add_value_if_not_exists_without_ordering.snap +13 -0
  64. squawk_cli-2.45.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__require_enum_value_ordering__test__err_add_value_without_ordering.snap +13 -0
  65. squawk_cli-2.45.0/crates/squawk_linter/src/visitors.rs +77 -0
  66. squawk_cli-2.45.0/crates/squawk_parser/Cargo.toml +30 -0
  67. squawk_cli-2.45.0/crates/squawk_parser/src/generated/syntax_kind.rs +2283 -0
  68. squawk_cli-2.45.0/crates/squawk_parser/src/generated/token_sets.rs +2266 -0
  69. squawk_cli-2.45.0/crates/squawk_parser/src/grammar.rs +15206 -0
  70. squawk_cli-2.45.0/crates/squawk_parser/src/lexed_str.rs +303 -0
  71. squawk_cli-2.45.0/crates/squawk_parser/tests/data/err/select_graph_table_fn.sql +4 -0
  72. squawk_cli-2.45.0/crates/squawk_parser/tests/data/ok/alter_property_graph.sql +38 -0
  73. squawk_cli-2.45.0/crates/squawk_parser/tests/data/ok/alter_table.sql +278 -0
  74. squawk_cli-2.45.0/crates/squawk_parser/tests/data/ok/create_foreign_table.sql +89 -0
  75. squawk_cli-2.45.0/crates/squawk_parser/tests/data/ok/create_property_graph.sql +67 -0
  76. squawk_cli-2.45.0/crates/squawk_parser/tests/data/ok/create_table.sql +400 -0
  77. squawk_cli-2.45.0/crates/squawk_parser/tests/data/ok/drop_property_graph.sql +5 -0
  78. squawk_cli-2.45.0/crates/squawk_parser/tests/data/ok/insert.sql +125 -0
  79. squawk_cli-2.45.0/crates/squawk_parser/tests/data/ok/merge.sql +231 -0
  80. squawk_cli-2.45.0/crates/squawk_parser/tests/data/ok/repack.sql +9 -0
  81. squawk_cli-2.45.0/crates/squawk_parser/tests/data/ok/schemas.sql +80 -0
  82. squawk_cli-2.45.0/crates/squawk_parser/tests/data/ok/select_casts.sql +282 -0
  83. squawk_cli-2.45.0/crates/squawk_parser/tests/data/ok/select_compound_union_select.sql +27 -0
  84. squawk_cli-2.45.0/crates/squawk_parser/tests/data/ok/select_cte.sql +145 -0
  85. squawk_cli-2.45.0/crates/squawk_parser/tests/data/ok/select_funcs.sql +366 -0
  86. squawk_cli-2.45.0/crates/squawk_parser/tests/data/ok/select_graph_table_fn.sql +153 -0
  87. squawk_cli-2.45.0/crates/squawk_parser/tests/data/ok/sql_pgq.sql +157 -0
  88. squawk_cli-2.45.0/crates/squawk_parser/tests/data/ok/update.sql +103 -0
  89. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__alter_property_graph_ok.snap +454 -0
  90. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__alter_table_ok.snap +4031 -0
  91. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__alter_type_ok.snap +707 -0
  92. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__create_foreign_table_ok.snap +757 -0
  93. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__create_property_graph_ok.snap +658 -0
  94. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__create_sequence_ok.snap +133 -0
  95. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__create_table_as_ok.snap +373 -0
  96. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__create_table_err.snap +730 -0
  97. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__create_table_ok.snap +3932 -0
  98. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__create_view_ok.snap +572 -0
  99. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__drop_property_graph_ok.snap +58 -0
  100. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__insert_ok.snap +1776 -0
  101. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__merge_ok.snap +2411 -0
  102. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__misc_ok.snap +7059 -0
  103. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_advisory_lock.snap +5 -0
  104. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_aggregates.snap +5 -0
  105. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_alter_generic.snap +5 -0
  106. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_alter_operator.snap +5 -0
  107. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_alter_table.snap +5 -0
  108. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_amutils.snap +5 -0
  109. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_arrays.snap +5 -0
  110. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_async.snap +5 -0
  111. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_bit.snap +5 -0
  112. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_bitmapops.snap +5 -0
  113. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_boolean.snap +5 -0
  114. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_box.snap +5 -0
  115. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_brin.snap +5 -0
  116. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_brin_bloom.snap +5 -0
  117. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_brin_multi.snap +5 -0
  118. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_btree_index.snap +5 -0
  119. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_case.snap +5 -0
  120. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_char.snap +5 -0
  121. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_circle.snap +5 -0
  122. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_cluster.snap +5 -0
  123. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_collate.icu.utf8.snap +5 -0
  124. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_collate.linux.utf8.snap +5 -0
  125. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_collate.snap +5 -0
  126. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_collate.utf8.snap +5 -0
  127. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_combocid.snap +5 -0
  128. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_comments.snap +5 -0
  129. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_compression.snap +5 -0
  130. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_compression_lz4.snap +5 -0
  131. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_constraints.snap +5 -0
  132. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_conversion.snap +5 -0
  133. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_copy.snap +5 -0
  134. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_copy2.snap +5 -0
  135. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_copydml.snap +5 -0
  136. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_copyencoding.snap +5 -0
  137. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_copyselect.snap +5 -0
  138. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_create_aggregate.snap +5 -0
  139. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_create_am.snap +5 -0
  140. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_create_cast.snap +5 -0
  141. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_create_function_c.snap +5 -0
  142. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_create_function_sql.snap +5 -0
  143. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_create_index.snap +5 -0
  144. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_create_index_spgist.snap +5 -0
  145. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_create_misc.snap +5 -0
  146. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_create_operator.snap +5 -0
  147. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_create_procedure.snap +5 -0
  148. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_create_property_graph.snap +5 -0
  149. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_create_role.snap +5 -0
  150. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_create_schema.snap +5 -0
  151. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_create_table.snap +5 -0
  152. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_create_table_like.snap +5 -0
  153. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_create_type.snap +5 -0
  154. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_create_view.snap +5 -0
  155. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_database.snap +5 -0
  156. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_date.snap +5 -0
  157. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_dbsize.snap +5 -0
  158. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_delete.snap +5 -0
  159. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_dependency.snap +5 -0
  160. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_domain.snap +5 -0
  161. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_drop_if_exists.snap +5 -0
  162. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_drop_operator.snap +5 -0
  163. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_eager_aggregate.snap +5 -0
  164. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_enum.snap +5 -0
  165. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_equivclass.snap +5 -0
  166. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_event_trigger.snap +5 -0
  167. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_event_trigger_login.snap +5 -0
  168. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_explain.snap +5 -0
  169. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_expressions.snap +5 -0
  170. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_fast_default.snap +5 -0
  171. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_float4.snap +5 -0
  172. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_float8.snap +5 -0
  173. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_foreign_data.snap +5 -0
  174. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_foreign_key.snap +5 -0
  175. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_functional_deps.snap +5 -0
  176. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_generated_stored.snap +5 -0
  177. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_generated_virtual.snap +5 -0
  178. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_geometry.snap +5 -0
  179. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_gin.snap +5 -0
  180. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_gist.snap +5 -0
  181. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_graph_table.snap +5 -0
  182. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_graph_table_rls.snap +5 -0
  183. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_groupingsets.snap +5 -0
  184. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_guc.snap +5 -0
  185. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_hash_func.snap +5 -0
  186. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_hash_index.snap +5 -0
  187. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_hash_part.snap +5 -0
  188. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_horology.snap +5 -0
  189. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_identity.snap +5 -0
  190. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_incremental_sort.snap +5 -0
  191. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_index_including.snap +5 -0
  192. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_index_including_gist.snap +5 -0
  193. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_indexing.snap +5 -0
  194. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_indirect_toast.snap +5 -0
  195. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_inet.snap +5 -0
  196. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_infinite_recurse.snap +5 -0
  197. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_inherit.snap +5 -0
  198. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_init_privs.snap +5 -0
  199. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_insert.snap +5 -0
  200. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_insert_conflict.snap +5 -0
  201. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_int2.snap +5 -0
  202. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_int4.snap +5 -0
  203. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_int8.snap +5 -0
  204. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_interval.snap +5 -0
  205. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_join.snap +5 -0
  206. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_join_hash.snap +5 -0
  207. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_json.snap +5 -0
  208. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_json_encoding.snap +5 -0
  209. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_jsonb.snap +5 -0
  210. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_jsonb_jsonpath.snap +5 -0
  211. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_jsonpath.snap +5 -0
  212. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_jsonpath_encoding.snap +5 -0
  213. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_largeobject.snap +5 -0
  214. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_limit.snap +5 -0
  215. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_line.snap +5 -0
  216. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_lock.snap +5 -0
  217. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_lseg.snap +5 -0
  218. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_macaddr.snap +5 -0
  219. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_macaddr8.snap +5 -0
  220. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_maintain_every.snap +5 -0
  221. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_matview.snap +5 -0
  222. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_md5.snap +5 -0
  223. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_memoize.snap +5 -0
  224. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_merge.snap +5 -0
  225. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_misc.snap +5 -0
  226. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_misc_functions.snap +5 -0
  227. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_misc_sanity.snap +5 -0
  228. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_money.snap +5 -0
  229. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_multirangetypes.snap +5 -0
  230. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_mvcc.snap +5 -0
  231. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_name.snap +5 -0
  232. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_namespace.snap +5 -0
  233. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_nls.snap +5 -0
  234. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_numa.snap +5 -0
  235. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_numeric.snap +5 -0
  236. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_numeric_big.snap +5 -0
  237. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_numerology.snap +5 -0
  238. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_object_address.snap +5 -0
  239. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_oid.snap +5 -0
  240. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_oidjoins.snap +5 -0
  241. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_opr_sanity.snap +5 -0
  242. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_partition_aggregate.snap +5 -0
  243. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_partition_info.snap +5 -0
  244. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_partition_join.snap +5 -0
  245. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_partition_merge.snap +5 -0
  246. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_partition_prune.snap +5 -0
  247. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_partition_split.snap +5 -0
  248. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_password.snap +5 -0
  249. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_path.snap +5 -0
  250. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_pg_dependencies.snap +5 -0
  251. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_pg_lsn.snap +5 -0
  252. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_pg_ndistinct.snap +5 -0
  253. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_plancache.snap +5 -0
  254. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_planner_est.snap +5 -0
  255. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_plpgsql.snap +5 -0
  256. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_point.snap +5 -0
  257. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_polygon.snap +5 -0
  258. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_polymorphism.snap +5 -0
  259. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_portals.snap +5 -0
  260. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_portals_p2.snap +5 -0
  261. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_predicate.snap +5 -0
  262. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_prepare.snap +5 -0
  263. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_prepared_xacts.snap +5 -0
  264. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_privileges.snap +5 -0
  265. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_publication.snap +5 -0
  266. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_random.snap +5 -0
  267. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_rangefuncs.snap +5 -0
  268. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_rangetypes.snap +5 -0
  269. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_regex.snap +5 -0
  270. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_regproc.snap +5 -0
  271. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_reindex_catalog.snap +5 -0
  272. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_reloptions.snap +5 -0
  273. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_replica_identity.snap +5 -0
  274. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_returning.snap +5 -0
  275. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_roleattributes.snap +5 -0
  276. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_rowsecurity.snap +5 -0
  277. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_rowtypes.snap +5 -0
  278. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_rules.snap +5 -0
  279. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_sanity_check.snap +5 -0
  280. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_security_label.snap +5 -0
  281. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_select.snap +5 -0
  282. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_select_distinct.snap +5 -0
  283. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_select_distinct_on.snap +5 -0
  284. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_select_having.snap +5 -0
  285. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_select_implicit.snap +5 -0
  286. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_select_into.snap +5 -0
  287. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_select_parallel.snap +5 -0
  288. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_select_views.snap +5 -0
  289. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_sequence.snap +5 -0
  290. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_spgist.snap +5 -0
  291. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_sqljson.snap +5 -0
  292. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_sqljson_jsontable.snap +5 -0
  293. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_sqljson_queryfuncs.snap +5 -0
  294. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_stats.snap +5 -0
  295. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_stats_ext.snap +5 -0
  296. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_stats_import.snap +5 -0
  297. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_stats_rewrite.snap +5 -0
  298. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_strings.snap +5 -0
  299. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_subscription.snap +5 -0
  300. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_subselect.snap +5 -0
  301. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_sysviews.snap +5 -0
  302. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_tablesample.snap +5 -0
  303. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_tablespace.snap +5 -0
  304. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_temp.snap +5 -0
  305. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_test_setup.snap +5 -0
  306. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_text.snap +5 -0
  307. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_tid.snap +5 -0
  308. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_tidrangescan.snap +5 -0
  309. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_tidscan.snap +5 -0
  310. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_time.snap +5 -0
  311. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_timestamp.snap +5 -0
  312. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_timestamptz.snap +5 -0
  313. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_timetz.snap +5 -0
  314. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_transactions.snap +5 -0
  315. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_triggers.snap +5 -0
  316. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_truncate.snap +5 -0
  317. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_tsdicts.snap +5 -0
  318. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_tsearch.snap +5 -0
  319. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_tsrf.snap +5 -0
  320. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_tstypes.snap +5 -0
  321. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_tuplesort.snap +5 -0
  322. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_txid.snap +5 -0
  323. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_type_sanity.snap +5 -0
  324. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_typed_table.snap +5 -0
  325. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_unicode.snap +5 -0
  326. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_union.snap +5 -0
  327. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_updatable_views.snap +5 -0
  328. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_update.snap +5 -0
  329. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_uuid.snap +5 -0
  330. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_vacuum.snap +5 -0
  331. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_vacuum_parallel.snap +5 -0
  332. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_varchar.snap +5 -0
  333. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_window.snap +5 -0
  334. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_with.snap +5 -0
  335. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_without_overlaps.snap +5 -0
  336. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_write_parallel.snap +5 -0
  337. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_xid.snap +5 -0
  338. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_xml.snap +5 -0
  339. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__regression_xmlmap.snap +5 -0
  340. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__repack_ok.snap +78 -0
  341. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__schemas_ok.snap +737 -0
  342. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__select_casts_ok.snap +4091 -0
  343. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__select_compound_union_select_ok.snap +590 -0
  344. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__select_cte_ok.snap +1566 -0
  345. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__select_funcs_ok.snap +5022 -0
  346. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__select_graph_table_fn_err.snap +57 -0
  347. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__select_graph_table_fn_ok.snap +2123 -0
  348. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__sql_pgq_ok.snap +2010 -0
  349. squawk_cli-2.45.0/crates/squawk_parser/tests/snapshots/tests__update_ok.snap +1611 -0
  350. squawk_cli-2.45.0/crates/squawk_parser/tests/tests.rs +186 -0
  351. squawk_cli-2.45.0/crates/squawk_server/Cargo.toml +40 -0
  352. squawk_cli-2.45.0/crates/squawk_server/src/dispatch.rs +266 -0
  353. squawk_cli-2.45.0/crates/squawk_server/src/global_state.rs +260 -0
  354. squawk_cli-2.45.0/crates/squawk_server/src/handlers/code_action.rs +116 -0
  355. squawk_cli-2.45.0/crates/squawk_server/src/handlers/completion.rs +30 -0
  356. squawk_cli-2.45.0/crates/squawk_server/src/handlers/diagnostic.rs +29 -0
  357. squawk_cli-2.45.0/crates/squawk_server/src/handlers/document_symbol.rs +82 -0
  358. squawk_cli-2.45.0/crates/squawk_server/src/handlers/folding_range.rs +25 -0
  359. squawk_cli-2.45.0/crates/squawk_server/src/handlers/goto_definition.rs +33 -0
  360. squawk_cli-2.45.0/crates/squawk_server/src/handlers/hover.rs +27 -0
  361. squawk_cli-2.45.0/crates/squawk_server/src/handlers/inlay_hints.rs +73 -0
  362. squawk_cli-2.45.0/crates/squawk_server/src/handlers/notifications.rs +72 -0
  363. squawk_cli-2.45.0/crates/squawk_server/src/handlers/references.rs +31 -0
  364. squawk_cli-2.45.0/crates/squawk_server/src/handlers/selection_range.rs +56 -0
  365. squawk_cli-2.45.0/crates/squawk_server/src/handlers/shutdown.rs +9 -0
  366. squawk_cli-2.45.0/crates/squawk_server/src/handlers/syntax_tree.rs +33 -0
  367. squawk_cli-2.45.0/crates/squawk_server/src/handlers/tokens.rs +47 -0
  368. squawk_cli-2.45.0/crates/squawk_server/src/handlers.rs +31 -0
  369. squawk_cli-2.45.0/crates/squawk_server/src/ignore.rs +208 -0
  370. squawk_cli-2.45.0/crates/squawk_server/src/lib.rs +11 -0
  371. squawk_cli-2.45.0/crates/squawk_server/src/lint.rs +115 -0
  372. squawk_cli-2.45.0/crates/squawk_server/src/lsp_utils.rs +378 -0
  373. squawk_cli-2.45.0/crates/squawk_server/src/panic.rs +248 -0
  374. squawk_cli-2.45.0/crates/squawk_server/src/server.rs +81 -0
  375. squawk_cli-2.45.0/crates/squawk_syntax/src/ast/generated/nodes.rs +36664 -0
  376. squawk_cli-2.45.0/crates/squawk_syntax/src/ast/generated/tokens.rs +104 -0
  377. squawk_cli-2.45.0/crates/squawk_syntax/src/ast/token_ext.rs +44 -0
  378. squawk_cli-2.45.0/crates/squawk_syntax/src/ast/traits.rs +41 -0
  379. squawk_cli-2.45.0/crates/squawk_syntax/src/ast.rs +112 -0
  380. squawk_cli-2.45.0/crates/squawk_syntax/src/postgresql.ungram +3561 -0
  381. squawk_cli-2.45.0/crates/squawk_thread/Cargo.toml +26 -0
  382. squawk_cli-2.45.0/crates/squawk_thread/LICENSE-APACHE +178 -0
  383. squawk_cli-2.45.0/crates/squawk_thread/LICENSE-MIT +25 -0
  384. squawk_cli-2.45.0/crates/squawk_thread/README.md +5 -0
  385. squawk_cli-2.45.0/crates/squawk_thread/src/intent.rs +289 -0
  386. squawk_cli-2.45.0/crates/squawk_thread/src/lib.rs +122 -0
  387. squawk_cli-2.45.0/crates/squawk_thread/src/pool.rs +189 -0
  388. squawk_cli-2.45.0/crates/squawk_thread/src/taskpool.rs +53 -0
  389. squawk_cli-2.43.0/Cargo.lock +0 -3705
  390. squawk_cli-2.43.0/Cargo.toml +0 -94
  391. squawk_cli-2.43.0/PKG-INFO +0 -15
  392. squawk_cli-2.43.0/crates/squawk/Cargo.toml +0 -47
  393. squawk_cli-2.43.0/crates/squawk/README.md +0 -356
  394. squawk_cli-2.43.0/crates/squawk/src/main.rs +0 -211
  395. squawk_cli-2.43.0/crates/squawk_github/src/app.rs +0 -304
  396. squawk_cli-2.43.0/crates/squawk_ide/Cargo.toml +0 -34
  397. squawk_cli-2.43.0/crates/squawk_ide/src/binder.rs +0 -1086
  398. squawk_cli-2.43.0/crates/squawk_ide/src/builtins.rs +0 -14
  399. squawk_cli-2.43.0/crates/squawk_ide/src/builtins.sql +0 -23021
  400. squawk_cli-2.43.0/crates/squawk_ide/src/classify.rs +0 -960
  401. squawk_cli-2.43.0/crates/squawk_ide/src/code_actions.rs +0 -2399
  402. squawk_cli-2.43.0/crates/squawk_ide/src/completion.rs +0 -1443
  403. squawk_cli-2.43.0/crates/squawk_ide/src/document_symbols.rs +0 -1654
  404. squawk_cli-2.43.0/crates/squawk_ide/src/expand_selection.rs +0 -572
  405. squawk_cli-2.43.0/crates/squawk_ide/src/find_references.rs +0 -473
  406. squawk_cli-2.43.0/crates/squawk_ide/src/goto_definition.rs +0 -8970
  407. squawk_cli-2.43.0/crates/squawk_ide/src/hover.rs +0 -4801
  408. squawk_cli-2.43.0/crates/squawk_ide/src/inlay_hints.rs +0 -485
  409. squawk_cli-2.43.0/crates/squawk_ide/src/lib.rs +0 -22
  410. squawk_cli-2.43.0/crates/squawk_ide/src/resolve.rs +0 -4251
  411. squawk_cli-2.43.0/crates/squawk_ide/src/scope.rs +0 -30
  412. squawk_cli-2.43.0/crates/squawk_ide/src/symbols.rs +0 -92
  413. squawk_cli-2.43.0/crates/squawk_lexer/src/lib.rs +0 -766
  414. squawk_cli-2.43.0/crates/squawk_lexer/src/token.rs +0 -155
  415. squawk_cli-2.43.0/crates/squawk_linter/Cargo.toml +0 -31
  416. squawk_cli-2.43.0/crates/squawk_linter/src/analyze.rs +0 -263
  417. squawk_cli-2.43.0/crates/squawk_linter/src/ignore.rs +0 -615
  418. squawk_cli-2.43.0/crates/squawk_linter/src/ignore_index.rs +0 -77
  419. squawk_cli-2.43.0/crates/squawk_linter/src/lib.rs +0 -496
  420. squawk_cli-2.43.0/crates/squawk_linter/src/rules/adding_field_with_default.rs +0 -322
  421. squawk_cli-2.43.0/crates/squawk_linter/src/rules/adding_not_null_field.rs +0 -321
  422. squawk_cli-2.43.0/crates/squawk_linter/src/rules/ban_char_field.rs +0 -222
  423. squawk_cli-2.43.0/crates/squawk_linter/src/rules/constraint_missing_not_valid.rs +0 -314
  424. squawk_cli-2.43.0/crates/squawk_linter/src/rules/mod.rs +0 -63
  425. squawk_cli-2.43.0/crates/squawk_linter/src/rules/prefer_bigint_over_int.rs +0 -169
  426. squawk_cli-2.43.0/crates/squawk_linter/src/rules/prefer_bigint_over_smallint.rs +0 -161
  427. squawk_cli-2.43.0/crates/squawk_linter/src/rules/prefer_identity.rs +0 -148
  428. squawk_cli-2.43.0/crates/squawk_linter/src/rules/prefer_robust_stmts.rs +0 -709
  429. squawk_cli-2.43.0/crates/squawk_linter/src/rules/prefer_text_field.rs +0 -223
  430. squawk_cli-2.43.0/crates/squawk_linter/src/visitors.rs +0 -77
  431. squawk_cli-2.43.0/crates/squawk_parser/Cargo.toml +0 -31
  432. squawk_cli-2.43.0/crates/squawk_parser/src/generated/syntax_kind.rs +0 -2206
  433. squawk_cli-2.43.0/crates/squawk_parser/src/generated/token_sets.rs +0 -2217
  434. squawk_cli-2.43.0/crates/squawk_parser/src/grammar.rs +0 -14594
  435. squawk_cli-2.43.0/crates/squawk_parser/src/lexed_str.rs +0 -301
  436. squawk_cli-2.43.0/crates/squawk_parser/tests/data/ok/alter_table.sql +0 -271
  437. squawk_cli-2.43.0/crates/squawk_parser/tests/data/ok/alter_table_pg17.sql +0 -6
  438. squawk_cli-2.43.0/crates/squawk_parser/tests/data/ok/create_foreign_table.sql +0 -73
  439. squawk_cli-2.43.0/crates/squawk_parser/tests/data/ok/create_foreign_table_pg18.sql +0 -15
  440. squawk_cli-2.43.0/crates/squawk_parser/tests/data/ok/create_table.sql +0 -357
  441. squawk_cli-2.43.0/crates/squawk_parser/tests/data/ok/create_table_pg17.sql +0 -42
  442. squawk_cli-2.43.0/crates/squawk_parser/tests/data/ok/insert.sql +0 -121
  443. squawk_cli-2.43.0/crates/squawk_parser/tests/data/ok/insert_pg18.sql +0 -3
  444. squawk_cli-2.43.0/crates/squawk_parser/tests/data/ok/merge.sql +0 -69
  445. squawk_cli-2.43.0/crates/squawk_parser/tests/data/ok/merge_pg17.sql +0 -161
  446. squawk_cli-2.43.0/crates/squawk_parser/tests/data/ok/schemas.sql +0 -78
  447. squawk_cli-2.43.0/crates/squawk_parser/tests/data/ok/schemas_pg17.sql +0 -1
  448. squawk_cli-2.43.0/crates/squawk_parser/tests/data/ok/select_casts.sql +0 -280
  449. squawk_cli-2.43.0/crates/squawk_parser/tests/data/ok/select_casts_pg17.sql +0 -1
  450. squawk_cli-2.43.0/crates/squawk_parser/tests/data/ok/select_compound_union_select.sql +0 -21
  451. squawk_cli-2.43.0/crates/squawk_parser/tests/data/ok/select_cte.sql +0 -139
  452. squawk_cli-2.43.0/crates/squawk_parser/tests/data/ok/select_cte_pg19.sql +0 -5
  453. squawk_cli-2.43.0/crates/squawk_parser/tests/data/ok/select_funcs.sql +0 -255
  454. squawk_cli-2.43.0/crates/squawk_parser/tests/data/ok/select_funcs_pg17.sql +0 -110
  455. squawk_cli-2.43.0/crates/squawk_parser/tests/data/ok/update.sql +0 -91
  456. squawk_cli-2.43.0/crates/squawk_parser/tests/data/ok/update_pg18.sql +0 -11
  457. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__alter_table_ok.snap +0 -3928
  458. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__alter_table_pg17_ok.snap +0 -109
  459. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__alter_type_ok.snap +0 -686
  460. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__create_foreign_table_ok.snap +0 -664
  461. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__create_foreign_table_pg18_ok.snap +0 -98
  462. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__create_sequence_ok.snap +0 -131
  463. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__create_table_as_ok.snap +0 -367
  464. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__create_table_err.snap +0 -729
  465. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__create_table_ok.snap +0 -3443
  466. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__create_table_pg17_ok.snap +0 -490
  467. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__create_view_ok.snap +0 -570
  468. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__insert_ok.snap +0 -1704
  469. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__insert_pg18_ok.snap +0 -77
  470. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__merge_ok.snap +0 -668
  471. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__merge_pg17_ok.snap +0 -1749
  472. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__misc_ok.snap +0 -7058
  473. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_advisory_lock.snap +0 -5
  474. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_aggregates.snap +0 -5
  475. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_alter_generic.snap +0 -5
  476. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_alter_operator.snap +0 -5
  477. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_alter_table.snap +0 -5
  478. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_amutils.snap +0 -5
  479. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_arrays.snap +0 -5
  480. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_async.snap +0 -5
  481. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_bit.snap +0 -5
  482. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_bitmapops.snap +0 -5
  483. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_boolean.snap +0 -5
  484. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_box.snap +0 -5
  485. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_brin.snap +0 -5
  486. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_brin_bloom.snap +0 -5
  487. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_brin_multi.snap +0 -5
  488. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_btree_index.snap +0 -5
  489. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_case.snap +0 -5
  490. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_char.snap +0 -5
  491. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_circle.snap +0 -5
  492. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_cluster.snap +0 -5
  493. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_collate.icu.utf8.snap +0 -5
  494. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_collate.linux.utf8.snap +0 -5
  495. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_collate.snap +0 -5
  496. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_collate.utf8.snap +0 -5
  497. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_combocid.snap +0 -5
  498. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_comments.snap +0 -5
  499. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_compression.snap +0 -5
  500. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_compression_lz4.snap +0 -5
  501. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_constraints.snap +0 -5
  502. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_conversion.snap +0 -5
  503. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_copy.snap +0 -5
  504. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_copy2.snap +0 -5
  505. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_copydml.snap +0 -5
  506. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_copyencoding.snap +0 -5
  507. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_copyselect.snap +0 -5
  508. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_create_aggregate.snap +0 -5
  509. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_create_am.snap +0 -5
  510. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_create_cast.snap +0 -5
  511. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_create_function_c.snap +0 -5
  512. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_create_function_sql.snap +0 -5
  513. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_create_index.snap +0 -5
  514. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_create_index_spgist.snap +0 -5
  515. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_create_misc.snap +0 -5
  516. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_create_operator.snap +0 -5
  517. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_create_procedure.snap +0 -5
  518. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_create_role.snap +0 -5
  519. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_create_schema.snap +0 -5
  520. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_create_table.snap +0 -5
  521. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_create_table_like.snap +0 -5
  522. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_create_type.snap +0 -5
  523. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_create_view.snap +0 -5
  524. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_database.snap +0 -5
  525. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_date.snap +0 -5
  526. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_dbsize.snap +0 -5
  527. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_delete.snap +0 -5
  528. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_dependency.snap +0 -5
  529. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_domain.snap +0 -5
  530. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_drop_if_exists.snap +0 -5
  531. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_drop_operator.snap +0 -5
  532. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_eager_aggregate.snap +0 -5
  533. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_enum.snap +0 -5
  534. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_equivclass.snap +0 -5
  535. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_event_trigger.snap +0 -5
  536. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_event_trigger_login.snap +0 -5
  537. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_explain.snap +0 -5
  538. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_expressions.snap +0 -5
  539. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_fast_default.snap +0 -5
  540. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_float4.snap +0 -5
  541. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_float8.snap +0 -5
  542. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_foreign_data.snap +0 -5
  543. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_foreign_key.snap +0 -5
  544. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_functional_deps.snap +0 -5
  545. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_generated_stored.snap +0 -5
  546. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_generated_virtual.snap +0 -5
  547. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_geometry.snap +0 -5
  548. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_gin.snap +0 -5
  549. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_gist.snap +0 -5
  550. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_groupingsets.snap +0 -5
  551. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_guc.snap +0 -5
  552. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_hash_func.snap +0 -5
  553. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_hash_index.snap +0 -5
  554. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_hash_part.snap +0 -5
  555. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_horology.snap +0 -5
  556. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_identity.snap +0 -5
  557. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_incremental_sort.snap +0 -5
  558. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_index_including.snap +0 -5
  559. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_index_including_gist.snap +0 -5
  560. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_indexing.snap +0 -5
  561. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_indirect_toast.snap +0 -5
  562. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_inet.snap +0 -5
  563. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_infinite_recurse.snap +0 -5
  564. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_inherit.snap +0 -5
  565. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_init_privs.snap +0 -5
  566. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_insert.snap +0 -5
  567. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_insert_conflict.snap +0 -5
  568. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_int2.snap +0 -5
  569. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_int4.snap +0 -5
  570. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_int8.snap +0 -5
  571. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_interval.snap +0 -5
  572. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_join.snap +0 -5
  573. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_join_hash.snap +0 -5
  574. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_json.snap +0 -5
  575. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_json_encoding.snap +0 -5
  576. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_jsonb.snap +0 -5
  577. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_jsonb_jsonpath.snap +0 -5
  578. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_jsonpath.snap +0 -5
  579. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_jsonpath_encoding.snap +0 -5
  580. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_largeobject.snap +0 -5
  581. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_limit.snap +0 -5
  582. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_line.snap +0 -5
  583. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_lock.snap +0 -5
  584. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_lseg.snap +0 -5
  585. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_macaddr.snap +0 -5
  586. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_macaddr8.snap +0 -5
  587. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_maintain_every.snap +0 -5
  588. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_matview.snap +0 -5
  589. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_md5.snap +0 -5
  590. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_memoize.snap +0 -5
  591. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_merge.snap +0 -5
  592. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_misc.snap +0 -5
  593. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_misc_functions.snap +0 -5
  594. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_misc_sanity.snap +0 -5
  595. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_money.snap +0 -5
  596. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_multirangetypes.snap +0 -5
  597. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_mvcc.snap +0 -5
  598. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_name.snap +0 -5
  599. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_namespace.snap +0 -5
  600. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_nls.snap +0 -5
  601. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_numa.snap +0 -5
  602. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_numeric.snap +0 -5
  603. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_numeric_big.snap +0 -5
  604. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_numerology.snap +0 -5
  605. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_object_address.snap +0 -5
  606. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_oid.snap +0 -5
  607. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_oidjoins.snap +0 -5
  608. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_opr_sanity.snap +0 -5
  609. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_partition_aggregate.snap +0 -5
  610. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_partition_info.snap +0 -5
  611. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_partition_join.snap +0 -5
  612. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_partition_merge.snap +0 -5
  613. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_partition_prune.snap +0 -5
  614. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_partition_split.snap +0 -5
  615. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_password.snap +0 -5
  616. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_path.snap +0 -5
  617. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_pg_dependencies.snap +0 -5
  618. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_pg_lsn.snap +0 -5
  619. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_pg_ndistinct.snap +0 -5
  620. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_plancache.snap +0 -5
  621. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_plpgsql.snap +0 -5
  622. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_point.snap +0 -5
  623. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_polygon.snap +0 -5
  624. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_polymorphism.snap +0 -5
  625. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_portals.snap +0 -5
  626. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_portals_p2.snap +0 -5
  627. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_predicate.snap +0 -5
  628. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_prepare.snap +0 -5
  629. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_prepared_xacts.snap +0 -5
  630. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_privileges.snap +0 -5
  631. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_publication.snap +0 -5
  632. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_random.snap +0 -5
  633. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_rangefuncs.snap +0 -5
  634. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_rangetypes.snap +0 -5
  635. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_regex.snap +0 -5
  636. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_regproc.snap +0 -5
  637. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_reindex_catalog.snap +0 -5
  638. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_reloptions.snap +0 -5
  639. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_replica_identity.snap +0 -5
  640. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_returning.snap +0 -5
  641. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_roleattributes.snap +0 -5
  642. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_rowsecurity.snap +0 -5
  643. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_rowtypes.snap +0 -5
  644. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_rules.snap +0 -5
  645. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_sanity_check.snap +0 -5
  646. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_security_label.snap +0 -5
  647. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_select.snap +0 -5
  648. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_select_distinct.snap +0 -5
  649. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_select_distinct_on.snap +0 -5
  650. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_select_having.snap +0 -5
  651. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_select_implicit.snap +0 -5
  652. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_select_into.snap +0 -5
  653. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_select_parallel.snap +0 -5
  654. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_select_views.snap +0 -5
  655. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_sequence.snap +0 -5
  656. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_spgist.snap +0 -5
  657. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_sqljson.snap +0 -5
  658. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_sqljson_jsontable.snap +0 -5
  659. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_sqljson_queryfuncs.snap +0 -5
  660. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_stats.snap +0 -5
  661. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_stats_ext.snap +0 -5
  662. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_stats_import.snap +0 -5
  663. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_stats_rewrite.snap +0 -5
  664. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_strings.snap +0 -5
  665. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_subscription.snap +0 -5
  666. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_subselect.snap +0 -5
  667. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_sysviews.snap +0 -5
  668. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_tablesample.snap +0 -5
  669. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_tablespace.snap +0 -5
  670. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_temp.snap +0 -5
  671. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_test_setup.snap +0 -5
  672. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_text.snap +0 -5
  673. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_tid.snap +0 -5
  674. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_tidrangescan.snap +0 -5
  675. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_tidscan.snap +0 -5
  676. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_time.snap +0 -5
  677. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_timestamp.snap +0 -5
  678. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_timestamptz.snap +0 -5
  679. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_timetz.snap +0 -5
  680. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_transactions.snap +0 -5
  681. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_triggers.snap +0 -5
  682. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_truncate.snap +0 -5
  683. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_tsdicts.snap +0 -5
  684. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_tsearch.snap +0 -5
  685. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_tsrf.snap +0 -5
  686. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_tstypes.snap +0 -5
  687. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_tuplesort.snap +0 -5
  688. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_txid.snap +0 -5
  689. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_type_sanity.snap +0 -5
  690. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_typed_table.snap +0 -5
  691. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_unicode.snap +0 -5
  692. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_union.snap +0 -5
  693. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_updatable_views.snap +0 -5
  694. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_update.snap +0 -5
  695. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_uuid.snap +0 -5
  696. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_vacuum.snap +0 -5
  697. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_vacuum_parallel.snap +0 -5
  698. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_varchar.snap +0 -5
  699. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_window.snap +0 -5
  700. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_with.snap +0 -5
  701. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_without_overlaps.snap +0 -5
  702. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_write_parallel.snap +0 -5
  703. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_xid.snap +0 -5
  704. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_xml.snap +0 -5
  705. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__regression_xmlmap.snap +0 -5
  706. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__schemas_ok.snap +0 -728
  707. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__schemas_pg17_ok.snap +0 -14
  708. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__select_casts_ok.snap +0 -4057
  709. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__select_casts_pg17_ok.snap +0 -39
  710. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__select_compound_union_select_ok.snap +0 -442
  711. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__select_cte_ok.snap +0 -1513
  712. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__select_cte_pg19_ok.snap +0 -58
  713. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__select_funcs_ok.snap +0 -3826
  714. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__select_funcs_pg17_ok.snap +0 -1202
  715. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__update_ok.snap +0 -1420
  716. squawk_cli-2.43.0/crates/squawk_parser/tests/snapshots/tests__update_pg18_ok.snap +0 -196
  717. squawk_cli-2.43.0/crates/squawk_parser/tests/tests.rs +0 -197
  718. squawk_cli-2.43.0/crates/squawk_server/Cargo.toml +0 -36
  719. squawk_cli-2.43.0/crates/squawk_server/src/db.rs +0 -29
  720. squawk_cli-2.43.0/crates/squawk_server/src/ignore.rs +0 -201
  721. squawk_cli-2.43.0/crates/squawk_server/src/lib.rs +0 -954
  722. squawk_cli-2.43.0/crates/squawk_server/src/lint.rs +0 -113
  723. squawk_cli-2.43.0/crates/squawk_server/src/lsp_utils.rs +0 -338
  724. squawk_cli-2.43.0/crates/squawk_syntax/src/ast/generated/nodes.rs +0 -33979
  725. squawk_cli-2.43.0/crates/squawk_syntax/src/ast/generated/tokens.rs +0 -79
  726. squawk_cli-2.43.0/crates/squawk_syntax/src/ast/traits.rs +0 -48
  727. squawk_cli-2.43.0/crates/squawk_syntax/src/ast.rs +0 -111
  728. squawk_cli-2.43.0/crates/squawk_syntax/src/postgresql.ungram +0 -3320
  729. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/cmd.rs +0 -0
  730. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/config.rs +0 -0
  731. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/debug.rs +0 -0
  732. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/file.rs +0 -0
  733. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/file_finding.rs +0 -0
  734. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/github.rs +0 -0
  735. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/reporter.rs +0 -0
  736. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/snapshots/example.svg +0 -0
  737. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/snapshots/squawk__config__test_config__load_assume_in_transaction.snap +0 -0
  738. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/snapshots/squawk__config__test_config__load_cfg_full.snap +0 -0
  739. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/snapshots/squawk__config__test_config__load_excluded_paths.snap +0 -0
  740. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/snapshots/squawk__config__test_config__load_excluded_rules.snap +0 -0
  741. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/snapshots/squawk__config__test_config__load_excluded_rules_with_alias.snap +0 -0
  742. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/snapshots/squawk__config__test_config__load_fail_on_violations.snap +0 -0
  743. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/snapshots/squawk__config__test_config__load_pg_version.snap +0 -0
  744. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/snapshots/squawk__debug__test__dump_ast_basic_output.snap +0 -0
  745. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/snapshots/squawk__github__test_github_comment__generating_comment_multiple_files.snap +0 -0
  746. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/snapshots/squawk__github__test_github_comment__generating_comment_no_violations.snap +0 -0
  747. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/snapshots/squawk__github__test_github_comment__generating_no_violations_no_files.snap +0 -0
  748. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/snapshots/squawk__reporter__test_check_files__check_files_invalid_syntax.snap +0 -0
  749. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/snapshots/squawk__reporter__test_reporter__display_no_violations_tty.snap +0 -0
  750. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/snapshots/squawk__reporter__test_reporter__display_violations_tty.snap +0 -0
  751. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/snapshots/squawk__reporter__test_reporter__display_violations_tty_and_github_annotations.snap +0 -0
  752. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/src/snapshots/squawk__reporter__test_reporter__span_offsets.snap +0 -0
  753. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk/tests/example_output.rs +0 -0
  754. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_github/Cargo.toml +0 -0
  755. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_github/README.md +0 -0
  756. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_github/src/actions.rs +0 -0
  757. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_github/src/lib.rs +0 -0
  758. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_ide/src/column_name.rs +0 -0
  759. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_ide/src/generated/keywords.rs +0 -0
  760. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_ide/src/generated/mod.rs +0 -0
  761. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_ide/src/infer.rs +0 -0
  762. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_ide/src/offsets.rs +0 -0
  763. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_ide/src/quote.rs +0 -0
  764. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_ide/src/test_utils.rs +0 -0
  765. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_ide/src/tokens.rs +0 -0
  766. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/Cargo.toml +0 -0
  767. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/README.md +0 -0
  768. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/LICENSE-MIT +0 -0
  769. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/cursor.rs +0 -0
  770. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__bitstring.snap +0 -0
  771. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__block_comment.snap +0 -0
  772. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__block_comment_unterminated.snap +0 -0
  773. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__dollar_quote_mismatch_tags_complex.snap +0 -0
  774. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__dollar_quote_mismatch_tags_simple.snap +0 -0
  775. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__dollar_quoting.snap +0 -0
  776. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__dollar_strings_part2.snap +0 -0
  777. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__lex_statement.snap +0 -0
  778. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__line_comment.snap +0 -0
  779. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__line_comment_whitespace.snap +0 -0
  780. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__numeric.snap +0 -0
  781. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__numeric_non_decimal.snap +0 -0
  782. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__numeric_with_seperators.snap +0 -0
  783. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__params.snap +0 -0
  784. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__quoted_ident.snap +0 -0
  785. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__quoted_ident_with_escape_quote.snap +0 -0
  786. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__select_with_period.snap +0 -0
  787. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__string.snap +0 -0
  788. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__string_unicode_escape.snap +0 -0
  789. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__string_with_escapes.snap +0 -0
  790. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/README.md +0 -0
  791. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/adding_foreign_key_constraint.rs +0 -0
  792. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/adding_primary_key_constraint.rs +0 -0
  793. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/adding_required_field.rs +0 -0
  794. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/ban_alter_domain_with_add_constraint.rs +0 -0
  795. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/ban_concurrent_index_creation_in_transaction.rs +0 -0
  796. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/ban_create_domain_with_constraint.rs +0 -0
  797. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/ban_drop_column.rs +0 -0
  798. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/ban_drop_database.rs +0 -0
  799. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/ban_drop_not_null.rs +0 -0
  800. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/ban_drop_table.rs +0 -0
  801. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/ban_truncate_cascade.rs +0 -0
  802. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/ban_uncommitted_transaction.rs +0 -0
  803. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/changing_column_type.rs +0 -0
  804. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/disallow_unique_constraint.rs +0 -0
  805. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/non_volatile_built_in_functions.txt +0 -0
  806. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/prefer_timestamptz.rs +0 -0
  807. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/renaming_column.rs +0 -0
  808. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/renaming_table.rs +0 -0
  809. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/require_concurrent_index_creation.rs +0 -0
  810. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/require_concurrent_index_deletion.rs +0 -0
  811. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/require_timeout_settings.rs +0 -0
  812. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__arbitrary_func_err.snap +0 -0
  813. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_random_with_args_err.snap +0 -0
  814. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_uuid_error.snap +0 -0
  815. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_uuid_error_multi_stmt.snap +0 -0
  816. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_volatile_func_err.snap +0 -0
  817. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__docs_example_error_on_pg_11.snap +0 -0
  818. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__generated_stored_err.snap +0 -0
  819. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_foreign_key_constraint__test__add_column_references_lock.snap +0 -0
  820. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_foreign_key_constraint__test__add_foreign_key_constraint_lock.snap +0 -0
  821. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test__pg12_with_check_but_not_validated_err.snap +0 -0
  822. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test__pg12_with_different_column_validated_err.snap +0 -0
  823. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test__pg12_without_validated_check_err.snap +0 -0
  824. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test__regression_gh_issue_519.snap +0 -0
  825. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test__regression_gh_issue_628_pg11_with_validated_check_err.snap +0 -0
  826. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test__set_not_null.snap +0 -0
  827. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_primary_key_constraint__test__plain_primary_key.snap +0 -0
  828. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_primary_key_constraint__test__serial_primary_key.snap +0 -0
  829. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_required_field__test__not_null_without_default.snap +0 -0
  830. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_alter_domain_with_add_constraint__test__err.snap +0 -0
  831. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__all_the_types.snap +0 -0
  832. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__alter_table_err.snap +0 -0
  833. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__array_char_type_err.snap +0 -0
  834. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__case_insensitive.snap +0 -0
  835. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__creating_table_with_char_errors.snap +0 -0
  836. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_concurrent_index_creation_in_transaction__test__assuming_in_transaction_err.snap +0 -0
  837. {squawk_cli-2.43.0 → squawk_cli-2.45.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
  838. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_create_domain_with_constraint__test__err.snap +0 -0
  839. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_create_domain_with_constraint__test__err_with_multiple_constraints.snap +0 -0
  840. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_drop_column__test__err.snap +0 -0
  841. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_drop_database__test__ban_drop_database.snap +0 -0
  842. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_drop_not_null__test__err.snap +0 -0
  843. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_drop_table__test__err.snap +0 -0
  844. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_truncate_cascade__test__err.snap +0 -0
  845. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__changing_column_type__test__another_err.snap +0 -0
  846. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__changing_column_type__test__err.snap +0 -0
  847. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test__adding_check_constraint_err.snap +0 -0
  848. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test__adding_fk_err.snap +0 -0
  849. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test__not_valid_validate_assume_transaction_err.snap +0 -0
  850. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test__not_valid_validate_transaction_err.snap +0 -0
  851. {squawk_cli-2.43.0 → squawk_cli-2.45.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
  852. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test__adding_unique_constraint_err.snap +0 -0
  853. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test__unique_constraint_inline_add_column_err.snap +0 -0
  854. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test__unique_constraint_inline_add_column_unique_err.snap +0 -0
  855. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_bigint_over_int__test__err.snap +0 -0
  856. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_bigint_over_smallint__test__err.snap +0 -0
  857. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_identity__test__err.snap +0 -0
  858. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_identity__test__ok_when_quoted.snap +0 -0
  859. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__alter_column_set_not_null.snap +0 -0
  860. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__alter_table_drop_column_err.snap +0 -0
  861. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__alter_table_drop_constraint_err.snap +0 -0
  862. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__alter_table_err.snap +0 -0
  863. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__create_index_concurrently_err.snap +0 -0
  864. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__create_table_err.snap +0 -0
  865. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__create_table_with_on_commit_drop_err.snap +0 -0
  866. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__create_temp_table_without_on_commit_drop_err.snap +0 -0
  867. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__disable_row_level_security_err.snap +0 -0
  868. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__double_add_after_drop_err.snap +0 -0
  869. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__drop_index_err.snap +0 -0
  870. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__enable_row_level_security_err.snap +0 -0
  871. {squawk_cli-2.43.0 → squawk_cli-2.45.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
  872. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test__adding_column_non_text_err.snap +0 -0
  873. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test__create_table_with_pgcatalog_varchar_err.snap +0 -0
  874. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test__create_table_with_varchar_err.snap +0 -0
  875. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test__increase_varchar_size_err.snap +0 -0
  876. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_timestamptz__test__alter_table_with_timestamp_err.snap +0 -0
  877. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_timestamptz__test__create_table_with_timestamp_err.snap +0 -0
  878. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__renaming_column__test__err.snap +0 -0
  879. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__renaming_table__test__err.snap +0 -0
  880. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__require_concurrent_index_creation__test__adding_index_non_concurrently_err.snap +0 -0
  881. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__require_concurrent_index_deletion__test__drop_index_missing_concurrently_err.snap +0 -0
  882. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__begin_assume_transaction_err.snap +0 -0
  883. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__begin_repeated_err.snap +0 -0
  884. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__commit_repeated_err.snap +0 -0
  885. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__commit_with_assume_in_transaction_err.snap +0 -0
  886. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__rollback_with_assume_in_transaction_err.snap +0 -0
  887. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/rules/transaction_nesting.rs +0 -0
  888. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/snapshots/squawk_linter__version__test_pg_version__parse.snap +0 -0
  889. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/test_utils.rs +0 -0
  890. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_linter/src/version.rs +0 -0
  891. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/README.md +0 -0
  892. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/src/event.rs +0 -0
  893. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/src/generated/mod.rs +0 -0
  894. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/src/input.rs +0 -0
  895. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/src/lib.rs +0 -0
  896. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/src/output.rs +0 -0
  897. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/src/shortcuts.rs +0 -0
  898. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/src/syntax_kind.rs +0 -0
  899. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/src/token_set.rs +0 -0
  900. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/err/alter_foreign_data_wrapper.sql +0 -0
  901. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/err/alter_sequence.sql +0 -0
  902. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/err/alter_server.sql +0 -0
  903. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/err/alter_table.sql +0 -0
  904. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/err/copy.sql +0 -0
  905. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/err/create_function.sql +0 -0
  906. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/err/create_index.sql +0 -0
  907. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/err/create_table.sql +0 -0
  908. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/err/drop_database.sql +0 -0
  909. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/err/drop_table.sql +0 -0
  910. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/err/insert.sql +0 -0
  911. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/err/prepare.sql +0 -0
  912. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/err/reindex.sql +0 -0
  913. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/err/select.sql +0 -0
  914. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/err/select_cte.sql +0 -0
  915. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/err/update.sql +0 -0
  916. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/err/vacuum.sql +0 -0
  917. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/err/values.sql +0 -0
  918. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_aggregate.sql +0 -0
  919. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_collation.sql +0 -0
  920. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_conversion.sql +0 -0
  921. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_database.sql +0 -0
  922. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_default_privileges.sql +0 -0
  923. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_domain.sql +0 -0
  924. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_event_trigger.sql +0 -0
  925. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_extension.sql +0 -0
  926. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_foreign_data_wrapper.sql +0 -0
  927. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_foreign_table.sql +0 -0
  928. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_function.sql +0 -0
  929. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_group.sql +0 -0
  930. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_index.sql +0 -0
  931. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_language.sql +0 -0
  932. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_large_object.sql +0 -0
  933. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_materialized_view.sql +0 -0
  934. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_operator.sql +0 -0
  935. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_operator_class.sql +0 -0
  936. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_operator_family.sql +0 -0
  937. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_policy.sql +0 -0
  938. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_procedure.sql +0 -0
  939. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_publication.sql +0 -0
  940. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_role.sql +0 -0
  941. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_routine.sql +0 -0
  942. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_rule.sql +0 -0
  943. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_schema.sql +0 -0
  944. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_sequence.sql +0 -0
  945. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_server.sql +0 -0
  946. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_statistics.sql +0 -0
  947. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_subscription.sql +0 -0
  948. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_system.sql +0 -0
  949. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_tablespace.sql +0 -0
  950. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_text_search_configuration.sql +0 -0
  951. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_text_search_dictionary.sql +0 -0
  952. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_text_search_parser.sql +0 -0
  953. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_text_search_template.sql +0 -0
  954. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_trigger.sql +0 -0
  955. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_type.sql +0 -0
  956. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_user.sql +0 -0
  957. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_user_mapping.sql +0 -0
  958. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/alter_view.sql +0 -0
  959. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/analyze.sql +0 -0
  960. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/call.sql +0 -0
  961. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/checkpoint.sql +0 -0
  962. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/close.sql +0 -0
  963. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/cluster.sql +0 -0
  964. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/comment.sql +0 -0
  965. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/copy.sql +0 -0
  966. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_access_method.sql +0 -0
  967. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_aggregate.sql +0 -0
  968. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_cast.sql +0 -0
  969. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_collation.sql +0 -0
  970. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_conversion.sql +0 -0
  971. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_database.sql +0 -0
  972. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_domain.sql +0 -0
  973. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_event_trigger.sql +0 -0
  974. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_ext.sql +0 -0
  975. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_foreign_data_wrapper.sql +0 -0
  976. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_function.sql +0 -0
  977. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_group.sql +0 -0
  978. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_index.sql +0 -0
  979. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_language.sql +0 -0
  980. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_materialized_view.sql +0 -0
  981. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_operator.sql +0 -0
  982. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_operator_class.sql +0 -0
  983. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_operator_family.sql +0 -0
  984. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_policy.sql +0 -0
  985. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_procedure.sql +0 -0
  986. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_publication.sql +0 -0
  987. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_role.sql +0 -0
  988. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_rule.sql +0 -0
  989. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_sequence.sql +0 -0
  990. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_server.sql +0 -0
  991. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_statistics.sql +0 -0
  992. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_subscription.sql +0 -0
  993. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_table_as.sql +0 -0
  994. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_tablespace.sql +0 -0
  995. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_text_search_config.sql +0 -0
  996. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_text_search_dict.sql +0 -0
  997. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_text_search_parser.sql +0 -0
  998. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_text_search_template.sql +0 -0
  999. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_transform.sql +0 -0
  1000. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_trigger.sql +0 -0
  1001. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_type.sql +0 -0
  1002. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_user.sql +0 -0
  1003. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_view.sql +0 -0
  1004. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/create_view_extra_parens.sql +0 -0
  1005. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/deallocate.sql +0 -0
  1006. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/declare.sql +0 -0
  1007. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/delete.sql +0 -0
  1008. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/discard.sql +0 -0
  1009. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/do.sql +0 -0
  1010. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_access_method.sql +0 -0
  1011. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_aggregate.sql +0 -0
  1012. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_cast.sql +0 -0
  1013. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_collation.sql +0 -0
  1014. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_conversion.sql +0 -0
  1015. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_database.sql +0 -0
  1016. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_domain.sql +0 -0
  1017. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_event_trigger.sql +0 -0
  1018. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_extension.sql +0 -0
  1019. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_foreign_data.sql +0 -0
  1020. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_foreign_table.sql +0 -0
  1021. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_function.sql +0 -0
  1022. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_group.sql +0 -0
  1023. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_index.sql +0 -0
  1024. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_language.sql +0 -0
  1025. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_materialized_view.sql +0 -0
  1026. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_operator.sql +0 -0
  1027. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_operator_class.sql +0 -0
  1028. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_operator_family.sql +0 -0
  1029. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_owned.sql +0 -0
  1030. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_policy.sql +0 -0
  1031. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_procedure.sql +0 -0
  1032. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_publication.sql +0 -0
  1033. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_role.sql +0 -0
  1034. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_routine.sql +0 -0
  1035. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_rule.sql +0 -0
  1036. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_sequence.sql +0 -0
  1037. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_server.sql +0 -0
  1038. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_statistics.sql +0 -0
  1039. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_subscription.sql +0 -0
  1040. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_table.sql +0 -0
  1041. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_tablespace.sql +0 -0
  1042. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_text_search_config.sql +0 -0
  1043. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_text_search_dict.sql +0 -0
  1044. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_text_search_parser.sql +0 -0
  1045. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_text_search_template.sql +0 -0
  1046. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_transform.sql +0 -0
  1047. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_trigger.sql +0 -0
  1048. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_type.sql +0 -0
  1049. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_user.sql +0 -0
  1050. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_user_mapping.sql +0 -0
  1051. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/drop_view.sql +0 -0
  1052. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/execute.sql +0 -0
  1053. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/explain.sql +0 -0
  1054. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/fetch.sql +0 -0
  1055. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/grant.sql +0 -0
  1056. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/import_foreign_schema.sql +0 -0
  1057. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/listen.sql +0 -0
  1058. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/load.sql +0 -0
  1059. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/lock.sql +0 -0
  1060. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/misc.sql +0 -0
  1061. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/move.sql +0 -0
  1062. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/notify.sql +0 -0
  1063. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/precedence.sql +0 -0
  1064. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/prepare.sql +0 -0
  1065. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/reassign.sql +0 -0
  1066. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/refresh.sql +0 -0
  1067. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/reindex.sql +0 -0
  1068. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/reset.sql +0 -0
  1069. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/revoke.sql +0 -0
  1070. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/security_label.sql +0 -0
  1071. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/select.sql +0 -0
  1072. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/select_into.sql +0 -0
  1073. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/select_operators.sql +0 -0
  1074. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/select_xml.sql +0 -0
  1075. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/set_constraints.sql +0 -0
  1076. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/set_role.sql +0 -0
  1077. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/set_session_auth.sql +0 -0
  1078. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/set_transaction.sql +0 -0
  1079. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/show.sql +0 -0
  1080. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/transaction.sql +0 -0
  1081. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/truncate.sql +0 -0
  1082. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/unlisten.sql +0 -0
  1083. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/vacuum.sql +0 -0
  1084. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/data/ok/values.sql +0 -0
  1085. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_aggregate_ok.snap +0 -0
  1086. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_collation_ok.snap +0 -0
  1087. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_conversion_ok.snap +0 -0
  1088. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_database_ok.snap +0 -0
  1089. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_default_privileges_ok.snap +0 -0
  1090. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_domain_ok.snap +0 -0
  1091. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_event_trigger_ok.snap +0 -0
  1092. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_extension_ok.snap +0 -0
  1093. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_foreign_data_wrapper_err.snap +0 -0
  1094. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_foreign_data_wrapper_ok.snap +0 -0
  1095. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_foreign_table_ok.snap +0 -0
  1096. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_function_ok.snap +0 -0
  1097. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_group_ok.snap +0 -0
  1098. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_index_ok.snap +0 -0
  1099. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_language_ok.snap +0 -0
  1100. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_large_object_ok.snap +0 -0
  1101. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_materialized_view_ok.snap +0 -0
  1102. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_operator_class_ok.snap +0 -0
  1103. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_operator_family_ok.snap +0 -0
  1104. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_operator_ok.snap +0 -0
  1105. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_policy_ok.snap +0 -0
  1106. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_procedure_ok.snap +0 -0
  1107. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_publication_ok.snap +0 -0
  1108. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_role_ok.snap +0 -0
  1109. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_routine_ok.snap +0 -0
  1110. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_rule_ok.snap +0 -0
  1111. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_schema_ok.snap +0 -0
  1112. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_sequence_err.snap +0 -0
  1113. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_sequence_ok.snap +0 -0
  1114. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_server_err.snap +0 -0
  1115. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_server_ok.snap +0 -0
  1116. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_statistics_ok.snap +0 -0
  1117. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_subscription_ok.snap +0 -0
  1118. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_system_ok.snap +0 -0
  1119. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_table_err.snap +0 -0
  1120. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_tablespace_ok.snap +0 -0
  1121. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_text_search_configuration_ok.snap +0 -0
  1122. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_text_search_dictionary_ok.snap +0 -0
  1123. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_text_search_parser_ok.snap +0 -0
  1124. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_text_search_template_ok.snap +0 -0
  1125. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_trigger_ok.snap +0 -0
  1126. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_user_mapping_ok.snap +0 -0
  1127. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_user_ok.snap +0 -0
  1128. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__alter_view_ok.snap +0 -0
  1129. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__analyze_ok.snap +0 -0
  1130. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__call_ok.snap +0 -0
  1131. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__checkpoint_ok.snap +0 -0
  1132. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__close_ok.snap +0 -0
  1133. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__cluster_ok.snap +0 -0
  1134. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__comment_ok.snap +0 -0
  1135. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__copy_err.snap +0 -0
  1136. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__copy_ok.snap +0 -0
  1137. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_access_method_ok.snap +0 -0
  1138. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_aggregate_ok.snap +0 -0
  1139. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_cast_ok.snap +0 -0
  1140. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_collation_ok.snap +0 -0
  1141. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_conversion_ok.snap +0 -0
  1142. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_database_ok.snap +0 -0
  1143. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_domain_ok.snap +0 -0
  1144. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_event_trigger_ok.snap +0 -0
  1145. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_ext_ok.snap +0 -0
  1146. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_foreign_data_wrapper_ok.snap +0 -0
  1147. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_function_err.snap +0 -0
  1148. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_function_ok.snap +0 -0
  1149. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_group_ok.snap +0 -0
  1150. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_index_err.snap +0 -0
  1151. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_index_ok.snap +0 -0
  1152. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_language_ok.snap +0 -0
  1153. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_materialized_view_ok.snap +0 -0
  1154. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_operator_class_ok.snap +0 -0
  1155. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_operator_family_ok.snap +0 -0
  1156. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_operator_ok.snap +0 -0
  1157. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_policy_ok.snap +0 -0
  1158. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_procedure_ok.snap +0 -0
  1159. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_publication_ok.snap +0 -0
  1160. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_role_ok.snap +0 -0
  1161. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_rule_ok.snap +0 -0
  1162. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_server_ok.snap +0 -0
  1163. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_statistics_ok.snap +0 -0
  1164. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_subscription_ok.snap +0 -0
  1165. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_tablespace_ok.snap +0 -0
  1166. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_text_search_config_ok.snap +0 -0
  1167. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_text_search_dict_ok.snap +0 -0
  1168. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_text_search_parser_ok.snap +0 -0
  1169. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_text_search_template_ok.snap +0 -0
  1170. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_transform_ok.snap +0 -0
  1171. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_trigger_ok.snap +0 -0
  1172. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_type_ok.snap +0 -0
  1173. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_user_ok.snap +0 -0
  1174. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__create_view_extra_parens_ok.snap +0 -0
  1175. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__deallocate_ok.snap +0 -0
  1176. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__declare_ok.snap +0 -0
  1177. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__delete_ok.snap +0 -0
  1178. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__discard_ok.snap +0 -0
  1179. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__do_ok.snap +0 -0
  1180. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_access_method_ok.snap +0 -0
  1181. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_aggregate_ok.snap +0 -0
  1182. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_cast_ok.snap +0 -0
  1183. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_collation_ok.snap +0 -0
  1184. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_conversion_ok.snap +0 -0
  1185. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_database_err.snap +0 -0
  1186. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_database_ok.snap +0 -0
  1187. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_domain_ok.snap +0 -0
  1188. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_event_trigger_ok.snap +0 -0
  1189. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_extension_ok.snap +0 -0
  1190. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_foreign_data_ok.snap +0 -0
  1191. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_foreign_table_ok.snap +0 -0
  1192. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_function_ok.snap +0 -0
  1193. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_group_ok.snap +0 -0
  1194. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_index_ok.snap +0 -0
  1195. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_language_ok.snap +0 -0
  1196. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_materialized_view_ok.snap +0 -0
  1197. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_operator_class_ok.snap +0 -0
  1198. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_operator_family_ok.snap +0 -0
  1199. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_operator_ok.snap +0 -0
  1200. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_owned_ok.snap +0 -0
  1201. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_policy_ok.snap +0 -0
  1202. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_procedure_ok.snap +0 -0
  1203. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_publication_ok.snap +0 -0
  1204. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_role_ok.snap +0 -0
  1205. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_routine_ok.snap +0 -0
  1206. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_rule_ok.snap +0 -0
  1207. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_sequence_ok.snap +0 -0
  1208. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_server_ok.snap +0 -0
  1209. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_statistics_ok.snap +0 -0
  1210. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_subscription_ok.snap +0 -0
  1211. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_table_err.snap +0 -0
  1212. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_table_ok.snap +0 -0
  1213. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_tablespace_ok.snap +0 -0
  1214. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_text_search_config_ok.snap +0 -0
  1215. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_text_search_dict_ok.snap +0 -0
  1216. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_text_search_parser_ok.snap +0 -0
  1217. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_text_search_template_ok.snap +0 -0
  1218. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_transform_ok.snap +0 -0
  1219. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_trigger_ok.snap +0 -0
  1220. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_type_ok.snap +0 -0
  1221. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_user_mapping_ok.snap +0 -0
  1222. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_user_ok.snap +0 -0
  1223. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__drop_view_ok.snap +0 -0
  1224. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__execute_ok.snap +0 -0
  1225. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__explain_ok.snap +0 -0
  1226. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__fetch_ok.snap +0 -0
  1227. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__grant_ok.snap +0 -0
  1228. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__import_foreign_schema_ok.snap +0 -0
  1229. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__insert_err.snap +0 -0
  1230. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__listen_ok.snap +0 -0
  1231. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__load_ok.snap +0 -0
  1232. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__lock_ok.snap +0 -0
  1233. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__move_ok.snap +0 -0
  1234. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__notify_ok.snap +0 -0
  1235. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__precedence_ok.snap +0 -0
  1236. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__prepare_err.snap +0 -0
  1237. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__prepare_ok.snap +0 -0
  1238. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__reassign_ok.snap +0 -0
  1239. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__refresh_ok.snap +0 -0
  1240. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__regression_encoding.snap +0 -0
  1241. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__regression_errors.snap +0 -0
  1242. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__regression_euc_kr.snap +0 -0
  1243. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__regression_oid8.snap +0 -0
  1244. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__reindex_err.snap +0 -0
  1245. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__reindex_ok.snap +0 -0
  1246. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__reset_ok.snap +0 -0
  1247. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__revoke_ok.snap +0 -0
  1248. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__security_label_ok.snap +0 -0
  1249. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__select_cte_err.snap +0 -0
  1250. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__select_err.snap +0 -0
  1251. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__select_into_ok.snap +0 -0
  1252. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__select_ok.snap +0 -0
  1253. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__select_operators_ok.snap +0 -0
  1254. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__select_xml_ok.snap +0 -0
  1255. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__set_constraints_ok.snap +0 -0
  1256. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__set_role_ok.snap +0 -0
  1257. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__set_session_auth_ok.snap +0 -0
  1258. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__set_transaction_ok.snap +0 -0
  1259. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__show_ok.snap +0 -0
  1260. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__transaction_ok.snap +0 -0
  1261. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__truncate_ok.snap +0 -0
  1262. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__unlisten_ok.snap +0 -0
  1263. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__update_err.snap +0 -0
  1264. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__vacuum_err.snap +0 -0
  1265. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__vacuum_ok.snap +0 -0
  1266. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__values_err.snap +0 -0
  1267. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_parser/tests/snapshots/tests__values_ok.snap +0 -0
  1268. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_server/README.md +0 -0
  1269. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_server/src/diagnostic.rs +0 -0
  1270. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/Cargo.toml +0 -0
  1271. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/README.md +0 -0
  1272. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/ast/generated/mod.rs +0 -0
  1273. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/ast/node_ext.rs +0 -0
  1274. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/ast/nodes.rs +0 -0
  1275. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/ast/support.rs +0 -0
  1276. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/identifier.rs +0 -0
  1277. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/lib.rs +0 -0
  1278. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/parsing.rs +0 -0
  1279. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__alter_aggregate_params_validation.snap +0 -0
  1280. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__alter_table_ok_validation.snap +0 -0
  1281. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__array_exprs_validation.snap +0 -0
  1282. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__create_aggregate_params_validation.snap +0 -0
  1283. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__create_table_validation.snap +0 -0
  1284. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__custom_operators_validation.snap +0 -0
  1285. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__drop_aggregate_params_validation.snap +0 -0
  1286. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__join_clauses_validation.snap +0 -0
  1287. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__non_standard_param_validation.snap +0 -0
  1288. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__select_validation.snap +0 -0
  1289. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/snapshots/squawk_syntax__test__validate_string_continuation_validation.snap +0 -0
  1290. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/syntax_error.rs +0 -0
  1291. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/syntax_node.rs +0 -0
  1292. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/test.rs +0 -0
  1293. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/token_text.rs +0 -0
  1294. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/src/validation.rs +0 -0
  1295. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/test_data/validation/alter_aggregate_params.sql +0 -0
  1296. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/test_data/validation/alter_table_ok.sql +0 -0
  1297. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/test_data/validation/array_exprs.sql +0 -0
  1298. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/test_data/validation/create_aggregate_params.sql +0 -0
  1299. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/test_data/validation/create_table.sql +0 -0
  1300. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/test_data/validation/custom_operators.sql +0 -0
  1301. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/test_data/validation/drop_aggregate_params.sql +0 -0
  1302. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/test_data/validation/join_clauses.sql +0 -0
  1303. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/test_data/validation/non_standard_param.sql +0 -0
  1304. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/test_data/validation/select.sql +0 -0
  1305. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/crates/squawk_syntax/test_data/validation/validate_string_continuation.sql +0 -0
  1306. {squawk_cli-2.43.0 → squawk_cli-2.45.0}/pyproject.toml +0 -0
@@ -0,0 +1,3544 @@
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 = "allocator-api2"
31
+ version = "0.2.21"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
34
+
35
+ [[package]]
36
+ name = "annotate-snippets"
37
+ version = "0.12.4"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "a8ee2f071d418442e50c643c4e7a4051ce3abd9dba11713cc6cdf4f4a3f3cca5"
40
+ dependencies = [
41
+ "anstyle",
42
+ "unicode-width 0.2.1",
43
+ ]
44
+
45
+ [[package]]
46
+ name = "anstream"
47
+ version = "0.6.20"
48
+ source = "registry+https://github.com/rust-lang/crates.io-index"
49
+ checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192"
50
+ dependencies = [
51
+ "anstyle",
52
+ "anstyle-parse",
53
+ "anstyle-query",
54
+ "anstyle-wincon",
55
+ "colorchoice",
56
+ "is_terminal_polyfill",
57
+ "utf8parse",
58
+ ]
59
+
60
+ [[package]]
61
+ name = "anstyle"
62
+ version = "1.0.11"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
65
+
66
+ [[package]]
67
+ name = "anstyle-lossy"
68
+ version = "1.1.4"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "04d3a5dc826f84d0ea11882bb8054ff7f3d482602e11bb181101303a279ea01f"
71
+ dependencies = [
72
+ "anstyle",
73
+ ]
74
+
75
+ [[package]]
76
+ name = "anstyle-parse"
77
+ version = "0.2.7"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
80
+ dependencies = [
81
+ "utf8parse",
82
+ ]
83
+
84
+ [[package]]
85
+ name = "anstyle-query"
86
+ version = "1.1.4"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
89
+ dependencies = [
90
+ "windows-sys 0.60.2",
91
+ ]
92
+
93
+ [[package]]
94
+ name = "anstyle-svg"
95
+ version = "0.1.11"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "26b9ec8c976eada1b0f9747a3d7cc4eae3bef10613e443746e7487f26c872fde"
98
+ dependencies = [
99
+ "anstyle",
100
+ "anstyle-lossy",
101
+ "anstyle-parse",
102
+ "html-escape",
103
+ "unicode-width 0.2.1",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "anstyle-wincon"
108
+ version = "3.0.10"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
111
+ dependencies = [
112
+ "anstyle",
113
+ "once_cell_polyfill",
114
+ "windows-sys 0.60.2",
115
+ ]
116
+
117
+ [[package]]
118
+ name = "anyhow"
119
+ version = "1.0.99"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100"
122
+
123
+ [[package]]
124
+ name = "async-trait"
125
+ version = "0.1.89"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
128
+ dependencies = [
129
+ "proc-macro2",
130
+ "quote",
131
+ "syn 2.0.106",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "autocfg"
136
+ version = "1.5.0"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
139
+
140
+ [[package]]
141
+ name = "backtrace"
142
+ version = "0.3.75"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
145
+ dependencies = [
146
+ "addr2line",
147
+ "cfg-if",
148
+ "libc",
149
+ "miniz_oxide",
150
+ "object",
151
+ "rustc-demangle",
152
+ "windows-targets 0.52.6",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "base16ct"
157
+ version = "0.2.0"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
160
+
161
+ [[package]]
162
+ name = "base64"
163
+ version = "0.12.3"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
166
+
167
+ [[package]]
168
+ name = "base64"
169
+ version = "0.21.7"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
172
+
173
+ [[package]]
174
+ name = "base64"
175
+ version = "0.22.1"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
178
+
179
+ [[package]]
180
+ name = "base64ct"
181
+ version = "1.8.3"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
184
+
185
+ [[package]]
186
+ name = "bitflags"
187
+ version = "1.3.2"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
190
+
191
+ [[package]]
192
+ name = "bitflags"
193
+ version = "2.9.3"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "34efbcccd345379ca2868b2b2c9d3782e9cc58ba87bc7d79d5b53d9c9ae6f25d"
196
+
197
+ [[package]]
198
+ name = "block-buffer"
199
+ version = "0.10.4"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
202
+ dependencies = [
203
+ "generic-array",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "borsh"
208
+ version = "1.5.7"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce"
211
+ dependencies = [
212
+ "cfg_aliases",
213
+ ]
214
+
215
+ [[package]]
216
+ name = "boxcar"
217
+ version = "0.2.14"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
220
+
221
+ [[package]]
222
+ name = "bumpalo"
223
+ version = "3.19.0"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
226
+
227
+ [[package]]
228
+ name = "bytecount"
229
+ version = "0.6.9"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
232
+
233
+ [[package]]
234
+ name = "bytes"
235
+ version = "1.11.1"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
238
+
239
+ [[package]]
240
+ name = "camino"
241
+ version = "1.1.12"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "dd0b03af37dad7a14518b7691d81acb0f8222604ad3d1b02f6b4bed5188c0cd5"
244
+
245
+ [[package]]
246
+ name = "cast"
247
+ version = "0.3.0"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
250
+
251
+ [[package]]
252
+ name = "cc"
253
+ version = "1.2.34"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "42bc4aea80032b7bf409b0bc7ccad88853858911b7713a8062fdc0623867bedc"
256
+ dependencies = [
257
+ "shlex",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "cfg-if"
262
+ version = "1.0.3"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
265
+
266
+ [[package]]
267
+ name = "cfg_aliases"
268
+ version = "0.2.1"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
271
+
272
+ [[package]]
273
+ name = "clap"
274
+ version = "4.5.46"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "2c5e4fcf9c21d2e544ca1ee9d8552de13019a42aa7dbf32747fa7aaf1df76e57"
277
+ dependencies = [
278
+ "clap_builder",
279
+ "clap_derive",
280
+ ]
281
+
282
+ [[package]]
283
+ name = "clap_builder"
284
+ version = "4.5.46"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "fecb53a0e6fcfb055f686001bc2e2592fa527efaf38dbe81a6a9563562e57d41"
287
+ dependencies = [
288
+ "anstream",
289
+ "anstyle",
290
+ "clap_lex",
291
+ "strsim",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "clap_derive"
296
+ version = "4.5.45"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "14cb31bb0a7d536caef2639baa7fad459e15c3144efefa6dbd1c84562c4739f6"
299
+ dependencies = [
300
+ "heck 0.5.0",
301
+ "proc-macro2",
302
+ "quote",
303
+ "syn 2.0.106",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "clap_lex"
308
+ version = "0.7.5"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
311
+
312
+ [[package]]
313
+ name = "colorchoice"
314
+ version = "1.0.4"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
317
+
318
+ [[package]]
319
+ name = "console"
320
+ version = "0.11.3"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "8c0994e656bba7b922d8dd1245db90672ffb701e684e45be58f20719d69abc5a"
323
+ dependencies = [
324
+ "encode_unicode 0.3.6",
325
+ "lazy_static",
326
+ "libc",
327
+ "regex",
328
+ "terminal_size",
329
+ "termios",
330
+ "unicode-width 0.1.14",
331
+ "winapi",
332
+ "winapi-util",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "console"
337
+ version = "0.15.11"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
340
+ dependencies = [
341
+ "encode_unicode 1.0.0",
342
+ "libc",
343
+ "once_cell",
344
+ "windows-sys 0.59.0",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "console_error_panic_hook"
349
+ version = "0.1.7"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
352
+ dependencies = [
353
+ "cfg-if",
354
+ "wasm-bindgen",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "console_log"
359
+ version = "1.0.0"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "be8aed40e4edbf4d3b4431ab260b63fdc40f5780a4766824329ea0f1eefe3c0f"
362
+ dependencies = [
363
+ "log",
364
+ "web-sys",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "const-oid"
369
+ version = "0.9.6"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
372
+
373
+ [[package]]
374
+ name = "convert_case"
375
+ version = "0.7.1"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "bb402b8d4c85569410425650ce3eddc7d698ed96d39a73f941b08fb63082f1e7"
378
+ dependencies = [
379
+ "unicode-segmentation",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "core-foundation"
384
+ version = "0.9.4"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
387
+ dependencies = [
388
+ "core-foundation-sys",
389
+ "libc",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "core-foundation-sys"
394
+ version = "0.8.7"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
397
+
398
+ [[package]]
399
+ name = "countme"
400
+ version = "3.0.1"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
403
+
404
+ [[package]]
405
+ name = "cpufeatures"
406
+ version = "0.2.17"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
409
+ dependencies = [
410
+ "libc",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "crossbeam-channel"
415
+ version = "0.5.15"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
418
+ dependencies = [
419
+ "crossbeam-utils",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "crossbeam-deque"
424
+ version = "0.8.6"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
427
+ dependencies = [
428
+ "crossbeam-epoch",
429
+ "crossbeam-utils",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "crossbeam-epoch"
434
+ version = "0.9.18"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
437
+ dependencies = [
438
+ "crossbeam-utils",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "crossbeam-queue"
443
+ version = "0.3.12"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
446
+ dependencies = [
447
+ "crossbeam-utils",
448
+ ]
449
+
450
+ [[package]]
451
+ name = "crossbeam-utils"
452
+ version = "0.8.21"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
455
+
456
+ [[package]]
457
+ name = "crypto-bigint"
458
+ version = "0.5.5"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
461
+ dependencies = [
462
+ "generic-array",
463
+ "rand_core",
464
+ "subtle",
465
+ "zeroize",
466
+ ]
467
+
468
+ [[package]]
469
+ name = "crypto-common"
470
+ version = "0.1.6"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
473
+ dependencies = [
474
+ "generic-array",
475
+ "typenum",
476
+ ]
477
+
478
+ [[package]]
479
+ name = "csv"
480
+ version = "1.4.0"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
483
+ dependencies = [
484
+ "csv-core",
485
+ "itoa",
486
+ "ryu",
487
+ "serde_core",
488
+ ]
489
+
490
+ [[package]]
491
+ name = "csv-core"
492
+ version = "0.1.13"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
495
+ dependencies = [
496
+ "memchr",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "curve25519-dalek"
501
+ version = "4.1.3"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
504
+ dependencies = [
505
+ "cfg-if",
506
+ "cpufeatures",
507
+ "curve25519-dalek-derive",
508
+ "digest",
509
+ "fiat-crypto",
510
+ "rustc_version",
511
+ "subtle",
512
+ "zeroize",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "curve25519-dalek-derive"
517
+ version = "0.1.1"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
520
+ dependencies = [
521
+ "proc-macro2",
522
+ "quote",
523
+ "syn 2.0.106",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "der"
528
+ version = "0.7.10"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
531
+ dependencies = [
532
+ "const-oid",
533
+ "pem-rfc7468",
534
+ "zeroize",
535
+ ]
536
+
537
+ [[package]]
538
+ name = "deranged"
539
+ version = "0.5.5"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
542
+ dependencies = [
543
+ "powerfmt",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "digest"
548
+ version = "0.10.7"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
551
+ dependencies = [
552
+ "block-buffer",
553
+ "const-oid",
554
+ "crypto-common",
555
+ "subtle",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "dir-test"
560
+ version = "0.4.1"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "62c013fe825864f3e4593f36426c1fa7a74f5603f13ca8d1af7a990c1cd94a79"
563
+ dependencies = [
564
+ "dir-test-macros",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "dir-test-macros"
569
+ version = "0.4.1"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "d42f54d7b4a6bc2400fe5b338e35d1a335787585375322f49c5d5fe7b243da7e"
572
+ dependencies = [
573
+ "glob",
574
+ "proc-macro2",
575
+ "quote",
576
+ "syn 2.0.106",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "displaydoc"
581
+ version = "0.2.5"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
584
+ dependencies = [
585
+ "proc-macro2",
586
+ "quote",
587
+ "syn 2.0.106",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "drop_bomb"
592
+ version = "0.1.5"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "9bda8e21c04aca2ae33ffc2fd8c23134f3cac46db123ba97bd9d3f3b8a4a85e1"
595
+
596
+ [[package]]
597
+ name = "ecdsa"
598
+ version = "0.16.9"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
601
+ dependencies = [
602
+ "der",
603
+ "digest",
604
+ "elliptic-curve",
605
+ "rfc6979",
606
+ "signature",
607
+ "spki",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "ed25519"
612
+ version = "2.2.3"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
615
+ dependencies = [
616
+ "pkcs8",
617
+ "signature",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "ed25519-dalek"
622
+ version = "2.2.0"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
625
+ dependencies = [
626
+ "curve25519-dalek",
627
+ "ed25519",
628
+ "serde",
629
+ "sha2",
630
+ "subtle",
631
+ "zeroize",
632
+ ]
633
+
634
+ [[package]]
635
+ name = "either"
636
+ version = "1.15.0"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
639
+
640
+ [[package]]
641
+ name = "elliptic-curve"
642
+ version = "0.13.8"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
645
+ dependencies = [
646
+ "base16ct",
647
+ "crypto-bigint",
648
+ "digest",
649
+ "ff",
650
+ "generic-array",
651
+ "group",
652
+ "hkdf",
653
+ "pem-rfc7468",
654
+ "pkcs8",
655
+ "rand_core",
656
+ "sec1",
657
+ "subtle",
658
+ "zeroize",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "encode_unicode"
663
+ version = "0.3.6"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
666
+
667
+ [[package]]
668
+ name = "encode_unicode"
669
+ version = "1.0.0"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
672
+
673
+ [[package]]
674
+ name = "encoding_rs"
675
+ version = "0.8.35"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
678
+ dependencies = [
679
+ "cfg-if",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "enum-iterator"
684
+ version = "2.1.0"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "c280b9e6b3ae19e152d8e31cf47f18389781e119d4013a2a2bb0180e5facc635"
687
+ dependencies = [
688
+ "enum-iterator-derive",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "enum-iterator-derive"
693
+ version = "1.4.0"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "a1ab991c1362ac86c61ab6f556cff143daa22e5a15e4e189df818b2fd19fe65b"
696
+ dependencies = [
697
+ "proc-macro2",
698
+ "quote",
699
+ "syn 2.0.106",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "equivalent"
704
+ version = "1.0.2"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
707
+
708
+ [[package]]
709
+ name = "errno"
710
+ version = "0.3.13"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
713
+ dependencies = [
714
+ "libc",
715
+ "windows-sys 0.60.2",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "etcetera"
720
+ version = "0.11.0"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "de48cc4d1c1d97a20fd819def54b890cadde72ed3ad0c614822a0a433361be96"
723
+ dependencies = [
724
+ "cfg-if",
725
+ "windows-sys 0.61.2",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "fastrand"
730
+ version = "2.3.0"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
733
+
734
+ [[package]]
735
+ name = "ff"
736
+ version = "0.13.1"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
739
+ dependencies = [
740
+ "rand_core",
741
+ "subtle",
742
+ ]
743
+
744
+ [[package]]
745
+ name = "fiat-crypto"
746
+ version = "0.2.9"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
749
+
750
+ [[package]]
751
+ name = "fnv"
752
+ version = "1.0.7"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
755
+
756
+ [[package]]
757
+ name = "foldhash"
758
+ version = "0.1.5"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
761
+
762
+ [[package]]
763
+ name = "foreign-types"
764
+ version = "0.3.2"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
767
+ dependencies = [
768
+ "foreign-types-shared",
769
+ ]
770
+
771
+ [[package]]
772
+ name = "foreign-types-shared"
773
+ version = "0.1.1"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
776
+
777
+ [[package]]
778
+ name = "form_urlencoded"
779
+ version = "1.2.2"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
782
+ dependencies = [
783
+ "percent-encoding",
784
+ ]
785
+
786
+ [[package]]
787
+ name = "futures-channel"
788
+ version = "0.3.31"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
791
+ dependencies = [
792
+ "futures-core",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "futures-core"
797
+ version = "0.3.31"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
800
+
801
+ [[package]]
802
+ name = "futures-io"
803
+ version = "0.3.31"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
806
+
807
+ [[package]]
808
+ name = "futures-sink"
809
+ version = "0.3.31"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
812
+
813
+ [[package]]
814
+ name = "futures-task"
815
+ version = "0.3.31"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
818
+
819
+ [[package]]
820
+ name = "futures-util"
821
+ version = "0.3.31"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
824
+ dependencies = [
825
+ "futures-core",
826
+ "futures-io",
827
+ "futures-task",
828
+ "memchr",
829
+ "pin-project-lite",
830
+ "pin-utils",
831
+ "slab",
832
+ ]
833
+
834
+ [[package]]
835
+ name = "generic-array"
836
+ version = "0.14.9"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
839
+ dependencies = [
840
+ "typenum",
841
+ "version_check",
842
+ "zeroize",
843
+ ]
844
+
845
+ [[package]]
846
+ name = "getrandom"
847
+ version = "0.2.16"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
850
+ dependencies = [
851
+ "cfg-if",
852
+ "libc",
853
+ "wasi 0.11.1+wasi-snapshot-preview1",
854
+ ]
855
+
856
+ [[package]]
857
+ name = "getrandom"
858
+ version = "0.3.3"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
861
+ dependencies = [
862
+ "cfg-if",
863
+ "libc",
864
+ "r-efi",
865
+ "wasi 0.14.3+wasi-0.2.4",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "gimli"
870
+ version = "0.31.1"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
873
+
874
+ [[package]]
875
+ name = "glob"
876
+ version = "0.3.3"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
879
+
880
+ [[package]]
881
+ name = "group"
882
+ version = "0.13.0"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
885
+ dependencies = [
886
+ "ff",
887
+ "rand_core",
888
+ "subtle",
889
+ ]
890
+
891
+ [[package]]
892
+ name = "h2"
893
+ version = "0.3.27"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
896
+ dependencies = [
897
+ "bytes",
898
+ "fnv",
899
+ "futures-core",
900
+ "futures-sink",
901
+ "futures-util",
902
+ "http",
903
+ "indexmap",
904
+ "slab",
905
+ "tokio",
906
+ "tokio-util",
907
+ "tracing",
908
+ ]
909
+
910
+ [[package]]
911
+ name = "hashbrown"
912
+ version = "0.14.5"
913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
914
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
915
+
916
+ [[package]]
917
+ name = "hashbrown"
918
+ version = "0.15.5"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
921
+ dependencies = [
922
+ "allocator-api2",
923
+ "equivalent",
924
+ "foldhash",
925
+ ]
926
+
927
+ [[package]]
928
+ name = "hashlink"
929
+ version = "0.10.0"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
932
+ dependencies = [
933
+ "hashbrown 0.15.5",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "heck"
938
+ version = "0.4.1"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
941
+
942
+ [[package]]
943
+ name = "heck"
944
+ version = "0.5.0"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
947
+
948
+ [[package]]
949
+ name = "hkdf"
950
+ version = "0.12.4"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
953
+ dependencies = [
954
+ "hmac",
955
+ ]
956
+
957
+ [[package]]
958
+ name = "hmac"
959
+ version = "0.12.1"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
962
+ dependencies = [
963
+ "digest",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "html-escape"
968
+ version = "0.2.13"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
971
+ dependencies = [
972
+ "utf8-width",
973
+ ]
974
+
975
+ [[package]]
976
+ name = "http"
977
+ version = "0.2.12"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
980
+ dependencies = [
981
+ "bytes",
982
+ "fnv",
983
+ "itoa",
984
+ ]
985
+
986
+ [[package]]
987
+ name = "http-body"
988
+ version = "0.4.6"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
991
+ dependencies = [
992
+ "bytes",
993
+ "http",
994
+ "pin-project-lite",
995
+ ]
996
+
997
+ [[package]]
998
+ name = "httparse"
999
+ version = "1.10.1"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1002
+
1003
+ [[package]]
1004
+ name = "httpdate"
1005
+ version = "1.0.3"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1008
+
1009
+ [[package]]
1010
+ name = "hyper"
1011
+ version = "0.14.32"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
1014
+ dependencies = [
1015
+ "bytes",
1016
+ "futures-channel",
1017
+ "futures-core",
1018
+ "futures-util",
1019
+ "h2",
1020
+ "http",
1021
+ "http-body",
1022
+ "httparse",
1023
+ "httpdate",
1024
+ "itoa",
1025
+ "pin-project-lite",
1026
+ "socket2 0.5.10",
1027
+ "tokio",
1028
+ "tower-service",
1029
+ "tracing",
1030
+ "want",
1031
+ ]
1032
+
1033
+ [[package]]
1034
+ name = "hyper-tls"
1035
+ version = "0.5.0"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
1038
+ dependencies = [
1039
+ "bytes",
1040
+ "hyper",
1041
+ "native-tls",
1042
+ "tokio",
1043
+ "tokio-native-tls",
1044
+ ]
1045
+
1046
+ [[package]]
1047
+ name = "icu_collections"
1048
+ version = "2.0.0"
1049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1050
+ checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
1051
+ dependencies = [
1052
+ "displaydoc",
1053
+ "potential_utf",
1054
+ "yoke",
1055
+ "zerofrom",
1056
+ "zerovec",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "icu_locale_core"
1061
+ version = "2.0.0"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
1064
+ dependencies = [
1065
+ "displaydoc",
1066
+ "litemap",
1067
+ "tinystr",
1068
+ "writeable",
1069
+ "zerovec",
1070
+ ]
1071
+
1072
+ [[package]]
1073
+ name = "icu_normalizer"
1074
+ version = "2.0.0"
1075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
+ checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
1077
+ dependencies = [
1078
+ "displaydoc",
1079
+ "icu_collections",
1080
+ "icu_normalizer_data",
1081
+ "icu_properties",
1082
+ "icu_provider",
1083
+ "smallvec",
1084
+ "zerovec",
1085
+ ]
1086
+
1087
+ [[package]]
1088
+ name = "icu_normalizer_data"
1089
+ version = "2.0.0"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
1092
+
1093
+ [[package]]
1094
+ name = "icu_properties"
1095
+ version = "2.0.1"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
1098
+ dependencies = [
1099
+ "displaydoc",
1100
+ "icu_collections",
1101
+ "icu_locale_core",
1102
+ "icu_properties_data",
1103
+ "icu_provider",
1104
+ "potential_utf",
1105
+ "zerotrie",
1106
+ "zerovec",
1107
+ ]
1108
+
1109
+ [[package]]
1110
+ name = "icu_properties_data"
1111
+ version = "2.0.1"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
1114
+
1115
+ [[package]]
1116
+ name = "icu_provider"
1117
+ version = "2.0.0"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
1120
+ dependencies = [
1121
+ "displaydoc",
1122
+ "icu_locale_core",
1123
+ "stable_deref_trait",
1124
+ "tinystr",
1125
+ "writeable",
1126
+ "yoke",
1127
+ "zerofrom",
1128
+ "zerotrie",
1129
+ "zerovec",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "idna"
1134
+ version = "1.1.0"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1137
+ dependencies = [
1138
+ "idna_adapter",
1139
+ "smallvec",
1140
+ "utf8_iter",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "idna_adapter"
1145
+ version = "1.2.1"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1148
+ dependencies = [
1149
+ "icu_normalizer",
1150
+ "icu_properties",
1151
+ ]
1152
+
1153
+ [[package]]
1154
+ name = "indexmap"
1155
+ version = "2.11.0"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "f2481980430f9f78649238835720ddccc57e52df14ffce1c6f37391d61b563e9"
1158
+ dependencies = [
1159
+ "equivalent",
1160
+ "hashbrown 0.15.5",
1161
+ ]
1162
+
1163
+ [[package]]
1164
+ name = "insta"
1165
+ version = "1.43.1"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "154934ea70c58054b556dd430b99a98c2a7ff5309ac9891597e339b5c28f4371"
1168
+ dependencies = [
1169
+ "console 0.15.11",
1170
+ "once_cell",
1171
+ "similar",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "intrusive-collections"
1176
+ version = "0.9.7"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "189d0897e4cbe8c75efedf3502c18c887b05046e59d28404d4d8e46cbc4d1e86"
1179
+ dependencies = [
1180
+ "memoffset",
1181
+ ]
1182
+
1183
+ [[package]]
1184
+ name = "inventory"
1185
+ version = "0.3.22"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "009ae045c87e7082cb72dab0ccd01ae075dd00141ddc108f43a0ea150a9e7227"
1188
+ dependencies = [
1189
+ "rustversion",
1190
+ ]
1191
+
1192
+ [[package]]
1193
+ name = "io-uring"
1194
+ version = "0.7.10"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b"
1197
+ dependencies = [
1198
+ "bitflags 2.9.3",
1199
+ "cfg-if",
1200
+ "libc",
1201
+ ]
1202
+
1203
+ [[package]]
1204
+ name = "ipnet"
1205
+ version = "2.11.0"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1208
+
1209
+ [[package]]
1210
+ name = "is_terminal_polyfill"
1211
+ version = "1.70.1"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1214
+
1215
+ [[package]]
1216
+ name = "itertools"
1217
+ version = "0.14.0"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1220
+ dependencies = [
1221
+ "either",
1222
+ ]
1223
+
1224
+ [[package]]
1225
+ name = "itoa"
1226
+ version = "1.0.15"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1229
+
1230
+ [[package]]
1231
+ name = "jod-thread"
1232
+ version = "0.1.2"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "8b23360e99b8717f20aaa4598f5a6541efbe30630039fbc7706cf954a87947ae"
1235
+
1236
+ [[package]]
1237
+ name = "js-sys"
1238
+ version = "0.3.91"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
1241
+ dependencies = [
1242
+ "once_cell",
1243
+ "wasm-bindgen",
1244
+ ]
1245
+
1246
+ [[package]]
1247
+ name = "jsonwebtoken"
1248
+ version = "10.3.0"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "0529410abe238729a60b108898784df8984c87f6054c9c4fcacc47e4803c1ce1"
1251
+ dependencies = [
1252
+ "base64 0.22.1",
1253
+ "ed25519-dalek",
1254
+ "getrandom 0.2.16",
1255
+ "hmac",
1256
+ "js-sys",
1257
+ "p256",
1258
+ "p384",
1259
+ "pem",
1260
+ "rand",
1261
+ "rsa",
1262
+ "serde",
1263
+ "serde_json",
1264
+ "sha2",
1265
+ "signature",
1266
+ "simple_asn1",
1267
+ ]
1268
+
1269
+ [[package]]
1270
+ name = "la-arena"
1271
+ version = "0.3.1"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "3752f229dcc5a481d60f385fa479ff46818033d881d2d801aa27dffcfb5e8306"
1274
+
1275
+ [[package]]
1276
+ name = "lazy_static"
1277
+ version = "1.5.0"
1278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1279
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1280
+ dependencies = [
1281
+ "spin",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "libc"
1286
+ version = "0.2.175"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
1289
+
1290
+ [[package]]
1291
+ name = "libm"
1292
+ version = "0.2.16"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1295
+
1296
+ [[package]]
1297
+ name = "line-index"
1298
+ version = "0.1.2"
1299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1300
+ checksum = "3e27e0ed5a392a7f5ba0b3808a2afccff16c64933312c84b57618b49d1209bd2"
1301
+ dependencies = [
1302
+ "nohash-hasher",
1303
+ "text-size",
1304
+ ]
1305
+
1306
+ [[package]]
1307
+ name = "linux-raw-sys"
1308
+ version = "0.9.4"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1311
+
1312
+ [[package]]
1313
+ name = "litemap"
1314
+ version = "0.8.0"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
1317
+
1318
+ [[package]]
1319
+ name = "lock_api"
1320
+ version = "0.4.14"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1323
+ dependencies = [
1324
+ "scopeguard",
1325
+ ]
1326
+
1327
+ [[package]]
1328
+ name = "log"
1329
+ version = "0.4.27"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1332
+
1333
+ [[package]]
1334
+ name = "lsp-server"
1335
+ version = "0.7.9"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "7d6ada348dbc2703cbe7637b2dda05cff84d3da2819c24abcb305dd613e0ba2e"
1338
+ dependencies = [
1339
+ "crossbeam-channel",
1340
+ "log",
1341
+ "serde",
1342
+ "serde_derive",
1343
+ "serde_json",
1344
+ ]
1345
+
1346
+ [[package]]
1347
+ name = "lsp-types"
1348
+ version = "0.95.1"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "8e34d33a8e9b006cd3fc4fe69a921affa097bae4bb65f76271f4644f9a334365"
1351
+ dependencies = [
1352
+ "bitflags 1.3.2",
1353
+ "serde",
1354
+ "serde_json",
1355
+ "serde_repr",
1356
+ "url",
1357
+ ]
1358
+
1359
+ [[package]]
1360
+ name = "memchr"
1361
+ version = "2.7.5"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
1364
+
1365
+ [[package]]
1366
+ name = "memoffset"
1367
+ version = "0.9.1"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1370
+ dependencies = [
1371
+ "autocfg",
1372
+ ]
1373
+
1374
+ [[package]]
1375
+ name = "mime"
1376
+ version = "0.3.17"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1379
+
1380
+ [[package]]
1381
+ name = "minicov"
1382
+ version = "0.3.8"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "4869b6a491569605d66d3952bcdf03df789e5b536e5f0cf7758a7f08a55ae24d"
1385
+ dependencies = [
1386
+ "cc",
1387
+ "walkdir",
1388
+ ]
1389
+
1390
+ [[package]]
1391
+ name = "miniz_oxide"
1392
+ version = "0.8.9"
1393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1394
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1395
+ dependencies = [
1396
+ "adler2",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "mio"
1401
+ version = "1.0.4"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
1404
+ dependencies = [
1405
+ "libc",
1406
+ "wasi 0.11.1+wasi-snapshot-preview1",
1407
+ "windows-sys 0.59.0",
1408
+ ]
1409
+
1410
+ [[package]]
1411
+ name = "native-tls"
1412
+ version = "0.2.14"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
1415
+ dependencies = [
1416
+ "libc",
1417
+ "log",
1418
+ "openssl",
1419
+ "openssl-probe",
1420
+ "openssl-sys",
1421
+ "schannel",
1422
+ "security-framework",
1423
+ "security-framework-sys",
1424
+ "tempfile",
1425
+ ]
1426
+
1427
+ [[package]]
1428
+ name = "nohash-hasher"
1429
+ version = "0.2.0"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
1432
+
1433
+ [[package]]
1434
+ name = "normalize-line-endings"
1435
+ version = "0.3.0"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
1438
+
1439
+ [[package]]
1440
+ name = "nu-ansi-term"
1441
+ version = "0.50.3"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1444
+ dependencies = [
1445
+ "windows-sys 0.61.2",
1446
+ ]
1447
+
1448
+ [[package]]
1449
+ name = "num-bigint"
1450
+ version = "0.4.6"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1453
+ dependencies = [
1454
+ "num-integer",
1455
+ "num-traits",
1456
+ ]
1457
+
1458
+ [[package]]
1459
+ name = "num-bigint-dig"
1460
+ version = "0.8.6"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
1463
+ dependencies = [
1464
+ "lazy_static",
1465
+ "libm",
1466
+ "num-integer",
1467
+ "num-iter",
1468
+ "num-traits",
1469
+ "rand",
1470
+ "smallvec",
1471
+ "zeroize",
1472
+ ]
1473
+
1474
+ [[package]]
1475
+ name = "num-conv"
1476
+ version = "0.2.0"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
1479
+
1480
+ [[package]]
1481
+ name = "num-integer"
1482
+ version = "0.1.46"
1483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1484
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1485
+ dependencies = [
1486
+ "num-traits",
1487
+ ]
1488
+
1489
+ [[package]]
1490
+ name = "num-iter"
1491
+ version = "0.1.45"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1494
+ dependencies = [
1495
+ "autocfg",
1496
+ "num-integer",
1497
+ "num-traits",
1498
+ ]
1499
+
1500
+ [[package]]
1501
+ name = "num-traits"
1502
+ version = "0.2.19"
1503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1504
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1505
+ dependencies = [
1506
+ "autocfg",
1507
+ "libm",
1508
+ ]
1509
+
1510
+ [[package]]
1511
+ name = "num_threads"
1512
+ version = "0.1.7"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
1515
+ dependencies = [
1516
+ "libc",
1517
+ ]
1518
+
1519
+ [[package]]
1520
+ name = "object"
1521
+ version = "0.36.7"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1524
+ dependencies = [
1525
+ "memchr",
1526
+ ]
1527
+
1528
+ [[package]]
1529
+ name = "once_cell"
1530
+ version = "1.21.3"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1533
+
1534
+ [[package]]
1535
+ name = "once_cell_polyfill"
1536
+ version = "1.70.1"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
1539
+
1540
+ [[package]]
1541
+ name = "oorandom"
1542
+ version = "11.1.5"
1543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1544
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1545
+
1546
+ [[package]]
1547
+ name = "openssl"
1548
+ version = "0.10.73"
1549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1550
+ checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8"
1551
+ dependencies = [
1552
+ "bitflags 2.9.3",
1553
+ "cfg-if",
1554
+ "foreign-types",
1555
+ "libc",
1556
+ "once_cell",
1557
+ "openssl-macros",
1558
+ "openssl-sys",
1559
+ ]
1560
+
1561
+ [[package]]
1562
+ name = "openssl-macros"
1563
+ version = "0.1.1"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1566
+ dependencies = [
1567
+ "proc-macro2",
1568
+ "quote",
1569
+ "syn 2.0.106",
1570
+ ]
1571
+
1572
+ [[package]]
1573
+ name = "openssl-probe"
1574
+ version = "0.1.6"
1575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1576
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1577
+
1578
+ [[package]]
1579
+ name = "openssl-src"
1580
+ version = "300.5.2+3.5.2"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "d270b79e2926f5150189d475bc7e9d2c69f9c4697b185fa917d5a32b792d21b4"
1583
+ dependencies = [
1584
+ "cc",
1585
+ ]
1586
+
1587
+ [[package]]
1588
+ name = "openssl-sys"
1589
+ version = "0.9.109"
1590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1591
+ checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571"
1592
+ dependencies = [
1593
+ "cc",
1594
+ "libc",
1595
+ "openssl-src",
1596
+ "pkg-config",
1597
+ "vcpkg",
1598
+ ]
1599
+
1600
+ [[package]]
1601
+ name = "os_pipe"
1602
+ version = "1.2.2"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "db335f4760b14ead6290116f2427bf33a14d4f0617d49f78a246de10c1831224"
1605
+ dependencies = [
1606
+ "libc",
1607
+ "windows-sys 0.59.0",
1608
+ ]
1609
+
1610
+ [[package]]
1611
+ name = "p256"
1612
+ version = "0.13.2"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
1615
+ dependencies = [
1616
+ "ecdsa",
1617
+ "elliptic-curve",
1618
+ "primeorder",
1619
+ "sha2",
1620
+ ]
1621
+
1622
+ [[package]]
1623
+ name = "p384"
1624
+ version = "0.13.1"
1625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1626
+ checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
1627
+ dependencies = [
1628
+ "ecdsa",
1629
+ "elliptic-curve",
1630
+ "primeorder",
1631
+ "sha2",
1632
+ ]
1633
+
1634
+ [[package]]
1635
+ name = "papergrid"
1636
+ version = "0.13.0"
1637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1638
+ checksum = "d2b0f8def1f117e13c895f3eda65a7b5650688da29d6ad04635f61bc7b92eebd"
1639
+ dependencies = [
1640
+ "bytecount",
1641
+ "fnv",
1642
+ "unicode-width 0.2.1",
1643
+ ]
1644
+
1645
+ [[package]]
1646
+ name = "parking_lot"
1647
+ version = "0.12.5"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1650
+ dependencies = [
1651
+ "lock_api",
1652
+ "parking_lot_core",
1653
+ ]
1654
+
1655
+ [[package]]
1656
+ name = "parking_lot_core"
1657
+ version = "0.9.12"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1660
+ dependencies = [
1661
+ "cfg-if",
1662
+ "libc",
1663
+ "redox_syscall",
1664
+ "smallvec",
1665
+ "windows-link 0.2.1",
1666
+ ]
1667
+
1668
+ [[package]]
1669
+ name = "pem"
1670
+ version = "3.0.5"
1671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1672
+ checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
1673
+ dependencies = [
1674
+ "base64 0.22.1",
1675
+ "serde",
1676
+ ]
1677
+
1678
+ [[package]]
1679
+ name = "pem-rfc7468"
1680
+ version = "0.7.0"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
1683
+ dependencies = [
1684
+ "base64ct",
1685
+ ]
1686
+
1687
+ [[package]]
1688
+ name = "percent-encoding"
1689
+ version = "2.3.2"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1692
+
1693
+ [[package]]
1694
+ name = "pin-project-lite"
1695
+ version = "0.2.16"
1696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1697
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1698
+
1699
+ [[package]]
1700
+ name = "pin-utils"
1701
+ version = "0.1.0"
1702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1703
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1704
+
1705
+ [[package]]
1706
+ name = "pkcs1"
1707
+ version = "0.7.5"
1708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1709
+ checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
1710
+ dependencies = [
1711
+ "der",
1712
+ "pkcs8",
1713
+ "spki",
1714
+ ]
1715
+
1716
+ [[package]]
1717
+ name = "pkcs8"
1718
+ version = "0.10.2"
1719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1720
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
1721
+ dependencies = [
1722
+ "der",
1723
+ "spki",
1724
+ ]
1725
+
1726
+ [[package]]
1727
+ name = "pkg-config"
1728
+ version = "0.3.32"
1729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1730
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1731
+
1732
+ [[package]]
1733
+ name = "portable-atomic"
1734
+ version = "1.13.1"
1735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1736
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1737
+
1738
+ [[package]]
1739
+ name = "potential_utf"
1740
+ version = "0.1.3"
1741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1742
+ checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a"
1743
+ dependencies = [
1744
+ "zerovec",
1745
+ ]
1746
+
1747
+ [[package]]
1748
+ name = "powerfmt"
1749
+ version = "0.2.0"
1750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1751
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1752
+
1753
+ [[package]]
1754
+ name = "ppv-lite86"
1755
+ version = "0.2.21"
1756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1757
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1758
+ dependencies = [
1759
+ "zerocopy",
1760
+ ]
1761
+
1762
+ [[package]]
1763
+ name = "primeorder"
1764
+ version = "0.13.6"
1765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1766
+ checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
1767
+ dependencies = [
1768
+ "elliptic-curve",
1769
+ ]
1770
+
1771
+ [[package]]
1772
+ name = "proc-macro-error-attr2"
1773
+ version = "2.0.0"
1774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1775
+ checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
1776
+ dependencies = [
1777
+ "proc-macro2",
1778
+ "quote",
1779
+ ]
1780
+
1781
+ [[package]]
1782
+ name = "proc-macro-error2"
1783
+ version = "2.0.1"
1784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1785
+ checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
1786
+ dependencies = [
1787
+ "proc-macro-error-attr2",
1788
+ "proc-macro2",
1789
+ "quote",
1790
+ "syn 2.0.106",
1791
+ ]
1792
+
1793
+ [[package]]
1794
+ name = "proc-macro2"
1795
+ version = "1.0.101"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
1798
+ dependencies = [
1799
+ "unicode-ident",
1800
+ ]
1801
+
1802
+ [[package]]
1803
+ name = "quote"
1804
+ version = "1.0.40"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1807
+ dependencies = [
1808
+ "proc-macro2",
1809
+ ]
1810
+
1811
+ [[package]]
1812
+ name = "r-efi"
1813
+ version = "5.3.0"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1816
+
1817
+ [[package]]
1818
+ name = "rand"
1819
+ version = "0.8.5"
1820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1821
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1822
+ dependencies = [
1823
+ "libc",
1824
+ "rand_chacha",
1825
+ "rand_core",
1826
+ ]
1827
+
1828
+ [[package]]
1829
+ name = "rand_chacha"
1830
+ version = "0.3.1"
1831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1832
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1833
+ dependencies = [
1834
+ "ppv-lite86",
1835
+ "rand_core",
1836
+ ]
1837
+
1838
+ [[package]]
1839
+ name = "rand_core"
1840
+ version = "0.6.4"
1841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1842
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1843
+ dependencies = [
1844
+ "getrandom 0.2.16",
1845
+ ]
1846
+
1847
+ [[package]]
1848
+ name = "rayon"
1849
+ version = "1.11.0"
1850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1851
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1852
+ dependencies = [
1853
+ "either",
1854
+ "rayon-core",
1855
+ ]
1856
+
1857
+ [[package]]
1858
+ name = "rayon-core"
1859
+ version = "1.13.0"
1860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1861
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1862
+ dependencies = [
1863
+ "crossbeam-deque",
1864
+ "crossbeam-utils",
1865
+ ]
1866
+
1867
+ [[package]]
1868
+ name = "redox_syscall"
1869
+ version = "0.5.18"
1870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1871
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1872
+ dependencies = [
1873
+ "bitflags 2.9.3",
1874
+ ]
1875
+
1876
+ [[package]]
1877
+ name = "regex"
1878
+ version = "1.11.2"
1879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1880
+ checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912"
1881
+ dependencies = [
1882
+ "aho-corasick",
1883
+ "memchr",
1884
+ "regex-automata",
1885
+ "regex-syntax",
1886
+ ]
1887
+
1888
+ [[package]]
1889
+ name = "regex-automata"
1890
+ version = "0.4.10"
1891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1892
+ checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6"
1893
+ dependencies = [
1894
+ "aho-corasick",
1895
+ "memchr",
1896
+ "regex-syntax",
1897
+ ]
1898
+
1899
+ [[package]]
1900
+ name = "regex-syntax"
1901
+ version = "0.8.6"
1902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1903
+ checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
1904
+
1905
+ [[package]]
1906
+ name = "reqwest"
1907
+ version = "0.11.27"
1908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1909
+ checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
1910
+ dependencies = [
1911
+ "base64 0.21.7",
1912
+ "bytes",
1913
+ "encoding_rs",
1914
+ "futures-core",
1915
+ "futures-util",
1916
+ "h2",
1917
+ "http",
1918
+ "http-body",
1919
+ "hyper",
1920
+ "hyper-tls",
1921
+ "ipnet",
1922
+ "js-sys",
1923
+ "log",
1924
+ "mime",
1925
+ "native-tls",
1926
+ "once_cell",
1927
+ "percent-encoding",
1928
+ "pin-project-lite",
1929
+ "rustls-pemfile",
1930
+ "serde",
1931
+ "serde_json",
1932
+ "serde_urlencoded",
1933
+ "sync_wrapper",
1934
+ "system-configuration",
1935
+ "tokio",
1936
+ "tokio-native-tls",
1937
+ "tower-service",
1938
+ "url",
1939
+ "wasm-bindgen",
1940
+ "wasm-bindgen-futures",
1941
+ "web-sys",
1942
+ "winreg",
1943
+ ]
1944
+
1945
+ [[package]]
1946
+ name = "rfc6979"
1947
+ version = "0.4.0"
1948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1949
+ checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
1950
+ dependencies = [
1951
+ "hmac",
1952
+ "subtle",
1953
+ ]
1954
+
1955
+ [[package]]
1956
+ name = "rowan"
1957
+ version = "0.15.17"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "d4f1e4a001f863f41ea8d0e6a0c34b356d5b733db50dadab3efef640bafb779b"
1960
+ dependencies = [
1961
+ "countme",
1962
+ "hashbrown 0.14.5",
1963
+ "memoffset",
1964
+ "rustc-hash 1.1.0",
1965
+ "text-size",
1966
+ ]
1967
+
1968
+ [[package]]
1969
+ name = "rsa"
1970
+ version = "0.9.10"
1971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1972
+ checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
1973
+ dependencies = [
1974
+ "const-oid",
1975
+ "digest",
1976
+ "num-bigint-dig",
1977
+ "num-integer",
1978
+ "num-traits",
1979
+ "pkcs1",
1980
+ "pkcs8",
1981
+ "rand_core",
1982
+ "signature",
1983
+ "spki",
1984
+ "subtle",
1985
+ "zeroize",
1986
+ ]
1987
+
1988
+ [[package]]
1989
+ name = "rustc-demangle"
1990
+ version = "0.1.26"
1991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1992
+ checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
1993
+
1994
+ [[package]]
1995
+ name = "rustc-hash"
1996
+ version = "1.1.0"
1997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1998
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1999
+
2000
+ [[package]]
2001
+ name = "rustc-hash"
2002
+ version = "2.1.1"
2003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2004
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2005
+
2006
+ [[package]]
2007
+ name = "rustc_version"
2008
+ version = "0.4.1"
2009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2010
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2011
+ dependencies = [
2012
+ "semver",
2013
+ ]
2014
+
2015
+ [[package]]
2016
+ name = "rustix"
2017
+ version = "1.0.8"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
2020
+ dependencies = [
2021
+ "bitflags 2.9.3",
2022
+ "errno",
2023
+ "libc",
2024
+ "linux-raw-sys",
2025
+ "windows-sys 0.60.2",
2026
+ ]
2027
+
2028
+ [[package]]
2029
+ name = "rustls-pemfile"
2030
+ version = "1.0.4"
2031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2032
+ checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
2033
+ dependencies = [
2034
+ "base64 0.21.7",
2035
+ ]
2036
+
2037
+ [[package]]
2038
+ name = "rustversion"
2039
+ version = "1.0.22"
2040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2041
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2042
+
2043
+ [[package]]
2044
+ name = "ryu"
2045
+ version = "1.0.20"
2046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2047
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2048
+
2049
+ [[package]]
2050
+ name = "salsa"
2051
+ version = "0.26.0"
2052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2053
+ checksum = "f77debccd43ba198e9cee23efd7f10330ff445e46a98a2b107fed9094a1ee676"
2054
+ dependencies = [
2055
+ "boxcar",
2056
+ "crossbeam-queue",
2057
+ "crossbeam-utils",
2058
+ "hashbrown 0.15.5",
2059
+ "hashlink",
2060
+ "indexmap",
2061
+ "intrusive-collections",
2062
+ "inventory",
2063
+ "parking_lot",
2064
+ "portable-atomic",
2065
+ "rayon",
2066
+ "rustc-hash 2.1.1",
2067
+ "salsa-macro-rules",
2068
+ "salsa-macros",
2069
+ "smallvec",
2070
+ "thin-vec",
2071
+ "tracing",
2072
+ ]
2073
+
2074
+ [[package]]
2075
+ name = "salsa-macro-rules"
2076
+ version = "0.26.0"
2077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2078
+ checksum = "ea07adbf42d91cc076b7daf3b38bc8168c19eb362c665964118a89bc55ef19a5"
2079
+
2080
+ [[package]]
2081
+ name = "salsa-macros"
2082
+ version = "0.26.0"
2083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2084
+ checksum = "d16d4d8b66451b9c75ddf740b7fc8399bc7b8ba33e854a5d7526d18708f67b05"
2085
+ dependencies = [
2086
+ "proc-macro2",
2087
+ "quote",
2088
+ "syn 2.0.106",
2089
+ "synstructure",
2090
+ ]
2091
+
2092
+ [[package]]
2093
+ name = "same-file"
2094
+ version = "1.0.6"
2095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2096
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2097
+ dependencies = [
2098
+ "winapi-util",
2099
+ ]
2100
+
2101
+ [[package]]
2102
+ name = "schannel"
2103
+ version = "0.1.27"
2104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2105
+ checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
2106
+ dependencies = [
2107
+ "windows-sys 0.59.0",
2108
+ ]
2109
+
2110
+ [[package]]
2111
+ name = "scopeguard"
2112
+ version = "1.2.0"
2113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2114
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2115
+
2116
+ [[package]]
2117
+ name = "sec1"
2118
+ version = "0.7.3"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
2121
+ dependencies = [
2122
+ "base16ct",
2123
+ "der",
2124
+ "generic-array",
2125
+ "pkcs8",
2126
+ "subtle",
2127
+ "zeroize",
2128
+ ]
2129
+
2130
+ [[package]]
2131
+ name = "security-framework"
2132
+ version = "2.11.1"
2133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2134
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2135
+ dependencies = [
2136
+ "bitflags 2.9.3",
2137
+ "core-foundation",
2138
+ "core-foundation-sys",
2139
+ "libc",
2140
+ "security-framework-sys",
2141
+ ]
2142
+
2143
+ [[package]]
2144
+ name = "security-framework-sys"
2145
+ version = "2.14.0"
2146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2147
+ checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
2148
+ dependencies = [
2149
+ "core-foundation-sys",
2150
+ "libc",
2151
+ ]
2152
+
2153
+ [[package]]
2154
+ name = "semver"
2155
+ version = "1.0.27"
2156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2157
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2158
+
2159
+ [[package]]
2160
+ name = "serde"
2161
+ version = "1.0.228"
2162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2163
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2164
+ dependencies = [
2165
+ "serde_core",
2166
+ "serde_derive",
2167
+ ]
2168
+
2169
+ [[package]]
2170
+ name = "serde-wasm-bindgen"
2171
+ version = "0.6.5"
2172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2173
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
2174
+ dependencies = [
2175
+ "js-sys",
2176
+ "serde",
2177
+ "wasm-bindgen",
2178
+ ]
2179
+
2180
+ [[package]]
2181
+ name = "serde_core"
2182
+ version = "1.0.228"
2183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2184
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2185
+ dependencies = [
2186
+ "serde_derive",
2187
+ ]
2188
+
2189
+ [[package]]
2190
+ name = "serde_derive"
2191
+ version = "1.0.228"
2192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2193
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2194
+ dependencies = [
2195
+ "proc-macro2",
2196
+ "quote",
2197
+ "syn 2.0.106",
2198
+ ]
2199
+
2200
+ [[package]]
2201
+ name = "serde_json"
2202
+ version = "1.0.143"
2203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2204
+ checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a"
2205
+ dependencies = [
2206
+ "itoa",
2207
+ "memchr",
2208
+ "ryu",
2209
+ "serde",
2210
+ ]
2211
+
2212
+ [[package]]
2213
+ name = "serde_plain"
2214
+ version = "1.0.2"
2215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2216
+ checksum = "9ce1fc6db65a611022b23a0dec6975d63fb80a302cb3388835ff02c097258d50"
2217
+ dependencies = [
2218
+ "serde",
2219
+ ]
2220
+
2221
+ [[package]]
2222
+ name = "serde_repr"
2223
+ version = "0.1.20"
2224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2225
+ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
2226
+ dependencies = [
2227
+ "proc-macro2",
2228
+ "quote",
2229
+ "syn 2.0.106",
2230
+ ]
2231
+
2232
+ [[package]]
2233
+ name = "serde_urlencoded"
2234
+ version = "0.7.1"
2235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2236
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2237
+ dependencies = [
2238
+ "form_urlencoded",
2239
+ "itoa",
2240
+ "ryu",
2241
+ "serde",
2242
+ ]
2243
+
2244
+ [[package]]
2245
+ name = "sha2"
2246
+ version = "0.10.9"
2247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2248
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2249
+ dependencies = [
2250
+ "cfg-if",
2251
+ "cpufeatures",
2252
+ "digest",
2253
+ ]
2254
+
2255
+ [[package]]
2256
+ name = "shlex"
2257
+ version = "1.3.0"
2258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2259
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2260
+
2261
+ [[package]]
2262
+ name = "signature"
2263
+ version = "2.2.0"
2264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2265
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
2266
+ dependencies = [
2267
+ "digest",
2268
+ "rand_core",
2269
+ ]
2270
+
2271
+ [[package]]
2272
+ name = "similar"
2273
+ version = "2.7.0"
2274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2275
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
2276
+
2277
+ [[package]]
2278
+ name = "simple_asn1"
2279
+ version = "0.6.3"
2280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2281
+ checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb"
2282
+ dependencies = [
2283
+ "num-bigint",
2284
+ "num-traits",
2285
+ "thiserror",
2286
+ "time",
2287
+ ]
2288
+
2289
+ [[package]]
2290
+ name = "simplelog"
2291
+ version = "0.12.2"
2292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2293
+ checksum = "16257adbfaef1ee58b1363bdc0664c9b8e1e30aed86049635fb5f147d065a9c0"
2294
+ dependencies = [
2295
+ "log",
2296
+ "termcolor",
2297
+ "time",
2298
+ ]
2299
+
2300
+ [[package]]
2301
+ name = "slab"
2302
+ version = "0.4.11"
2303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2304
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
2305
+
2306
+ [[package]]
2307
+ name = "smallvec"
2308
+ version = "1.15.1"
2309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2310
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2311
+
2312
+ [[package]]
2313
+ name = "smol_str"
2314
+ version = "0.3.2"
2315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2316
+ checksum = "9676b89cd56310a87b93dec47b11af744f34d5fc9f367b829474eec0a891350d"
2317
+ dependencies = [
2318
+ "borsh",
2319
+ "serde",
2320
+ ]
2321
+
2322
+ [[package]]
2323
+ name = "snapbox"
2324
+ version = "0.6.21"
2325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2326
+ checksum = "96dcfc4581e3355d70ac2ee14cfdf81dce3d85c85f1ed9e2c1d3013f53b3436b"
2327
+ dependencies = [
2328
+ "anstream",
2329
+ "anstyle",
2330
+ "anstyle-svg",
2331
+ "libc",
2332
+ "normalize-line-endings",
2333
+ "os_pipe",
2334
+ "serde_json",
2335
+ "similar",
2336
+ "snapbox-macros",
2337
+ "wait-timeout",
2338
+ "windows-sys 0.59.0",
2339
+ ]
2340
+
2341
+ [[package]]
2342
+ name = "snapbox-macros"
2343
+ version = "0.3.10"
2344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2345
+ checksum = "16569f53ca23a41bb6f62e0a5084aa1661f4814a67fa33696a79073e03a664af"
2346
+ dependencies = [
2347
+ "anstream",
2348
+ ]
2349
+
2350
+ [[package]]
2351
+ name = "socket2"
2352
+ version = "0.5.10"
2353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2354
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
2355
+ dependencies = [
2356
+ "libc",
2357
+ "windows-sys 0.52.0",
2358
+ ]
2359
+
2360
+ [[package]]
2361
+ name = "socket2"
2362
+ version = "0.6.0"
2363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2364
+ checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
2365
+ dependencies = [
2366
+ "libc",
2367
+ "windows-sys 0.59.0",
2368
+ ]
2369
+
2370
+ [[package]]
2371
+ name = "spin"
2372
+ version = "0.9.8"
2373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2374
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2375
+
2376
+ [[package]]
2377
+ name = "spki"
2378
+ version = "0.7.3"
2379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2380
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
2381
+ dependencies = [
2382
+ "base64ct",
2383
+ "der",
2384
+ ]
2385
+
2386
+ [[package]]
2387
+ name = "squawk"
2388
+ version = "2.45.0"
2389
+ dependencies = [
2390
+ "annotate-snippets",
2391
+ "anyhow",
2392
+ "base64 0.12.3",
2393
+ "clap",
2394
+ "console 0.11.3",
2395
+ "enum-iterator",
2396
+ "glob",
2397
+ "insta",
2398
+ "line-index",
2399
+ "log",
2400
+ "lsp-server",
2401
+ "lsp-types",
2402
+ "serde",
2403
+ "serde_json",
2404
+ "simplelog",
2405
+ "snapbox",
2406
+ "squawk-github",
2407
+ "squawk-lexer",
2408
+ "squawk-linter",
2409
+ "squawk-server",
2410
+ "squawk-syntax",
2411
+ "squawk-thread",
2412
+ "tempfile",
2413
+ "toml",
2414
+ ]
2415
+
2416
+ [[package]]
2417
+ name = "squawk-fmt"
2418
+ version = "2.45.0"
2419
+ dependencies = [
2420
+ "insta",
2421
+ "itertools",
2422
+ "squawk-syntax",
2423
+ "tiny_pretty",
2424
+ ]
2425
+
2426
+ [[package]]
2427
+ name = "squawk-github"
2428
+ version = "2.45.0"
2429
+ dependencies = [
2430
+ "jsonwebtoken",
2431
+ "log",
2432
+ "reqwest",
2433
+ "serde",
2434
+ "serde_json",
2435
+ ]
2436
+
2437
+ [[package]]
2438
+ name = "squawk-ide"
2439
+ version = "2.45.0"
2440
+ dependencies = [
2441
+ "annotate-snippets",
2442
+ "etcetera",
2443
+ "insta",
2444
+ "itertools",
2445
+ "la-arena",
2446
+ "line-index",
2447
+ "log",
2448
+ "rowan",
2449
+ "rustc-hash 2.1.1",
2450
+ "salsa",
2451
+ "smallvec",
2452
+ "smol_str",
2453
+ "squawk-linter",
2454
+ "squawk-syntax",
2455
+ "tabled",
2456
+ "url",
2457
+ ]
2458
+
2459
+ [[package]]
2460
+ name = "squawk-lexer"
2461
+ version = "2.45.0"
2462
+ dependencies = [
2463
+ "insta",
2464
+ ]
2465
+
2466
+ [[package]]
2467
+ name = "squawk-linter"
2468
+ version = "2.45.0"
2469
+ dependencies = [
2470
+ "annotate-snippets",
2471
+ "enum-iterator",
2472
+ "insta",
2473
+ "line-index",
2474
+ "rowan",
2475
+ "rustc-hash 2.1.1",
2476
+ "serde",
2477
+ "serde_plain",
2478
+ "squawk-syntax",
2479
+ ]
2480
+
2481
+ [[package]]
2482
+ name = "squawk-parser"
2483
+ version = "2.45.0"
2484
+ dependencies = [
2485
+ "annotate-snippets",
2486
+ "camino",
2487
+ "dir-test",
2488
+ "drop_bomb",
2489
+ "insta",
2490
+ "squawk-lexer",
2491
+ "xshell",
2492
+ ]
2493
+
2494
+ [[package]]
2495
+ name = "squawk-server"
2496
+ version = "2.45.0"
2497
+ dependencies = [
2498
+ "anyhow",
2499
+ "crossbeam-channel",
2500
+ "etcetera",
2501
+ "insta",
2502
+ "line-index",
2503
+ "log",
2504
+ "lsp-server",
2505
+ "lsp-types",
2506
+ "rowan",
2507
+ "rustc-hash 2.1.1",
2508
+ "salsa",
2509
+ "serde",
2510
+ "serde_json",
2511
+ "simplelog",
2512
+ "squawk-ide",
2513
+ "squawk-lexer",
2514
+ "squawk-linter",
2515
+ "squawk-syntax",
2516
+ "squawk-thread",
2517
+ "tracing",
2518
+ ]
2519
+
2520
+ [[package]]
2521
+ name = "squawk-syntax"
2522
+ version = "2.45.0"
2523
+ dependencies = [
2524
+ "annotate-snippets",
2525
+ "camino",
2526
+ "dir-test",
2527
+ "insta",
2528
+ "rowan",
2529
+ "smol_str",
2530
+ "squawk-parser",
2531
+ ]
2532
+
2533
+ [[package]]
2534
+ name = "squawk-thread"
2535
+ version = "2.45.0"
2536
+ dependencies = [
2537
+ "crossbeam-channel",
2538
+ "crossbeam-utils",
2539
+ "jod-thread",
2540
+ "libc",
2541
+ "salsa",
2542
+ "tracing",
2543
+ ]
2544
+
2545
+ [[package]]
2546
+ name = "squawk-wasm"
2547
+ version = "2.45.0"
2548
+ dependencies = [
2549
+ "console_error_panic_hook",
2550
+ "console_log",
2551
+ "line-index",
2552
+ "log",
2553
+ "rowan",
2554
+ "salsa",
2555
+ "serde",
2556
+ "serde-wasm-bindgen",
2557
+ "squawk-ide",
2558
+ "squawk-lexer",
2559
+ "squawk-linter",
2560
+ "squawk-syntax",
2561
+ "wasm-bindgen",
2562
+ "wasm-bindgen-test",
2563
+ "web-sys",
2564
+ ]
2565
+
2566
+ [[package]]
2567
+ name = "stable_deref_trait"
2568
+ version = "1.2.0"
2569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2570
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2571
+
2572
+ [[package]]
2573
+ name = "strsim"
2574
+ version = "0.11.1"
2575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2576
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2577
+
2578
+ [[package]]
2579
+ name = "subtle"
2580
+ version = "2.6.1"
2581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2582
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2583
+
2584
+ [[package]]
2585
+ name = "syn"
2586
+ version = "1.0.109"
2587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2588
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2589
+ dependencies = [
2590
+ "proc-macro2",
2591
+ "quote",
2592
+ "unicode-ident",
2593
+ ]
2594
+
2595
+ [[package]]
2596
+ name = "syn"
2597
+ version = "2.0.106"
2598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2599
+ checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
2600
+ dependencies = [
2601
+ "proc-macro2",
2602
+ "quote",
2603
+ "unicode-ident",
2604
+ ]
2605
+
2606
+ [[package]]
2607
+ name = "sync_wrapper"
2608
+ version = "0.1.2"
2609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2610
+ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
2611
+
2612
+ [[package]]
2613
+ name = "synstructure"
2614
+ version = "0.13.2"
2615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2616
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2617
+ dependencies = [
2618
+ "proc-macro2",
2619
+ "quote",
2620
+ "syn 2.0.106",
2621
+ ]
2622
+
2623
+ [[package]]
2624
+ name = "system-configuration"
2625
+ version = "0.5.1"
2626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2627
+ checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
2628
+ dependencies = [
2629
+ "bitflags 1.3.2",
2630
+ "core-foundation",
2631
+ "system-configuration-sys",
2632
+ ]
2633
+
2634
+ [[package]]
2635
+ name = "system-configuration-sys"
2636
+ version = "0.5.0"
2637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2638
+ checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
2639
+ dependencies = [
2640
+ "core-foundation-sys",
2641
+ "libc",
2642
+ ]
2643
+
2644
+ [[package]]
2645
+ name = "tabled"
2646
+ version = "0.17.0"
2647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2648
+ checksum = "c6709222f3973137427ce50559cd564dc187a95b9cfe01613d2f4e93610e510a"
2649
+ dependencies = [
2650
+ "papergrid",
2651
+ "tabled_derive",
2652
+ ]
2653
+
2654
+ [[package]]
2655
+ name = "tabled_derive"
2656
+ version = "0.9.0"
2657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2658
+ checksum = "931be476627d4c54070a1f3a9739ccbfec9b36b39815106a20cce2243bbcefe1"
2659
+ dependencies = [
2660
+ "heck 0.4.1",
2661
+ "proc-macro-error2",
2662
+ "proc-macro2",
2663
+ "quote",
2664
+ "syn 1.0.109",
2665
+ ]
2666
+
2667
+ [[package]]
2668
+ name = "tempfile"
2669
+ version = "3.21.0"
2670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2671
+ checksum = "15b61f8f20e3a6f7e0649d825294eaf317edce30f82cf6026e7e4cb9222a7d1e"
2672
+ dependencies = [
2673
+ "fastrand",
2674
+ "getrandom 0.3.3",
2675
+ "once_cell",
2676
+ "rustix",
2677
+ "windows-sys 0.60.2",
2678
+ ]
2679
+
2680
+ [[package]]
2681
+ name = "termcolor"
2682
+ version = "1.4.1"
2683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2684
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
2685
+ dependencies = [
2686
+ "winapi-util",
2687
+ ]
2688
+
2689
+ [[package]]
2690
+ name = "terminal_size"
2691
+ version = "0.1.17"
2692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2693
+ checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
2694
+ dependencies = [
2695
+ "libc",
2696
+ "winapi",
2697
+ ]
2698
+
2699
+ [[package]]
2700
+ name = "termios"
2701
+ version = "0.3.3"
2702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2703
+ checksum = "411c5bf740737c7918b8b1fe232dca4dc9f8e754b8ad5e20966814001ed0ac6b"
2704
+ dependencies = [
2705
+ "libc",
2706
+ ]
2707
+
2708
+ [[package]]
2709
+ name = "text-size"
2710
+ version = "1.1.1"
2711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2712
+ checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
2713
+
2714
+ [[package]]
2715
+ name = "thin-vec"
2716
+ version = "0.2.14"
2717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2718
+ checksum = "144f754d318415ac792f9d69fc87abbbfc043ce2ef041c60f16ad828f638717d"
2719
+
2720
+ [[package]]
2721
+ name = "thiserror"
2722
+ version = "2.0.16"
2723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2724
+ checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0"
2725
+ dependencies = [
2726
+ "thiserror-impl",
2727
+ ]
2728
+
2729
+ [[package]]
2730
+ name = "thiserror-impl"
2731
+ version = "2.0.16"
2732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2733
+ checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960"
2734
+ dependencies = [
2735
+ "proc-macro2",
2736
+ "quote",
2737
+ "syn 2.0.106",
2738
+ ]
2739
+
2740
+ [[package]]
2741
+ name = "time"
2742
+ version = "0.3.47"
2743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2744
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2745
+ dependencies = [
2746
+ "deranged",
2747
+ "itoa",
2748
+ "libc",
2749
+ "num-conv",
2750
+ "num_threads",
2751
+ "powerfmt",
2752
+ "serde_core",
2753
+ "time-core",
2754
+ "time-macros",
2755
+ ]
2756
+
2757
+ [[package]]
2758
+ name = "time-core"
2759
+ version = "0.1.8"
2760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2761
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2762
+
2763
+ [[package]]
2764
+ name = "time-macros"
2765
+ version = "0.2.27"
2766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2767
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
2768
+ dependencies = [
2769
+ "num-conv",
2770
+ "time-core",
2771
+ ]
2772
+
2773
+ [[package]]
2774
+ name = "tiny_pretty"
2775
+ version = "0.2.1"
2776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2777
+ checksum = "650d82e943da333637be9f1567d33d605e76810a26464edfd7ae74f7ef181e95"
2778
+
2779
+ [[package]]
2780
+ name = "tinystr"
2781
+ version = "0.8.1"
2782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2783
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
2784
+ dependencies = [
2785
+ "displaydoc",
2786
+ "zerovec",
2787
+ ]
2788
+
2789
+ [[package]]
2790
+ name = "tokio"
2791
+ version = "1.47.1"
2792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2793
+ checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038"
2794
+ dependencies = [
2795
+ "backtrace",
2796
+ "bytes",
2797
+ "io-uring",
2798
+ "libc",
2799
+ "mio",
2800
+ "pin-project-lite",
2801
+ "slab",
2802
+ "socket2 0.6.0",
2803
+ "windows-sys 0.59.0",
2804
+ ]
2805
+
2806
+ [[package]]
2807
+ name = "tokio-native-tls"
2808
+ version = "0.3.1"
2809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2810
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2811
+ dependencies = [
2812
+ "native-tls",
2813
+ "tokio",
2814
+ ]
2815
+
2816
+ [[package]]
2817
+ name = "tokio-util"
2818
+ version = "0.7.16"
2819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2820
+ checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
2821
+ dependencies = [
2822
+ "bytes",
2823
+ "futures-core",
2824
+ "futures-sink",
2825
+ "pin-project-lite",
2826
+ "tokio",
2827
+ ]
2828
+
2829
+ [[package]]
2830
+ name = "toml"
2831
+ version = "0.5.11"
2832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2833
+ checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
2834
+ dependencies = [
2835
+ "serde",
2836
+ ]
2837
+
2838
+ [[package]]
2839
+ name = "tower-service"
2840
+ version = "0.3.3"
2841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2842
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2843
+
2844
+ [[package]]
2845
+ name = "tracing"
2846
+ version = "0.1.41"
2847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2848
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
2849
+ dependencies = [
2850
+ "pin-project-lite",
2851
+ "tracing-attributes",
2852
+ "tracing-core",
2853
+ ]
2854
+
2855
+ [[package]]
2856
+ name = "tracing-attributes"
2857
+ version = "0.1.31"
2858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2859
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2860
+ dependencies = [
2861
+ "proc-macro2",
2862
+ "quote",
2863
+ "syn 2.0.106",
2864
+ ]
2865
+
2866
+ [[package]]
2867
+ name = "tracing-core"
2868
+ version = "0.1.34"
2869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2870
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
2871
+ dependencies = [
2872
+ "once_cell",
2873
+ ]
2874
+
2875
+ [[package]]
2876
+ name = "try-lock"
2877
+ version = "0.2.5"
2878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2879
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2880
+
2881
+ [[package]]
2882
+ name = "typenum"
2883
+ version = "1.19.0"
2884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2885
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2886
+
2887
+ [[package]]
2888
+ name = "ungrammar"
2889
+ version = "1.16.1"
2890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2891
+ checksum = "a3e5df347f0bf3ec1d670aad6ca5c6a1859cd9ea61d2113125794654ccced68f"
2892
+
2893
+ [[package]]
2894
+ name = "unicode-ident"
2895
+ version = "1.0.18"
2896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2897
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
2898
+
2899
+ [[package]]
2900
+ name = "unicode-segmentation"
2901
+ version = "1.12.0"
2902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2903
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
2904
+
2905
+ [[package]]
2906
+ name = "unicode-width"
2907
+ version = "0.1.14"
2908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2909
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
2910
+
2911
+ [[package]]
2912
+ name = "unicode-width"
2913
+ version = "0.2.1"
2914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2915
+ checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
2916
+
2917
+ [[package]]
2918
+ name = "url"
2919
+ version = "2.5.7"
2920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2921
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
2922
+ dependencies = [
2923
+ "form_urlencoded",
2924
+ "idna",
2925
+ "percent-encoding",
2926
+ "serde",
2927
+ ]
2928
+
2929
+ [[package]]
2930
+ name = "utf8-width"
2931
+ version = "0.1.7"
2932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2933
+ checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3"
2934
+
2935
+ [[package]]
2936
+ name = "utf8_iter"
2937
+ version = "1.0.4"
2938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2939
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2940
+
2941
+ [[package]]
2942
+ name = "utf8parse"
2943
+ version = "0.2.2"
2944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2945
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2946
+
2947
+ [[package]]
2948
+ name = "vcpkg"
2949
+ version = "0.2.15"
2950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2951
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2952
+
2953
+ [[package]]
2954
+ name = "version_check"
2955
+ version = "0.9.5"
2956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2957
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2958
+
2959
+ [[package]]
2960
+ name = "wait-timeout"
2961
+ version = "0.2.1"
2962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2963
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
2964
+ dependencies = [
2965
+ "libc",
2966
+ ]
2967
+
2968
+ [[package]]
2969
+ name = "walkdir"
2970
+ version = "2.5.0"
2971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2972
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2973
+ dependencies = [
2974
+ "same-file",
2975
+ "winapi-util",
2976
+ ]
2977
+
2978
+ [[package]]
2979
+ name = "want"
2980
+ version = "0.3.1"
2981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2982
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2983
+ dependencies = [
2984
+ "try-lock",
2985
+ ]
2986
+
2987
+ [[package]]
2988
+ name = "wasi"
2989
+ version = "0.11.1+wasi-snapshot-preview1"
2990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2991
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2992
+
2993
+ [[package]]
2994
+ name = "wasi"
2995
+ version = "0.14.3+wasi-0.2.4"
2996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2997
+ checksum = "6a51ae83037bdd272a9e28ce236db8c07016dd0d50c27038b3f407533c030c95"
2998
+ dependencies = [
2999
+ "wit-bindgen",
3000
+ ]
3001
+
3002
+ [[package]]
3003
+ name = "wasm-bindgen"
3004
+ version = "0.2.114"
3005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3006
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
3007
+ dependencies = [
3008
+ "cfg-if",
3009
+ "once_cell",
3010
+ "rustversion",
3011
+ "wasm-bindgen-macro",
3012
+ "wasm-bindgen-shared",
3013
+ ]
3014
+
3015
+ [[package]]
3016
+ name = "wasm-bindgen-futures"
3017
+ version = "0.4.64"
3018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3019
+ checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
3020
+ dependencies = [
3021
+ "cfg-if",
3022
+ "futures-util",
3023
+ "js-sys",
3024
+ "once_cell",
3025
+ "wasm-bindgen",
3026
+ "web-sys",
3027
+ ]
3028
+
3029
+ [[package]]
3030
+ name = "wasm-bindgen-macro"
3031
+ version = "0.2.114"
3032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3033
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
3034
+ dependencies = [
3035
+ "quote",
3036
+ "wasm-bindgen-macro-support",
3037
+ ]
3038
+
3039
+ [[package]]
3040
+ name = "wasm-bindgen-macro-support"
3041
+ version = "0.2.114"
3042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3043
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
3044
+ dependencies = [
3045
+ "bumpalo",
3046
+ "proc-macro2",
3047
+ "quote",
3048
+ "syn 2.0.106",
3049
+ "wasm-bindgen-shared",
3050
+ ]
3051
+
3052
+ [[package]]
3053
+ name = "wasm-bindgen-shared"
3054
+ version = "0.2.114"
3055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3056
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
3057
+ dependencies = [
3058
+ "unicode-ident",
3059
+ ]
3060
+
3061
+ [[package]]
3062
+ name = "wasm-bindgen-test"
3063
+ version = "0.3.64"
3064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3065
+ checksum = "6311c867385cc7d5602463b31825d454d0837a3aba7cdb5e56d5201792a3f7fe"
3066
+ dependencies = [
3067
+ "async-trait",
3068
+ "cast",
3069
+ "js-sys",
3070
+ "libm",
3071
+ "minicov",
3072
+ "nu-ansi-term",
3073
+ "num-traits",
3074
+ "oorandom",
3075
+ "serde",
3076
+ "serde_json",
3077
+ "wasm-bindgen",
3078
+ "wasm-bindgen-futures",
3079
+ "wasm-bindgen-test-macro",
3080
+ "wasm-bindgen-test-shared",
3081
+ ]
3082
+
3083
+ [[package]]
3084
+ name = "wasm-bindgen-test-macro"
3085
+ version = "0.3.64"
3086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3087
+ checksum = "67008cdde4769831958536b0f11b3bdd0380bde882be17fff9c2f34bb4549abd"
3088
+ dependencies = [
3089
+ "proc-macro2",
3090
+ "quote",
3091
+ "syn 2.0.106",
3092
+ ]
3093
+
3094
+ [[package]]
3095
+ name = "wasm-bindgen-test-shared"
3096
+ version = "0.2.114"
3097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3098
+ checksum = "cfe29135b180b72b04c74aa97b2b4a2ef275161eff9a6c7955ea9eaedc7e1d4e"
3099
+
3100
+ [[package]]
3101
+ name = "web-sys"
3102
+ version = "0.3.91"
3103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3104
+ checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
3105
+ dependencies = [
3106
+ "js-sys",
3107
+ "wasm-bindgen",
3108
+ ]
3109
+
3110
+ [[package]]
3111
+ name = "winapi"
3112
+ version = "0.3.9"
3113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3114
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3115
+ dependencies = [
3116
+ "winapi-i686-pc-windows-gnu",
3117
+ "winapi-x86_64-pc-windows-gnu",
3118
+ ]
3119
+
3120
+ [[package]]
3121
+ name = "winapi-i686-pc-windows-gnu"
3122
+ version = "0.4.0"
3123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3124
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3125
+
3126
+ [[package]]
3127
+ name = "winapi-util"
3128
+ version = "0.1.10"
3129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3130
+ checksum = "0978bf7171b3d90bac376700cb56d606feb40f251a475a5d6634613564460b22"
3131
+ dependencies = [
3132
+ "windows-sys 0.60.2",
3133
+ ]
3134
+
3135
+ [[package]]
3136
+ name = "winapi-x86_64-pc-windows-gnu"
3137
+ version = "0.4.0"
3138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3139
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3140
+
3141
+ [[package]]
3142
+ name = "windows-link"
3143
+ version = "0.1.3"
3144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3145
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
3146
+
3147
+ [[package]]
3148
+ name = "windows-link"
3149
+ version = "0.2.1"
3150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3151
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3152
+
3153
+ [[package]]
3154
+ name = "windows-sys"
3155
+ version = "0.48.0"
3156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3157
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3158
+ dependencies = [
3159
+ "windows-targets 0.48.5",
3160
+ ]
3161
+
3162
+ [[package]]
3163
+ name = "windows-sys"
3164
+ version = "0.52.0"
3165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3166
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3167
+ dependencies = [
3168
+ "windows-targets 0.52.6",
3169
+ ]
3170
+
3171
+ [[package]]
3172
+ name = "windows-sys"
3173
+ version = "0.59.0"
3174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3175
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3176
+ dependencies = [
3177
+ "windows-targets 0.52.6",
3178
+ ]
3179
+
3180
+ [[package]]
3181
+ name = "windows-sys"
3182
+ version = "0.60.2"
3183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3184
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3185
+ dependencies = [
3186
+ "windows-targets 0.53.3",
3187
+ ]
3188
+
3189
+ [[package]]
3190
+ name = "windows-sys"
3191
+ version = "0.61.2"
3192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3193
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3194
+ dependencies = [
3195
+ "windows-link 0.2.1",
3196
+ ]
3197
+
3198
+ [[package]]
3199
+ name = "windows-targets"
3200
+ version = "0.48.5"
3201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3202
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
3203
+ dependencies = [
3204
+ "windows_aarch64_gnullvm 0.48.5",
3205
+ "windows_aarch64_msvc 0.48.5",
3206
+ "windows_i686_gnu 0.48.5",
3207
+ "windows_i686_msvc 0.48.5",
3208
+ "windows_x86_64_gnu 0.48.5",
3209
+ "windows_x86_64_gnullvm 0.48.5",
3210
+ "windows_x86_64_msvc 0.48.5",
3211
+ ]
3212
+
3213
+ [[package]]
3214
+ name = "windows-targets"
3215
+ version = "0.52.6"
3216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3217
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3218
+ dependencies = [
3219
+ "windows_aarch64_gnullvm 0.52.6",
3220
+ "windows_aarch64_msvc 0.52.6",
3221
+ "windows_i686_gnu 0.52.6",
3222
+ "windows_i686_gnullvm 0.52.6",
3223
+ "windows_i686_msvc 0.52.6",
3224
+ "windows_x86_64_gnu 0.52.6",
3225
+ "windows_x86_64_gnullvm 0.52.6",
3226
+ "windows_x86_64_msvc 0.52.6",
3227
+ ]
3228
+
3229
+ [[package]]
3230
+ name = "windows-targets"
3231
+ version = "0.53.3"
3232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3233
+ checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
3234
+ dependencies = [
3235
+ "windows-link 0.1.3",
3236
+ "windows_aarch64_gnullvm 0.53.0",
3237
+ "windows_aarch64_msvc 0.53.0",
3238
+ "windows_i686_gnu 0.53.0",
3239
+ "windows_i686_gnullvm 0.53.0",
3240
+ "windows_i686_msvc 0.53.0",
3241
+ "windows_x86_64_gnu 0.53.0",
3242
+ "windows_x86_64_gnullvm 0.53.0",
3243
+ "windows_x86_64_msvc 0.53.0",
3244
+ ]
3245
+
3246
+ [[package]]
3247
+ name = "windows_aarch64_gnullvm"
3248
+ version = "0.48.5"
3249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3250
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3251
+
3252
+ [[package]]
3253
+ name = "windows_aarch64_gnullvm"
3254
+ version = "0.52.6"
3255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3256
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3257
+
3258
+ [[package]]
3259
+ name = "windows_aarch64_gnullvm"
3260
+ version = "0.53.0"
3261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3262
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
3263
+
3264
+ [[package]]
3265
+ name = "windows_aarch64_msvc"
3266
+ version = "0.48.5"
3267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3268
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3269
+
3270
+ [[package]]
3271
+ name = "windows_aarch64_msvc"
3272
+ version = "0.52.6"
3273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3274
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3275
+
3276
+ [[package]]
3277
+ name = "windows_aarch64_msvc"
3278
+ version = "0.53.0"
3279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3280
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
3281
+
3282
+ [[package]]
3283
+ name = "windows_i686_gnu"
3284
+ version = "0.48.5"
3285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3286
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3287
+
3288
+ [[package]]
3289
+ name = "windows_i686_gnu"
3290
+ version = "0.52.6"
3291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3292
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3293
+
3294
+ [[package]]
3295
+ name = "windows_i686_gnu"
3296
+ version = "0.53.0"
3297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3298
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
3299
+
3300
+ [[package]]
3301
+ name = "windows_i686_gnullvm"
3302
+ version = "0.52.6"
3303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3304
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3305
+
3306
+ [[package]]
3307
+ name = "windows_i686_gnullvm"
3308
+ version = "0.53.0"
3309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3310
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
3311
+
3312
+ [[package]]
3313
+ name = "windows_i686_msvc"
3314
+ version = "0.48.5"
3315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3316
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3317
+
3318
+ [[package]]
3319
+ name = "windows_i686_msvc"
3320
+ version = "0.52.6"
3321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3322
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3323
+
3324
+ [[package]]
3325
+ name = "windows_i686_msvc"
3326
+ version = "0.53.0"
3327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3328
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
3329
+
3330
+ [[package]]
3331
+ name = "windows_x86_64_gnu"
3332
+ version = "0.48.5"
3333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3334
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3335
+
3336
+ [[package]]
3337
+ name = "windows_x86_64_gnu"
3338
+ version = "0.52.6"
3339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3340
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3341
+
3342
+ [[package]]
3343
+ name = "windows_x86_64_gnu"
3344
+ version = "0.53.0"
3345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3346
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
3347
+
3348
+ [[package]]
3349
+ name = "windows_x86_64_gnullvm"
3350
+ version = "0.48.5"
3351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3352
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3353
+
3354
+ [[package]]
3355
+ name = "windows_x86_64_gnullvm"
3356
+ version = "0.52.6"
3357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3358
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3359
+
3360
+ [[package]]
3361
+ name = "windows_x86_64_gnullvm"
3362
+ version = "0.53.0"
3363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3364
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
3365
+
3366
+ [[package]]
3367
+ name = "windows_x86_64_msvc"
3368
+ version = "0.48.5"
3369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3370
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3371
+
3372
+ [[package]]
3373
+ name = "windows_x86_64_msvc"
3374
+ version = "0.52.6"
3375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3376
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3377
+
3378
+ [[package]]
3379
+ name = "windows_x86_64_msvc"
3380
+ version = "0.53.0"
3381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3382
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
3383
+
3384
+ [[package]]
3385
+ name = "winreg"
3386
+ version = "0.50.0"
3387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3388
+ checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
3389
+ dependencies = [
3390
+ "cfg-if",
3391
+ "windows-sys 0.48.0",
3392
+ ]
3393
+
3394
+ [[package]]
3395
+ name = "wit-bindgen"
3396
+ version = "0.45.0"
3397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3398
+ checksum = "052283831dbae3d879dc7f51f3d92703a316ca49f91540417d38591826127814"
3399
+
3400
+ [[package]]
3401
+ name = "writeable"
3402
+ version = "0.6.1"
3403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3404
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
3405
+
3406
+ [[package]]
3407
+ name = "xshell"
3408
+ version = "0.2.7"
3409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3410
+ checksum = "9e7290c623014758632efe00737145b6867b66292c42167f2ec381eb566a373d"
3411
+ dependencies = [
3412
+ "xshell-macros",
3413
+ ]
3414
+
3415
+ [[package]]
3416
+ name = "xshell-macros"
3417
+ version = "0.2.7"
3418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3419
+ checksum = "32ac00cd3f8ec9c1d33fb3e7958a82df6989c42d747bd326c822b1d625283547"
3420
+
3421
+ [[package]]
3422
+ name = "xtask"
3423
+ version = "2.45.0"
3424
+ dependencies = [
3425
+ "anyhow",
3426
+ "camino",
3427
+ "clap",
3428
+ "convert_case",
3429
+ "csv",
3430
+ "enum-iterator",
3431
+ "proc-macro2",
3432
+ "quote",
3433
+ "regex",
3434
+ "reqwest",
3435
+ "rustc-hash 2.1.1",
3436
+ "serde",
3437
+ "serde_json",
3438
+ "ungrammar",
3439
+ "xshell",
3440
+ ]
3441
+
3442
+ [[package]]
3443
+ name = "yoke"
3444
+ version = "0.8.0"
3445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3446
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
3447
+ dependencies = [
3448
+ "serde",
3449
+ "stable_deref_trait",
3450
+ "yoke-derive",
3451
+ "zerofrom",
3452
+ ]
3453
+
3454
+ [[package]]
3455
+ name = "yoke-derive"
3456
+ version = "0.8.0"
3457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3458
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
3459
+ dependencies = [
3460
+ "proc-macro2",
3461
+ "quote",
3462
+ "syn 2.0.106",
3463
+ "synstructure",
3464
+ ]
3465
+
3466
+ [[package]]
3467
+ name = "zerocopy"
3468
+ version = "0.8.39"
3469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3470
+ checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
3471
+ dependencies = [
3472
+ "zerocopy-derive",
3473
+ ]
3474
+
3475
+ [[package]]
3476
+ name = "zerocopy-derive"
3477
+ version = "0.8.39"
3478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3479
+ checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
3480
+ dependencies = [
3481
+ "proc-macro2",
3482
+ "quote",
3483
+ "syn 2.0.106",
3484
+ ]
3485
+
3486
+ [[package]]
3487
+ name = "zerofrom"
3488
+ version = "0.1.6"
3489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3490
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3491
+ dependencies = [
3492
+ "zerofrom-derive",
3493
+ ]
3494
+
3495
+ [[package]]
3496
+ name = "zerofrom-derive"
3497
+ version = "0.1.6"
3498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3499
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3500
+ dependencies = [
3501
+ "proc-macro2",
3502
+ "quote",
3503
+ "syn 2.0.106",
3504
+ "synstructure",
3505
+ ]
3506
+
3507
+ [[package]]
3508
+ name = "zeroize"
3509
+ version = "1.8.2"
3510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3511
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3512
+
3513
+ [[package]]
3514
+ name = "zerotrie"
3515
+ version = "0.2.2"
3516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3517
+ checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
3518
+ dependencies = [
3519
+ "displaydoc",
3520
+ "yoke",
3521
+ "zerofrom",
3522
+ ]
3523
+
3524
+ [[package]]
3525
+ name = "zerovec"
3526
+ version = "0.11.4"
3527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3528
+ checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
3529
+ dependencies = [
3530
+ "yoke",
3531
+ "zerofrom",
3532
+ "zerovec-derive",
3533
+ ]
3534
+
3535
+ [[package]]
3536
+ name = "zerovec-derive"
3537
+ version = "0.11.1"
3538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3539
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
3540
+ dependencies = [
3541
+ "proc-macro2",
3542
+ "quote",
3543
+ "syn 2.0.106",
3544
+ ]