squawk-cli 1.6.1__tar.gz → 2.0.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 (871) hide show
  1. squawk_cli-2.0.0/Cargo.lock +3831 -0
  2. squawk_cli-2.0.0/Cargo.toml +73 -0
  3. squawk_cli-2.0.0/PKG-INFO +330 -0
  4. squawk_cli-2.0.0/crates/cli/Cargo.toml +43 -0
  5. squawk_cli-2.0.0/crates/cli/README.md +310 -0
  6. squawk_cli-2.0.0/crates/cli/src/config.rs +140 -0
  7. squawk_cli-2.0.0/crates/cli/src/debug.rs +98 -0
  8. squawk_cli-2.0.0/crates/cli/src/file.rs +22 -0
  9. squawk_cli-2.0.0/crates/cli/src/file_finding.rs +38 -0
  10. squawk_cli-2.0.0/crates/cli/src/github.rs +314 -0
  11. squawk_cli-2.0.0/crates/cli/src/main.rs +246 -0
  12. squawk_cli-2.0.0/crates/cli/src/reporter.rs +453 -0
  13. squawk_cli-2.0.0/crates/cli/src/snapshots/squawk__config__test_config__load_assume_in_transaction.snap +19 -0
  14. squawk_cli-2.0.0/crates/cli/src/snapshots/squawk__config__test_config__load_cfg_full.snap +31 -0
  15. squawk_cli-2.0.0/crates/cli/src/snapshots/squawk__config__test_config__load_excluded_paths.snap +19 -0
  16. squawk_cli-2.0.0/crates/cli/src/snapshots/squawk__config__test_config__load_excluded_rules.snap +19 -0
  17. squawk_cli-2.0.0/crates/cli/src/snapshots/squawk__config__test_config__load_fail_on_violations.snap +19 -0
  18. squawk_cli-2.0.0/crates/cli/src/snapshots/squawk__config__test_config__load_pg_version.snap +25 -0
  19. squawk_cli-2.0.0/crates/cli/src/snapshots/squawk__github__test_github_comment__generating_comment_multiple_files.snap +35 -0
  20. squawk_cli-2.0.0/crates/cli/src/snapshots/squawk__github__test_github_comment__generating_comment_no_violations.snap +50 -0
  21. squawk_cli-2.0.0/crates/cli/src/snapshots/squawk__github__test_github_comment__generating_no_violations_no_files.snap +14 -0
  22. squawk_cli-2.0.0/crates/cli/src/snapshots/squawk__reporter__test_check_files__check_files_invalid_syntax.snap +5 -0
  23. squawk_cli-2.0.0/crates/cli/src/snapshots/squawk__reporter__test_reporter__display_no_violations_tty.snap +5 -0
  24. squawk_cli-2.0.0/crates/cli/src/snapshots/squawk__reporter__test_reporter__display_violations_tty.snap +47 -0
  25. squawk_cli-2.0.0/crates/cli/src/snapshots/squawk__reporter__test_reporter__span_offsets.snap +78 -0
  26. squawk_cli-2.0.0/crates/github/Cargo.toml +19 -0
  27. squawk_cli-2.0.0/crates/github/src/lib.rs +91 -0
  28. squawk_cli-2.0.0/crates/squawk_lexer/Cargo.toml +21 -0
  29. squawk_cli-2.0.0/crates/squawk_lexer/README.md +3 -0
  30. squawk_cli-2.0.0/crates/squawk_lexer/src/LICENSE-MIT +25 -0
  31. squawk_cli-2.0.0/crates/squawk_lexer/src/cursor.rs +65 -0
  32. squawk_cli-2.0.0/crates/squawk_lexer/src/lib.rs +734 -0
  33. squawk_cli-2.0.0/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__bitstring.snap +15 -0
  34. squawk_cli-2.0.0/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__block_comment.snap +8 -0
  35. squawk_cli-2.0.0/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__block_comment_unterminated.snap +8 -0
  36. squawk_cli-2.0.0/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__dollar_quote_mismatch_tags_complex.snap +10 -0
  37. squawk_cli-2.0.0/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__dollar_quote_mismatch_tags_simple.snap +10 -0
  38. squawk_cli-2.0.0/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__dollar_quoting.snap +14 -0
  39. squawk_cli-2.0.0/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__lex_statement.snap +10 -0
  40. squawk_cli-2.0.0/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__line_comment.snap +9 -0
  41. squawk_cli-2.0.0/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__line_comment_whitespace.snap +15 -0
  42. squawk_cli-2.0.0/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__numeric.snap +27 -0
  43. squawk_cli-2.0.0/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__numeric_non_decimal.snap +19 -0
  44. squawk_cli-2.0.0/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__numeric_with_seperators.snap +17 -0
  45. squawk_cli-2.0.0/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__params.snap +26 -0
  46. squawk_cli-2.0.0/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__quoted_ident.snap +11 -0
  47. squawk_cli-2.0.0/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__select_with_period.snap +14 -0
  48. squawk_cli-2.0.0/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__string.snap +24 -0
  49. squawk_cli-2.0.0/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__string_unicode_escape.snap +19 -0
  50. squawk_cli-2.0.0/crates/squawk_lexer/src/snapshots/squawk_lexer__tests__string_with_escapes.snap +19 -0
  51. squawk_cli-2.0.0/crates/squawk_lexer/src/token.rs +155 -0
  52. squawk_cli-2.0.0/crates/squawk_linter/Cargo.toml +23 -0
  53. squawk_cli-2.0.0/crates/squawk_linter/README.md +31 -0
  54. squawk_cli-2.0.0/crates/squawk_linter/src/ignore.rs +215 -0
  55. squawk_cli-2.0.0/crates/squawk_linter/src/ignore_index.rs +57 -0
  56. squawk_cli-2.0.0/crates/squawk_linter/src/lib.rs +401 -0
  57. squawk_cli-2.0.0/crates/squawk_linter/src/rules/adding_field_with_default.rs +300 -0
  58. squawk_cli-2.0.0/crates/squawk_linter/src/rules/adding_foreign_key_constraint.rs +132 -0
  59. squawk_cli-2.0.0/crates/squawk_linter/src/rules/adding_not_null_field.rs +99 -0
  60. squawk_cli-2.0.0/crates/squawk_linter/src/rules/adding_primary_key_constraint.rs +94 -0
  61. squawk_cli-2.0.0/crates/squawk_linter/src/rules/adding_required_field.rs +120 -0
  62. squawk_cli-2.0.0/crates/squawk_linter/src/rules/ban_alter_domain_with_add_constraint.rs +61 -0
  63. squawk_cli-2.0.0/crates/squawk_linter/src/rules/ban_char_field.rs +161 -0
  64. squawk_cli-2.0.0/crates/squawk_linter/src/rules/ban_concurrent_index_creation_in_transaction.rs +123 -0
  65. squawk_cli-2.0.0/crates/squawk_linter/src/rules/ban_create_domain_with_constraint.rs +80 -0
  66. squawk_cli-2.0.0/crates/squawk_linter/src/rules/ban_drop_column.rs +43 -0
  67. squawk_cli-2.0.0/crates/squawk_linter/src/rules/ban_drop_database.rs +42 -0
  68. squawk_cli-2.0.0/crates/squawk_linter/src/rules/ban_drop_not_null.rs +47 -0
  69. squawk_cli-2.0.0/crates/squawk_linter/src/rules/ban_drop_table.rs +41 -0
  70. squawk_cli-2.0.0/crates/squawk_linter/src/rules/changing_column_type.rs +68 -0
  71. squawk_cli-2.0.0/crates/squawk_linter/src/rules/constraint_missing_not_valid.rs +305 -0
  72. squawk_cli-2.0.0/crates/squawk_linter/src/rules/disallow_unique_constraint.rs +174 -0
  73. squawk_cli-2.0.0/crates/squawk_linter/src/rules/mod.rs +57 -0
  74. squawk_cli-2.0.0/crates/squawk_linter/src/rules/prefer_bigint_over_int.rs +107 -0
  75. squawk_cli-2.0.0/crates/squawk_linter/src/rules/prefer_bigint_over_smallint.rs +106 -0
  76. squawk_cli-2.0.0/crates/squawk_linter/src/rules/prefer_identity.rs +101 -0
  77. squawk_cli-2.0.0/crates/squawk_linter/src/rules/prefer_robust_stmts.rs +571 -0
  78. squawk_cli-2.0.0/crates/squawk_linter/src/rules/prefer_text_field.rs +175 -0
  79. squawk_cli-2.0.0/crates/squawk_linter/src/rules/prefer_timestamptz.rs +139 -0
  80. squawk_cli-2.0.0/crates/squawk_linter/src/rules/renaming_column.rs +43 -0
  81. squawk_cli-2.0.0/crates/squawk_linter/src/rules/renaming_table.rs +43 -0
  82. squawk_cli-2.0.0/crates/squawk_linter/src/rules/require_concurrent_index_creation.rs +104 -0
  83. squawk_cli-2.0.0/crates/squawk_linter/src/rules/require_concurrent_index_deletion.rs +87 -0
  84. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__add_numbers_ok.snap +5 -0
  85. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__arbitrary_func_err.snap +14 -0
  86. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_bool_ok.snap +5 -0
  87. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_enum_ok.snap +5 -0
  88. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_func_now_ok.snap +5 -0
  89. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_jsonb_ok.snap +5 -0
  90. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_random_with_args_err.snap +14 -0
  91. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_str_ok.snap +5 -0
  92. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_uuid_error.snap +14 -0
  93. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_uuid_error_multi_stmt.snap +14 -0
  94. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__default_volatile_func_err.snap +14 -0
  95. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__docs_example_ok.snap +5 -0
  96. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__docs_example_ok_post_pg_11.snap +5 -0
  97. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test__generated_stored_err.snap +14 -0
  98. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test__set_not_null.snap +14 -0
  99. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_primary_key_constraint__test__plain_primary_key.snap +14 -0
  100. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_primary_key_constraint__test__serial_primary_key.snap +14 -0
  101. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__adding_required_field__test__not_null_without_default.snap +14 -0
  102. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_alter_domain_with_add_constraint__test__err.snap +12 -0
  103. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__all_the_types.snap +42 -0
  104. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__alter_table_err.snap +12 -0
  105. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__array_char_type_err.snap +12 -0
  106. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test__creating_table_with_char_errors.snap +30 -0
  107. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_concurrent_index_creation_in_transaction__test__assuming_in_transaction_err.snap +14 -0
  108. squawk_cli-2.0.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 +14 -0
  109. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_create_domain_with_constraint__test__err.snap +12 -0
  110. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_create_domain_with_constraint__test__err_with_multiple_constraints.snap +12 -0
  111. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_drop_column__test__err.snap +12 -0
  112. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_drop_database__test__ban_drop_database.snap +24 -0
  113. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_drop_not_null__test__err.snap +12 -0
  114. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__ban_drop_table__test__err.snap +24 -0
  115. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__changing_column_type__test__another_err.snap +18 -0
  116. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__changing_column_type__test__err.snap +12 -0
  117. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test__adding_check_constraint_err.snap +14 -0
  118. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test__adding_fk_err.snap +14 -0
  119. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test__not_valid_validate_assume_transaction_err.snap +14 -0
  120. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test__not_valid_validate_transaction_err.snap +14 -0
  121. squawk_cli-2.0.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 +14 -0
  122. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test__adding_unique_constraint_err.snap +14 -0
  123. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test__unique_constraint_inline_add_column_err.snap +14 -0
  124. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test__unique_constraint_inline_add_column_unique_err.snap +14 -0
  125. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_big_int__test__alter_table_add_column_err.snap +14 -0
  126. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_big_int__test__alter_table_alter_column_type_err.snap +14 -0
  127. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_big_int__test__alter_table_alter_column_type_with_quotes_err.snap +14 -0
  128. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_big_int__test__create_table_many_err.snap +22 -0
  129. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_big_int__test__err.snap +70 -0
  130. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_bigint_over_int__test__err.snap +38 -0
  131. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_bigint_over_smallint__test__err.snap +38 -0
  132. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_identity__test__err.snap +54 -0
  133. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__alter_table_drop_column_err.snap +12 -0
  134. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__alter_table_drop_constraint_err.snap +12 -0
  135. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__alter_table_err.snap +12 -0
  136. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__create_index_concurrently_err.snap +14 -0
  137. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__create_index_concurrently_muli_stmts_err.snap +22 -0
  138. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__create_index_concurrently_unnamed_err.snap +14 -0
  139. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__create_table_err.snap +12 -0
  140. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__disable_row_level_security_err.snap +12 -0
  141. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__double_add_after_drop_err.snap +12 -0
  142. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__drop_index_err.snap +12 -0
  143. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__enable_row_level_security_err.snap +12 -0
  144. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test__enable_row_level_security_without_exists_check_err.snap +12 -0
  145. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test__adding_column_non_text_err.snap +14 -0
  146. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test__create_table_with_pgcatalog_varchar_err.snap +14 -0
  147. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test__create_table_with_varchar_err.snap +14 -0
  148. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test__increase_varchar_size_err.snap +14 -0
  149. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_timestamptz__test__alter_table_with_timestamp_err.snap +22 -0
  150. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__prefer_timestamptz__test__create_table_with_timestamp_err.snap +22 -0
  151. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__renaming_column__test__err.snap +12 -0
  152. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__renaming_table__test__err.snap +12 -0
  153. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__require_concurrent_index_creation__test__adding_index_non_concurrently_err.snap +14 -0
  154. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__require_concurrent_index_deletion__test__drop_index_missing_concurrently_err.snap +14 -0
  155. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__begin_assume_transaction_err.snap +30 -0
  156. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__begin_repeated_err.snap +14 -0
  157. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__commit_repeated_err.snap +14 -0
  158. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__commit_with_assume_in_transaction_err.snap +14 -0
  159. squawk_cli-2.0.0/crates/squawk_linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test__rollback_with_assume_in_transaction_err.snap +14 -0
  160. squawk_cli-2.0.0/crates/squawk_linter/src/rules/transaction_nesting.rs +181 -0
  161. squawk_cli-2.0.0/crates/squawk_linter/src/snapshots/squawk_linter__version__test_pg_version__parse.snap +12 -0
  162. squawk_cli-2.0.0/crates/squawk_linter/src/text.rs +8 -0
  163. squawk_cli-2.0.0/crates/squawk_linter/src/version.rs +146 -0
  164. squawk_cli-2.0.0/crates/squawk_linter/src/visitors.rs +73 -0
  165. squawk_cli-2.0.0/crates/squawk_parser/Cargo.toml +26 -0
  166. squawk_cli-2.0.0/crates/squawk_parser/README.md +191 -0
  167. squawk_cli-2.0.0/crates/squawk_parser/src/event.rs +172 -0
  168. squawk_cli-2.0.0/crates/squawk_parser/src/grammar.rs +13674 -0
  169. squawk_cli-2.0.0/crates/squawk_parser/src/input.rs +120 -0
  170. squawk_cli-2.0.0/crates/squawk_parser/src/lexed_str.rs +301 -0
  171. squawk_cli-2.0.0/crates/squawk_parser/src/lib.rs +655 -0
  172. squawk_cli-2.0.0/crates/squawk_parser/src/output.rs +150 -0
  173. squawk_cli-2.0.0/crates/squawk_parser/src/shortcuts.rs +337 -0
  174. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/parser__test__alter_table_err.snap +111 -0
  175. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_aggregate_err.snap +45 -0
  176. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_aggregate_ok.snap +186 -0
  177. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_collation_ok.snap +103 -0
  178. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_conversion_ok.snap +106 -0
  179. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_database_ok.snap +285 -0
  180. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_default_privileges_ok.snap +948 -0
  181. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_domain_ok.snap +365 -0
  182. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_event_trigger_ok.snap +127 -0
  183. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_extension_ok.snap +2487 -0
  184. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_foreign_data_wrapper_err.snap +22 -0
  185. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_foreign_data_wrapper_ok.snap +246 -0
  186. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_foreign_table_ok.snap +1485 -0
  187. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_function_ok.snap +357 -0
  188. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_group_ok.snap +157 -0
  189. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_index_ok.snap +457 -0
  190. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_language_ok.snap +75 -0
  191. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_large_object_ok.snap +43 -0
  192. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_materialized_view_ok.snap +724 -0
  193. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_operator_class_ok.snap +139 -0
  194. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_operator_family_ok.snap +687 -0
  195. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_operator_ok.snap +218 -0
  196. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_policy_ok.snap +185 -0
  197. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_procedure_ok.snap +402 -0
  198. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_publication_ok.snap +397 -0
  199. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_role_ok.snap +278 -0
  200. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_routine_ok.snap +320 -0
  201. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_rule_ok.snap +60 -0
  202. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_schema_ok.snap +55 -0
  203. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_sequence_err.snap +20 -0
  204. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_sequence_ok.snap +229 -0
  205. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_server_err.snap +18 -0
  206. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_server_ok.snap +105 -0
  207. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_statistics_ok.snap +123 -0
  208. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_subscription_ok.snap +353 -0
  209. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_system_ok.snap +162 -0
  210. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_table_err.snap +111 -0
  211. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_table_ok.snap +3622 -0
  212. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_table_pg17_ok.snap +104 -0
  213. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_tablespace_ok.snap +185 -0
  214. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_text_search_configuration_ok.snap +567 -0
  215. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_text_search_dictionary_ok.snap +135 -0
  216. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_text_search_parser_ok.snap +80 -0
  217. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_text_search_template_ok.snap +58 -0
  218. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_trigger_ok.snap +91 -0
  219. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_type_ok.snap +669 -0
  220. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_user_mapping_ok.snap +51 -0
  221. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_user_ok.snap +258 -0
  222. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__alter_view_ok.snap +331 -0
  223. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__analyze_ok.snap +114 -0
  224. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__call_ok.snap +76 -0
  225. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__checkpoint_ok.snap +11 -0
  226. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__close_ok.snap +20 -0
  227. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__cluster_ok.snap +108 -0
  228. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__comment_ok.snap +1335 -0
  229. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__copy_ok.snap +373 -0
  230. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_access_method_ok.snap +62 -0
  231. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_aggregate_ok.snap +1195 -0
  232. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_cast_ok.snap +151 -0
  233. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_collation_ok.snap +156 -0
  234. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_conversion_ok.snap +82 -0
  235. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_database_ok.snap +145 -0
  236. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_domain_ok.snap +85 -0
  237. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_event_trigger_ok.snap +126 -0
  238. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_ext_ok.snap +84 -0
  239. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_foreign_data_wrapper_ok.snap +84 -0
  240. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_foreign_table_ok.snap +620 -0
  241. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_function_err.snap +15 -0
  242. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_function_ok.snap +3037 -0
  243. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_group_ok.snap +129 -0
  244. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_index_ok.snap +730 -0
  245. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_language_ok.snap +72 -0
  246. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_materialized_view_ok.snap +204 -0
  247. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_operator_class_ok.snap +308 -0
  248. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_operator_family_ok.snap +50 -0
  249. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_operator_ok.snap +194 -0
  250. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_policy_ok.snap +252 -0
  251. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_procedure_ok.snap +281 -0
  252. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_publication_ok.snap +256 -0
  253. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_role_ok.snap +116 -0
  254. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_rule_ok.snap +358 -0
  255. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_sequence_ok.snap +121 -0
  256. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_server_ok.snap +123 -0
  257. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_statistics_ok.snap +228 -0
  258. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_subscription_ok.snap +207 -0
  259. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_table_as_ok.snap +165 -0
  260. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_table_err.snap +414 -0
  261. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_table_ok.snap +3024 -0
  262. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_table_pg17_ok.snap +398 -0
  263. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_tablespace_ok.snap +91 -0
  264. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_text_search_config_ok.snap +74 -0
  265. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_text_search_dict_ok.snap +98 -0
  266. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_text_search_parser_ok.snap +158 -0
  267. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_text_search_template_ok.snap +86 -0
  268. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_transform_ok.snap +147 -0
  269. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_trigger_ok.snap +322 -0
  270. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_type_ok.snap +545 -0
  271. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_user_ok.snap +124 -0
  272. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__create_view_ok.snap +520 -0
  273. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__deallocate_ok.snap +28 -0
  274. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__declare_ok.snap +116 -0
  275. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__delete_ok.snap +986 -0
  276. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__discard_ok.snap +37 -0
  277. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__do_ok.snap +27 -0
  278. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_access_method_ok.snap +56 -0
  279. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_aggregate_ok.snap +243 -0
  280. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_cast_ok.snap +99 -0
  281. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_collation_ok.snap +61 -0
  282. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_conversion_ok.snap +66 -0
  283. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_database_ok.snap +86 -0
  284. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_domain_ok.snap +85 -0
  285. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_event_trigger_ok.snap +56 -0
  286. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_extension_ok.snap +66 -0
  287. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_foreign_data_ok.snap +78 -0
  288. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_foreign_table_ok.snap +91 -0
  289. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_function_ok.snap +109 -0
  290. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_group_ok.snap +40 -0
  291. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_index_ok.snap +118 -0
  292. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_language_ok.snap +52 -0
  293. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_materialized_view_ok.snap +91 -0
  294. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_operator_class_ok.snap +87 -0
  295. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_operator_family_ok.snap +87 -0
  296. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_operator_ok.snap +333 -0
  297. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_owned_ok.snap +52 -0
  298. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_policy_ok.snap +76 -0
  299. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_procedure_ok.snap +109 -0
  300. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_publication_ok.snap +66 -0
  301. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_role_ok.snap +62 -0
  302. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_routine_ok.snap +109 -0
  303. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_rule_ok.snap +77 -0
  304. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_sequence_ok.snap +85 -0
  305. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_server_ok.snap +66 -0
  306. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_statistics_ok.snap +85 -0
  307. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_subscription_ok.snap +50 -0
  308. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_table_ok.snap +148 -0
  309. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_tablespace_ok.snap +32 -0
  310. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_text_search_config_ok.snap +59 -0
  311. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_text_search_dict_ok.snap +59 -0
  312. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_text_search_parser_ok.snap +59 -0
  313. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_text_search_template_ok.snap +59 -0
  314. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_transform_ok.snap +80 -0
  315. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_trigger_ok.snap +114 -0
  316. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_type_ok.snap +132 -0
  317. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_user_mapping_ok.snap +48 -0
  318. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_user_ok.snap +40 -0
  319. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__drop_view_ok.snap +63 -0
  320. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__execute_ok.snap +54 -0
  321. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__explain_ok.snap +620 -0
  322. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__fetch_ok.snap +220 -0
  323. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__grant_ok.snap +1485 -0
  324. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__import_foreign_schema_ok.snap +206 -0
  325. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__insert_err.snap +171 -0
  326. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__insert_ok.snap +1308 -0
  327. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__listen_ok.snap +21 -0
  328. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__load_ok.snap +14 -0
  329. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__lock_ok.snap +222 -0
  330. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__merge_ok.snap +606 -0
  331. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__merge_pg17_ok.snap +1441 -0
  332. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__misc_ok.snap +6680 -0
  333. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__move_ok.snap +220 -0
  334. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__notify_ok.snap +25 -0
  335. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__precedence_ok.snap +142 -0
  336. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__prepare_ok.snap +401 -0
  337. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__reassign_ok.snap +44 -0
  338. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__refresh_ok.snap +58 -0
  339. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__reindex_ok.snap +104 -0
  340. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__reset_ok.snap +20 -0
  341. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__revoke_ok.snap +1435 -0
  342. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__schemas_ok.snap +609 -0
  343. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__security_label_ok.snap +1011 -0
  344. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__select_casts_ok.snap +2792 -0
  345. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__select_cte_err.snap +48 -0
  346. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__select_cte_ok.snap +1278 -0
  347. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__select_err.snap +235 -0
  348. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__select_funcs_ok.snap +3743 -0
  349. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__select_funcs_pg17_ok.snap +1142 -0
  350. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__select_into_ok.snap +78 -0
  351. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__select_ok.snap +5752 -0
  352. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__select_operators_ok.snap +5079 -0
  353. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__set_constraints_ok.snap +70 -0
  354. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__set_role_ok.snap +50 -0
  355. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__set_session_auth_ok.snap +50 -0
  356. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__set_transaction_ok.snap +64 -0
  357. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__transaction_ok.snap +447 -0
  358. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__truncate_ok.snap +92 -0
  359. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__unlisten_ok.snap +20 -0
  360. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__update_ok.snap +1232 -0
  361. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__vacuum_ok.snap +238 -0
  362. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__values_err.snap +47 -0
  363. squawk_cli-2.0.0/crates/squawk_parser/src/snapshots/squawk_parser__test__values_ok.snap +562 -0
  364. squawk_cli-2.0.0/crates/squawk_parser/src/syntax_kind.rs +4678 -0
  365. squawk_cli-2.0.0/crates/squawk_parser/src/test.rs +116 -0
  366. squawk_cli-2.0.0/crates/squawk_parser/src/token_set.rs +93 -0
  367. squawk_cli-2.0.0/crates/squawk_parser/test_data/err/alter_foreign_data_wrapper.sql +2 -0
  368. squawk_cli-2.0.0/crates/squawk_parser/test_data/err/alter_sequence.sql +2 -0
  369. squawk_cli-2.0.0/crates/squawk_parser/test_data/err/alter_server.sql +2 -0
  370. squawk_cli-2.0.0/crates/squawk_parser/test_data/err/alter_table.sql +8 -0
  371. squawk_cli-2.0.0/crates/squawk_parser/test_data/err/create_function.sql +2 -0
  372. squawk_cli-2.0.0/crates/squawk_parser/test_data/err/create_table.sql +47 -0
  373. squawk_cli-2.0.0/crates/squawk_parser/test_data/err/insert.sql +14 -0
  374. squawk_cli-2.0.0/crates/squawk_parser/test_data/err/select.sql +29 -0
  375. squawk_cli-2.0.0/crates/squawk_parser/test_data/err/select_cte.sql +4 -0
  376. squawk_cli-2.0.0/crates/squawk_parser/test_data/err/values.sql +6 -0
  377. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_aggregate.sql +18 -0
  378. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_collation.sql +18 -0
  379. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_conversion.sql +13 -0
  380. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_database.sql +35 -0
  381. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_default_privileges.sql +201 -0
  382. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_domain.sql +52 -0
  383. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_event_trigger.sql +21 -0
  384. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_extension.sql +184 -0
  385. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_foreign_data_wrapper.sql +36 -0
  386. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_foreign_table.sql +182 -0
  387. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_function.sql +48 -0
  388. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_group.sql +24 -0
  389. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_index.sql +36 -0
  390. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_language.sql +8 -0
  391. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_large_object.sql +6 -0
  392. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_materialized_view.sql +77 -0
  393. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_operator.sql +23 -0
  394. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_operator_class.sql +18 -0
  395. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_operator_family.sql +62 -0
  396. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_policy.sql +26 -0
  397. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_procedure.sql +55 -0
  398. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_publication.sql +26 -0
  399. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_role.sql +51 -0
  400. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_routine.sql +54 -0
  401. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_rule.sql +6 -0
  402. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_schema.sql +7 -0
  403. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_sequence.sql +41 -0
  404. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_server.sql +19 -0
  405. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_statistics.sql +14 -0
  406. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_subscription.sql +37 -0
  407. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_system.sql +22 -0
  408. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_table.sql +266 -0
  409. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_table_pg17.sql +6 -0
  410. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_tablespace.sql +19 -0
  411. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_text_search_configuration.sql +50 -0
  412. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_text_search_dictionary.sql +16 -0
  413. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_text_search_parser.sql +8 -0
  414. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_text_search_template.sql +6 -0
  415. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_trigger.sql +9 -0
  416. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_type.sql +56 -0
  417. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_user.sql +41 -0
  418. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_user_mapping.sql +5 -0
  419. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/alter_view.sql +36 -0
  420. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/analyze.sql +10 -0
  421. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/call.sql +9 -0
  422. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/checkpoint.sql +3 -0
  423. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/close.sql +4 -0
  424. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/cluster.sql +18 -0
  425. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/comment.sql +155 -0
  426. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/copy.sql +48 -0
  427. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_access_method.sql +10 -0
  428. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_aggregate.sql +127 -0
  429. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_cast.sql +14 -0
  430. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_collation.sql +17 -0
  431. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_conversion.sql +12 -0
  432. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_database.sql +23 -0
  433. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_domain.sql +11 -0
  434. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_event_trigger.sql +14 -0
  435. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_ext.sql +15 -0
  436. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_foreign_data_wrapper.sql +11 -0
  437. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_foreign_table.sql +73 -0
  438. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_function.sql +409 -0
  439. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_group.sql +31 -0
  440. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_index.sql +62 -0
  441. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_language.sql +9 -0
  442. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_materialized_view.sql +21 -0
  443. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_operator.sql +23 -0
  444. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_operator_class.sql +15 -0
  445. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_operator_family.sql +6 -0
  446. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_policy.sql +34 -0
  447. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_procedure.sql +31 -0
  448. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_publication.sql +23 -0
  449. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_role.sql +29 -0
  450. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_rule.sql +36 -0
  451. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_sequence.sql +19 -0
  452. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_server.sql +13 -0
  453. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_statistics.sql +17 -0
  454. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_subscription.sql +25 -0
  455. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_table.sql +320 -0
  456. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_table_as.sql +19 -0
  457. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_table_pg17.sql +32 -0
  458. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_tablespace.sql +14 -0
  459. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_text_search_config.sql +10 -0
  460. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_text_search_dict.sql +12 -0
  461. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_text_search_parser.sql +17 -0
  462. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_text_search_template.sql +11 -0
  463. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_transform.sql +12 -0
  464. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_trigger.sql +35 -0
  465. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_type.sql +62 -0
  466. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_user.sql +32 -0
  467. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/create_view.sql +45 -0
  468. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/deallocate.sql +7 -0
  469. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/declare.sql +16 -0
  470. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/delete.sql +110 -0
  471. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/discard.sql +7 -0
  472. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/do.sql +13 -0
  473. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_access_method.sql +7 -0
  474. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_aggregate.sql +34 -0
  475. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_cast.sql +7 -0
  476. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_collation.sql +7 -0
  477. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_conversion.sql +7 -0
  478. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_database.sql +12 -0
  479. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_domain.sql +7 -0
  480. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_event_trigger.sql +7 -0
  481. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_extension.sql +7 -0
  482. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_foreign_data.sql +7 -0
  483. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_foreign_table.sql +7 -0
  484. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_function.sql +7 -0
  485. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_group.sql +6 -0
  486. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_index.sql +13 -0
  487. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_language.sql +7 -0
  488. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_materialized_view.sql +7 -0
  489. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_operator.sql +21 -0
  490. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_operator_class.sql +7 -0
  491. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_operator_family.sql +7 -0
  492. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_owned.sql +7 -0
  493. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_policy.sql +7 -0
  494. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_procedure.sql +7 -0
  495. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_publication.sql +7 -0
  496. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_role.sql +7 -0
  497. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_routine.sql +7 -0
  498. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_rule.sql +7 -0
  499. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_sequence.sql +7 -0
  500. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_server.sql +7 -0
  501. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_statistics.sql +8 -0
  502. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_subscription.sql +7 -0
  503. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_table.sql +22 -0
  504. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_tablespace.sql +6 -0
  505. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_text_search_config.sql +9 -0
  506. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_text_search_dict.sql +9 -0
  507. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_text_search_parser.sql +9 -0
  508. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_text_search_template.sql +9 -0
  509. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_transform.sql +9 -0
  510. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_trigger.sql +10 -0
  511. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_type.sql +12 -0
  512. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_user.sql +6 -0
  513. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_user_mapping.sql +6 -0
  514. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/drop_view.sql +8 -0
  515. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/execute.sql +7 -0
  516. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/explain.sql +71 -0
  517. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/fetch.sql +21 -0
  518. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/grant.sql +235 -0
  519. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/import_foreign_schema.sql +31 -0
  520. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/insert.sql +90 -0
  521. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/listen.sql +5 -0
  522. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/load.sql +3 -0
  523. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/lock.sql +19 -0
  524. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/merge.sql +69 -0
  525. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/merge_pg17.sql +147 -0
  526. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/misc.sql +759 -0
  527. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/move.sql +21 -0
  528. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/notify.sql +4 -0
  529. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/precedence.sql +9 -0
  530. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/prepare.sql +35 -0
  531. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/reassign.sql +5 -0
  532. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/refresh.sql +7 -0
  533. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/reindex.sql +16 -0
  534. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/reset.sql +4 -0
  535. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/revoke.sql +222 -0
  536. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/schemas.sql +67 -0
  537. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/security_label.sql +116 -0
  538. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/select.sql +497 -0
  539. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/select_casts.sql +211 -0
  540. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/select_cte.sql +119 -0
  541. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/select_funcs.sql +248 -0
  542. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/select_funcs_pg17.sql +110 -0
  543. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/select_into.sql +6 -0
  544. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/select_operators.sql +537 -0
  545. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/set_constraints.sql +9 -0
  546. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/set_role.sql +11 -0
  547. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/set_session_auth.sql +6 -0
  548. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/set_transaction.sql +7 -0
  549. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/transaction.sql +80 -0
  550. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/truncate.sql +13 -0
  551. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/unlisten.sql +5 -0
  552. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/update.sql +91 -0
  553. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/vacuum.sql +43 -0
  554. squawk_cli-2.0.0/crates/squawk_parser/test_data/ok/values.sql +40 -0
  555. squawk_cli-2.0.0/crates/squawk_syntax/Cargo.toml +20 -0
  556. squawk_cli-2.0.0/crates/squawk_syntax/src/ast/node_ext.rs +52 -0
  557. squawk_cli-2.0.0/crates/squawk_syntax/src/ast/nodes.rs +4587 -0
  558. squawk_cli-2.0.0/crates/squawk_syntax/src/ast/support.rs +45 -0
  559. squawk_cli-2.0.0/crates/squawk_syntax/src/ast/traits.rs +34 -0
  560. squawk_cli-2.0.0/crates/squawk_syntax/src/ast.rs +126 -0
  561. squawk_cli-2.0.0/crates/squawk_syntax/src/lib.rs +384 -0
  562. squawk_cli-2.0.0/crates/squawk_syntax/src/parsing.rs +105 -0
  563. squawk_cli-2.0.0/crates/squawk_syntax/src/snapshots/squawk_syntax__test__alter_aggregate_params_validation.snap +64 -0
  564. squawk_cli-2.0.0/crates/squawk_syntax/src/snapshots/squawk_syntax__test__array_exprs_validation.snap +49 -0
  565. squawk_cli-2.0.0/crates/squawk_syntax/src/snapshots/squawk_syntax__test__create_aggregate_params_validation.snap +47 -0
  566. squawk_cli-2.0.0/crates/squawk_syntax/src/snapshots/squawk_syntax__test__custom_operators_validation.snap +105 -0
  567. squawk_cli-2.0.0/crates/squawk_syntax/src/snapshots/squawk_syntax__test__drop_aggregate_params_validation.snap +239 -0
  568. squawk_cli-2.0.0/crates/squawk_syntax/src/syntax_error.rs +71 -0
  569. squawk_cli-2.0.0/crates/squawk_syntax/src/syntax_node.rs +93 -0
  570. squawk_cli-2.0.0/crates/squawk_syntax/src/test.rs +51 -0
  571. squawk_cli-2.0.0/crates/squawk_syntax/src/token_text.rs +128 -0
  572. squawk_cli-2.0.0/crates/squawk_syntax/src/validation.rs +101 -0
  573. squawk_cli-2.0.0/crates/squawk_syntax/test_data/validation/alter_aggregate_params.sql +5 -0
  574. squawk_cli-2.0.0/crates/squawk_syntax/test_data/validation/array_exprs.sql +3 -0
  575. squawk_cli-2.0.0/crates/squawk_syntax/test_data/validation/create_aggregate_params.sql +4 -0
  576. squawk_cli-2.0.0/crates/squawk_syntax/test_data/validation/custom_operators.sql +8 -0
  577. squawk_cli-2.0.0/crates/squawk_syntax/test_data/validation/drop_aggregate_params.sql +32 -0
  578. squawk_cli-2.0.0/pyproject.toml +23 -0
  579. squawk_cli-1.6.1/Cargo.lock +0 -2367
  580. squawk_cli-1.6.1/Cargo.toml +0 -4
  581. squawk_cli-1.6.1/PKG-INFO +0 -294
  582. squawk_cli-1.6.1/cli/Cargo.toml +0 -33
  583. squawk_cli-1.6.1/cli/README.md +0 -273
  584. squawk_cli-1.6.1/cli/src/config.rs +0 -169
  585. squawk_cli-1.6.1/cli/src/file_finding.rs +0 -70
  586. squawk_cli-1.6.1/cli/src/main.rs +0 -243
  587. squawk_cli-1.6.1/cli/src/reporter.rs +0 -877
  588. squawk_cli-1.6.1/cli/src/snapshots/squawk__config__test_config__load_assume_in_transaction.snap +0 -19
  589. squawk_cli-1.6.1/cli/src/snapshots/squawk__config__test_config__load_cfg_full.snap +0 -31
  590. squawk_cli-1.6.1/cli/src/snapshots/squawk__config__test_config__load_excluded_paths.snap +0 -19
  591. squawk_cli-1.6.1/cli/src/snapshots/squawk__config__test_config__load_excluded_rules.snap +0 -19
  592. squawk_cli-1.6.1/cli/src/snapshots/squawk__config__test_config__load_fail_on_violations.snap +0 -19
  593. squawk_cli-1.6.1/cli/src/snapshots/squawk__config__test_config__load_pg_version.snap +0 -25
  594. squawk_cli-1.6.1/cli/src/snapshots/squawk__reporter__test_check_files__check_files_invalid_syntax.snap +0 -13
  595. squawk_cli-1.6.1/cli/src/snapshots/squawk__reporter__test_github_comment__generating_comment_multiple_files.snap +0 -36
  596. squawk_cli-1.6.1/cli/src/snapshots/squawk__reporter__test_github_comment__generating_comment_no_violations.snap +0 -50
  597. squawk_cli-1.6.1/cli/src/snapshots/squawk__reporter__test_github_comment__generating_no_violations_no_files.snap +0 -14
  598. squawk_cli-1.6.1/cli/src/snapshots/squawk__reporter__test_reporter__display_no_violations_tty.snap +0 -6
  599. squawk_cli-1.6.1/cli/src/snapshots/squawk__reporter__test_reporter__display_violations_tty.snap +0 -21
  600. squawk_cli-1.6.1/cli/src/snapshots/squawk__reporter__test_reporter__highlight_column_for_issues.snap +0 -8
  601. squawk_cli-1.6.1/cli/src/snapshots/squawk__reporter__test_reporter__span_offsets.snap +0 -42
  602. squawk_cli-1.6.1/cli/src/subcommand.rs +0 -233
  603. squawk_cli-1.6.1/github/Cargo.toml +0 -19
  604. squawk_cli-1.6.1/github/src/lib.rs +0 -80
  605. squawk_cli-1.6.1/linter/Cargo.toml +0 -22
  606. squawk_cli-1.6.1/linter/README.md +0 -4
  607. squawk_cli-1.6.1/linter/src/errors.rs +0 -20
  608. squawk_cli-1.6.1/linter/src/lib.rs +0 -484
  609. squawk_cli-1.6.1/linter/src/rules/README.md +0 -25
  610. squawk_cli-1.6.1/linter/src/rules/adding_field_with_default.rs +0 -266
  611. squawk_cli-1.6.1/linter/src/rules/adding_foreign_key_constraint.rs +0 -150
  612. squawk_cli-1.6.1/linter/src/rules/adding_not_null_field.rs +0 -79
  613. squawk_cli-1.6.1/linter/src/rules/adding_primary_key_constraint.rs +0 -103
  614. squawk_cli-1.6.1/linter/src/rules/adding_required_field.rs +0 -116
  615. squawk_cli-1.6.1/linter/src/rules/ban_alter_domain_with_add_constraint.rs +0 -71
  616. squawk_cli-1.6.1/linter/src/rules/ban_char_field.rs +0 -80
  617. squawk_cli-1.6.1/linter/src/rules/ban_concurrent_index_creation_in_transaction.rs +0 -122
  618. squawk_cli-1.6.1/linter/src/rules/ban_create_domain_with_constraint.rs +0 -64
  619. squawk_cli-1.6.1/linter/src/rules/ban_drop_column.rs +0 -55
  620. squawk_cli-1.6.1/linter/src/rules/ban_drop_database.rs +0 -52
  621. squawk_cli-1.6.1/linter/src/rules/ban_drop_not_null.rs +0 -51
  622. squawk_cli-1.6.1/linter/src/rules/ban_drop_table.rs +0 -51
  623. squawk_cli-1.6.1/linter/src/rules/changing_column_type.rs +0 -70
  624. squawk_cli-1.6.1/linter/src/rules/constraint_missing_not_valid.rs +0 -282
  625. squawk_cli-1.6.1/linter/src/rules/disallow_unique_constraint.rs +0 -172
  626. squawk_cli-1.6.1/linter/src/rules/mod.rs +0 -58
  627. squawk_cli-1.6.1/linter/src/rules/prefer_big_int.rs +0 -140
  628. squawk_cli-1.6.1/linter/src/rules/prefer_bigint_over_int.rs +0 -121
  629. squawk_cli-1.6.1/linter/src/rules/prefer_bigint_over_smallint.rs +0 -127
  630. squawk_cli-1.6.1/linter/src/rules/prefer_identity.rs +0 -117
  631. squawk_cli-1.6.1/linter/src/rules/prefer_robust_stmts.rs +0 -486
  632. squawk_cli-1.6.1/linter/src/rules/prefer_text_field.rs +0 -157
  633. squawk_cli-1.6.1/linter/src/rules/prefer_timestamptz.rs +0 -111
  634. squawk_cli-1.6.1/linter/src/rules/renaming_column.rs +0 -53
  635. squawk_cli-1.6.1/linter/src/rules/renaming_table.rs +0 -53
  636. squawk_cli-1.6.1/linter/src/rules/require_concurrent_index_creation.rs +0 -112
  637. squawk_cli-1.6.1/linter/src/rules/require_concurrent_index_deletion.rs +0 -88
  638. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__add_numbers_ok.snap +0 -23
  639. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__default_arbitrary_func_err.snap +0 -23
  640. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__default_bool_ok.snap +0 -5
  641. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__default_enum_ok.snap +0 -5
  642. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__default_integer_ok.snap +0 -5
  643. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__default_jsonb_ok.snap +0 -5
  644. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__default_now_func_ok.snap +0 -5
  645. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__default_random_with_args_err.snap +0 -23
  646. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__default_str_ok.snap +0 -5
  647. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__default_uuid_err.snap +0 -23
  648. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__default_volatile_func_err.snap +0 -23
  649. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__docs_example_bad.snap +0 -23
  650. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__docs_example_ok.snap +0 -5
  651. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__generated_stored.snap +0 -23
  652. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test_rules__adding_field_that_is_not_nullable.snap +0 -5
  653. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test_rules__adding_field_that_is_not_nullable_in_version_11.snap +0 -5
  654. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test_rules__adding_field_that_is_not_nullable_without_default.snap +0 -5
  655. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test_rules__set_not_null.snap +0 -23
  656. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_primary_key_constraint__test_rules__plain_primary_key-2.snap +0 -5
  657. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_primary_key_constraint__test_rules__plain_primary_key.snap +0 -23
  658. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_primary_key_constraint__test_rules__serial_primary_key.snap +0 -23
  659. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_required_field__test_rules__generated_stored.snap +0 -5
  660. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_required_field__test_rules__generated_stored_not_null.snap +0 -5
  661. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_required_field__test_rules__not_null_with_default.snap +0 -5
  662. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_required_field__test_rules__not_null_without_default.snap +0 -23
  663. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__adding_required_field__test_rules__nullable.snap +0 -5
  664. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__ban_alter_domain_with_add_constraint__test_rules__ban_alter_domain_with_add_constraint_works.snap +0 -21
  665. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test_rules__creating_table_with_char_errors.snap +0 -54
  666. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test_rules__creating_table_with_var_char_and_text_okay.snap +0 -5
  667. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__ban_concurrent_index_creation_in_transaction__test_rules__adding_index_concurrently_in_transaction-2.snap +0 -5
  668. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__ban_concurrent_index_creation_in_transaction__test_rules__adding_index_concurrently_in_transaction.snap +0 -23
  669. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__ban_concurrent_index_creation_in_transaction__test_rules__adding_index_concurrently_in_transaction_with_assume_in_transaction-2.snap +0 -5
  670. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__ban_concurrent_index_creation_in_transaction__test_rules__adding_index_concurrently_in_transaction_with_assume_in_transaction.snap +0 -23
  671. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__ban_concurrent_index_creation_in_transaction__test_rules__adding_index_concurrently_in_transaction_with_assume_in_transaction_but_outside.snap +0 -5
  672. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__ban_create_domain_with_constraint__test_rules__ban_create_domain_with_constraint_works.snap +0 -21
  673. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__ban_drop_column__test_rules__drop_column.snap +0 -20
  674. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__ban_drop_database__test_rules__ban_drop_database.snap +0 -46
  675. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__ban_drop_not_null__test_rules__ban_drop_not_null.snap +0 -20
  676. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__ban_drop_table__test_rules__ban_drop_table.snap +0 -46
  677. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__changing_column_type__test_rules__changing_field_type-2.snap +0 -40
  678. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__changing_column_type__test_rules__changing_field_type.snap +0 -23
  679. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test_rules__adding_check_constraint-2.snap +0 -5
  680. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test_rules__adding_check_constraint.snap +0 -23
  681. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test_rules__adding_foreign_key-2.snap +0 -5
  682. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test_rules__adding_foreign_key.snap +0 -23
  683. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test_rules__ensure_ignored_when_new_table.snap +0 -5
  684. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test_rules__ensure_ignored_when_new_table_with_assume_in_transaction.snap +0 -5
  685. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test_rules__not_valid_validate_in_transaction.snap +0 -12
  686. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test_rules__not_valid_validate_with_assume_in_transaction.snap +0 -12
  687. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test_rules__not_valid_validate_with_assume_in_transaction_with_explicit_commit.snap +0 -12
  688. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test_rules__regression_with_indexing_2.snap +0 -5
  689. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test_rules__adding_unique_constraint-2.snap +0 -5
  690. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test_rules__adding_unique_constraint-3.snap +0 -5
  691. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test_rules__adding_unique_constraint.snap +0 -23
  692. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test_rules__unique_constraint_inline_add_column.snap +0 -23
  693. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test_rules__unique_constraint_inline_add_column_unique.snap +0 -23
  694. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__prefer_big_int__test_rules__create_table_bad.snap +0 -126
  695. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__prefer_big_int__test_rules__create_table_many_errors.snap +0 -36
  696. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__prefer_bigint_over_int__test_rules__create_table_bad.snap +0 -66
  697. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__prefer_bigint_over_smallint__test_rules__create_table_bad.snap +0 -66
  698. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__prefer_identity__test_rules__prefer_identity_bad.snap +0 -96
  699. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test_rules__create_index_concurrently_unnamed.snap +0 -22
  700. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test_rules__disable_row_level_security.snap +0 -7
  701. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test_rules__enable_row_level_security.snap +0 -7
  702. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test_rules__enable_row_level_security_without_exists_check.snap +0 -7
  703. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test_rules__adding_column_non_text.snap +0 -21
  704. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__prefer_timestamptz__test_rules__alter_table.snap +0 -36
  705. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__renaming_column__test_rules__renaming_column.snap +0 -20
  706. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__renaming_table__test_rules__renaming_table.snap +0 -20
  707. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__require_concurrent_index_creation__test_rules__adding_index_non_concurrently-2.snap +0 -5
  708. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__require_concurrent_index_creation__test_rules__adding_index_non_concurrently.snap +0 -23
  709. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__require_concurrent_index_creation__test_rules__ensure_ignored_when_new_table.snap +0 -5
  710. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__require_concurrent_index_creation__test_rules__ensure_ignored_when_new_table_with_assume_in_transaction.snap +0 -5
  711. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test_rules__begin_repeated.snap +0 -23
  712. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test_rules__begin_with_assume_in_transaction.snap +0 -23
  713. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test_rules__commit_repeated.snap +0 -23
  714. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test_rules__commit_with_assume_in_transaction.snap +0 -23
  715. squawk_cli-1.6.1/linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test_rules__rollback_with_assume_in_transaction.snap +0 -23
  716. squawk_cli-1.6.1/linter/src/rules/test_utils.rs +0 -10
  717. squawk_cli-1.6.1/linter/src/rules/transaction_nesting.rs +0 -178
  718. squawk_cli-1.6.1/linter/src/rules/utils.rs +0 -57
  719. squawk_cli-1.6.1/linter/src/snapshots/squawk_linter__test_rules__rule_names_debug_snap.snap +0 -35
  720. squawk_cli-1.6.1/linter/src/snapshots/squawk_linter__test_rules__rule_names_display_snap.snap +0 -33
  721. squawk_cli-1.6.1/linter/src/snapshots/squawk_linter__versions__test_pg_version__parse.snap +0 -12
  722. squawk_cli-1.6.1/linter/src/versions.rs +0 -141
  723. squawk_cli-1.6.1/linter/src/violations.rs +0 -138
  724. squawk_cli-1.6.1/parser/Cargo.toml +0 -21
  725. squawk_cli-1.6.1/parser/README.md +0 -9
  726. squawk_cli-1.6.1/parser/src/ast.rs +0 -1007
  727. squawk_cli-1.6.1/parser/src/error.rs +0 -52
  728. squawk_cli-1.6.1/parser/src/lib.rs +0 -10
  729. squawk_cli-1.6.1/parser/src/parse.rs +0 -1379
  730. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__adding_index_non_concurrently.snap +0 -102
  731. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_column_default_with_function.snap +0 -56
  732. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_database_collation.snap +0 -21
  733. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_database_stmt.snap +0 -131
  734. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_default_privileges_stmt.snap +0 -81
  735. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_enum_stmt.snap +0 -36
  736. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_event_trigger_stmt.snap +0 -24
  737. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_extension_contents_stmt-2.snap +0 -130
  738. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_extension_contents_stmt.snap +0 -31
  739. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_foreign_data_wrapper.snap +0 -63
  740. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_foreign_server_stmt.snap +0 -63
  741. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_function_stmt.snap +0 -430
  742. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_object_depends_stmt.snap +0 -145
  743. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_op_class_stmt.snap +0 -101
  744. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_op_family_stmt.snap +0 -864
  745. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_operator_stmt.snap +0 -281
  746. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_policy_stmt-2.snap +0 -94
  747. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_policy_stmt.snap +0 -36
  748. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_publication.snap +0 -127
  749. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_role_set_stmt.snap +0 -51
  750. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_role_stmt.snap +0 -74
  751. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_sequence_stmt.snap +0 -54
  752. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_subscription_stmt.snap +0 -71
  753. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_system_stmt.snap +0 -58
  754. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_table_extension.snap +0 -43
  755. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_table_space_stmt.snap +0 -26
  756. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_ts_configuration_stmt.snap +0 -80
  757. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_ts_dictionary_stmt.snap +0 -61
  758. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__alter_user_mapping_stmt.snap +0 -54
  759. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__checkpoint.snap +0 -17
  760. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__close_portal_stmt.snap +0 -21
  761. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__cluster_stmt.snap +0 -68
  762. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__comment_on_stmt.snap +0 -98
  763. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__composite_type_stmt.snap +0 -105
  764. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_access_method_stmt.snap +0 -33
  765. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_cast_stmt.snap +0 -134
  766. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_conversion_stmt.snap +0 -42
  767. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_database_stmt.snap +0 -131
  768. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_domain_stmt.snap +0 -164
  769. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_enum_stmt.snap +0 -50
  770. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_event_trigger_stmt.snap +0 -33
  771. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_extension.snap +0 -21
  772. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_foreign_data_wrapper.snap +0 -21
  773. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_foreign_server_stmt.snap +0 -86
  774. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_foriegn_table_stmt.snap +0 -349
  775. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_function_stmt.snap +0 -99
  776. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_index_without_index_name.snap +0 -53
  777. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_op_class_stmt.snap +0 -1157
  778. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_plang_stmt.snap +0 -42
  779. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_policy_stmt.snap +0 -53
  780. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_procedure_stmt.snap +0 -199
  781. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_publication_stmt.snap +0 -132
  782. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_range_stmt.snap +0 -93
  783. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_role_stmt.snap +0 -86
  784. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_sequence_stmt.snap +0 -54
  785. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_stats_stmt.snap +0 -70
  786. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_subscription_stmt.snap +0 -40
  787. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_table_as_stmt.snap +0 -89
  788. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_transform_stmt.snap +0 -154
  789. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_trigger_stmt.snap +0 -53
  790. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_user_mapping_stmt.snap +0 -74
  791. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__create_view_stmt.snap +0 -189
  792. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__deallocate_stmt.snap +0 -17
  793. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__declare_cursor_stmt.snap +0 -73
  794. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__define_stmt-2.snap +0 -270
  795. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__define_stmt-3.snap +0 -148
  796. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__define_stmt.snap +0 -151
  797. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__discard_stmt.snap +0 -47
  798. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__do_stmt.snap +0 -40
  799. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__drop_database_stmt.snap +0 -37
  800. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__drop_extension.snap +0 -22
  801. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__drop_index.snap +0 -204
  802. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__drop_owned_stmt.snap +0 -36
  803. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__drop_role_set_stmt.snap +0 -33
  804. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__drop_subscription_stmt.snap +0 -24
  805. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__drop_user_mapping_stmt.snap +0 -35
  806. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__error_paths.snap +0 -9
  807. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__execute_stmt.snap +0 -71
  808. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__explain_stmt.snap +0 -184
  809. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__fetch_stmt.snap +0 -27
  810. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__import_foreign_schema_stmt.snap +0 -30
  811. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__json_index_operator.snap +0 -101
  812. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__listen_stmt.snap +0 -21
  813. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__load_stmt.snap +0 -21
  814. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__lock_stmt.snap +0 -70
  815. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__migration.snap +0 -132
  816. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__notify_stmt.snap +0 -37
  817. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_alter_collation_stmt.snap +0 -24
  818. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_alter_constraint_regression.snap +0 -102
  819. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_alter_domain_stmt.snap +0 -32
  820. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_alter_table_set_list.snap +0 -67
  821. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_attach_table_partition.snap +0 -96
  822. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_create_schema_stmt.snap +0 -21
  823. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_create_table_partition.snap +0 -91
  824. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_create_table_regression.snap +0 -162
  825. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_delete_stmt-2.snap +0 -79
  826. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_delete_stmt.snap +0 -32
  827. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_delete_stmt_2.snap +0 -79
  828. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_detach_table_partition.snap +0 -60
  829. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_func_call.snap +0 -72
  830. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_generated_column.snap +0 -128
  831. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_inh.snap +0 -106
  832. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_replica_identity_stmt.snap +0 -48
  833. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_set_operations_stmt-2.snap +0 -158
  834. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_set_operations_stmt.snap +0 -158
  835. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_set_operations_stmt_2.snap +0 -158
  836. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_sql_create_index.snap +0 -55
  837. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_sql_create_index_concurrently.snap +0 -55
  838. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_sql_create_unique_index_safe.snap +0 -59
  839. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_sql_query_json.snap +0 -139
  840. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parse_sql_query_json_works.snap +0 -139
  841. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parsing_copy_stmt.snap +0 -38
  842. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parsing_create_table.snap +0 -560
  843. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parsing_create_table_space_stmt.snap +0 -24
  844. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parsing_create_table_using_like.snap +0 -52
  845. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parsing_drop_table_space_stmt.snap +0 -21
  846. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parsing_grant_role.snap +0 -48
  847. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parsing_grant_stmt.snap +0 -69
  848. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parsing_insert_stmt.snap +0 -89
  849. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parsing_update_stmt.snap +0 -103
  850. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parsing_variable_set_stmt.snap +0 -38
  851. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__parsing_variable_show_stmt.snap +0 -19
  852. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__prepare_stmt.snap +0 -192
  853. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__reassign_owned_stmt.snap +0 -44
  854. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__refresh_material_view_stmt.snap +0 -59
  855. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__regression_update_table.snap +0 -51
  856. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__reindex_stmt.snap +0 -94
  857. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__rule_stmt.snap +0 -131
  858. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__security_label_stmt.snap +0 -40
  859. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__select_one.snap +0 -58
  860. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__select_string_literal.snap +0 -58
  861. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__set_constraints.snap +0 -58
  862. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__span_with_indent.snap +0 -58
  863. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__span_with_new_line_and_indent.snap +0 -58
  864. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__truncate_stmt.snap +0 -105
  865. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__unlisten_stmt.snap +0 -21
  866. squawk_cli-1.6.1/parser/src/snapshots/squawk_parser__parse__tests__vacuum_stmt.snap +0 -69
  867. squawk_cli-1.6.1/pyproject.toml +0 -23
  868. {squawk_cli-1.6.1 → squawk_cli-2.0.0/crates}/github/README.md +0 -0
  869. {squawk_cli-1.6.1 → squawk_cli-2.0.0/crates}/github/src/actions.rs +0 -0
  870. {squawk_cli-1.6.1 → squawk_cli-2.0.0/crates}/github/src/app.rs +0 -0
  871. {squawk_cli-1.6.1/linter → squawk_cli-2.0.0/crates/squawk_linter}/src/rules/non_volatile_built_in_functions.txt +0 -0
@@ -0,0 +1,3831 @@
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.17.0"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler"
16
+ version = "1.0.2"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
19
+
20
+ [[package]]
21
+ name = "aho-corasick"
22
+ version = "1.1.3"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
25
+ dependencies = [
26
+ "memchr",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "annotate-snippets"
31
+ version = "0.11.5"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "710e8eae58854cdc1790fcb56cca04d712a17be849eeb81da2a724bf4bae2bc4"
34
+ dependencies = [
35
+ "anstyle",
36
+ "unicode-width 0.2.0",
37
+ ]
38
+
39
+ [[package]]
40
+ name = "ansi_term"
41
+ version = "0.12.1"
42
+ source = "registry+https://github.com/rust-lang/crates.io-index"
43
+ checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
44
+ dependencies = [
45
+ "winapi 0.3.9",
46
+ ]
47
+
48
+ [[package]]
49
+ name = "anstream"
50
+ version = "0.6.18"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
53
+ dependencies = [
54
+ "anstyle",
55
+ "anstyle-parse",
56
+ "anstyle-query",
57
+ "anstyle-wincon",
58
+ "colorchoice",
59
+ "is_terminal_polyfill",
60
+ "utf8parse",
61
+ ]
62
+
63
+ [[package]]
64
+ name = "anstyle"
65
+ version = "1.0.10"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
68
+
69
+ [[package]]
70
+ name = "anstyle-parse"
71
+ version = "0.2.6"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
74
+ dependencies = [
75
+ "utf8parse",
76
+ ]
77
+
78
+ [[package]]
79
+ name = "anstyle-query"
80
+ version = "1.1.2"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
83
+ dependencies = [
84
+ "windows-sys 0.59.0",
85
+ ]
86
+
87
+ [[package]]
88
+ name = "anstyle-wincon"
89
+ version = "3.0.7"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
92
+ dependencies = [
93
+ "anstyle",
94
+ "once_cell",
95
+ "windows-sys 0.59.0",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "anyhow"
100
+ version = "1.0.98"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
103
+
104
+ [[package]]
105
+ name = "atomic-waker"
106
+ version = "1.1.2"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
109
+
110
+ [[package]]
111
+ name = "atty"
112
+ version = "0.2.14"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
115
+ dependencies = [
116
+ "hermit-abi",
117
+ "libc",
118
+ "winapi 0.3.9",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "autocfg"
123
+ version = "0.1.8"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "0dde43e75fd43e8a1bf86103336bc699aa8d17ad1be60c76c0bdfd4828e19b78"
126
+ dependencies = [
127
+ "autocfg 1.1.0",
128
+ ]
129
+
130
+ [[package]]
131
+ name = "autocfg"
132
+ version = "1.1.0"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
135
+
136
+ [[package]]
137
+ name = "backtrace"
138
+ version = "0.3.65"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "11a17d453482a265fd5f8479f2a3f405566e6ca627837aaddb85af8b1ab8ef61"
141
+ dependencies = [
142
+ "addr2line",
143
+ "cc",
144
+ "cfg-if 1.0.0",
145
+ "libc",
146
+ "miniz_oxide",
147
+ "object",
148
+ "rustc-demangle",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "base64"
153
+ version = "0.10.1"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
156
+ dependencies = [
157
+ "byteorder",
158
+ ]
159
+
160
+ [[package]]
161
+ name = "base64"
162
+ version = "0.12.3"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
165
+
166
+ [[package]]
167
+ name = "base64"
168
+ version = "0.13.0"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
171
+
172
+ [[package]]
173
+ name = "base64"
174
+ version = "0.22.1"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
177
+
178
+ [[package]]
179
+ name = "bindgen"
180
+ version = "0.66.1"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "f2b84e06fc203107bfbad243f4aba2af864eb7db3b1cf46ea0a023b0b433d2a7"
183
+ dependencies = [
184
+ "bitflags 2.6.0",
185
+ "cexpr",
186
+ "clang-sys",
187
+ "lazy_static",
188
+ "lazycell",
189
+ "log",
190
+ "peeking_take_while",
191
+ "prettyplease",
192
+ "proc-macro2",
193
+ "quote",
194
+ "regex",
195
+ "rustc-hash",
196
+ "shlex",
197
+ "syn 2.0.101",
198
+ "which",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "bitflags"
203
+ version = "1.3.2"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
206
+
207
+ [[package]]
208
+ name = "bitflags"
209
+ version = "2.6.0"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
212
+
213
+ [[package]]
214
+ name = "borsh"
215
+ version = "1.5.7"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce"
218
+ dependencies = [
219
+ "cfg_aliases",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "bumpalo"
224
+ version = "3.10.0"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3"
227
+
228
+ [[package]]
229
+ name = "byteorder"
230
+ version = "1.4.3"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
233
+
234
+ [[package]]
235
+ name = "bytes"
236
+ version = "0.4.12"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
239
+ dependencies = [
240
+ "byteorder",
241
+ "either",
242
+ "iovec",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "bytes"
247
+ version = "1.10.1"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
250
+
251
+ [[package]]
252
+ name = "camino"
253
+ version = "1.1.9"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3"
256
+
257
+ [[package]]
258
+ name = "cc"
259
+ version = "1.2.21"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "8691782945451c1c383942c4874dbe63814f61cb57ef773cda2972682b7bb3c0"
262
+ dependencies = [
263
+ "shlex",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "cexpr"
268
+ version = "0.6.0"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
271
+ dependencies = [
272
+ "nom",
273
+ ]
274
+
275
+ [[package]]
276
+ name = "cfg-if"
277
+ version = "0.1.10"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
280
+
281
+ [[package]]
282
+ name = "cfg-if"
283
+ version = "1.0.0"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
286
+
287
+ [[package]]
288
+ name = "cfg_aliases"
289
+ version = "0.2.1"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
292
+
293
+ [[package]]
294
+ name = "clang-sys"
295
+ version = "1.8.1"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
298
+ dependencies = [
299
+ "glob",
300
+ "libc",
301
+ "libloading",
302
+ ]
303
+
304
+ [[package]]
305
+ name = "clap"
306
+ version = "2.34.0"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
309
+ dependencies = [
310
+ "ansi_term",
311
+ "atty",
312
+ "bitflags 1.3.2",
313
+ "strsim 0.8.0",
314
+ "textwrap",
315
+ "unicode-width 0.1.9",
316
+ "vec_map",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "clap"
321
+ version = "4.5.37"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "eccb054f56cbd38340b380d4a8e69ef1f02f1af43db2f0cc817a4774d80ae071"
324
+ dependencies = [
325
+ "clap_builder",
326
+ "clap_derive",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "clap_builder"
331
+ version = "4.5.37"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "efd9466fac8543255d3b1fcad4762c5e116ffe808c8a3043d4263cd4fd4862a2"
334
+ dependencies = [
335
+ "anstream",
336
+ "anstyle",
337
+ "clap_lex",
338
+ "strsim 0.11.1",
339
+ ]
340
+
341
+ [[package]]
342
+ name = "clap_derive"
343
+ version = "4.5.32"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
346
+ dependencies = [
347
+ "heck 0.5.0",
348
+ "proc-macro2",
349
+ "quote",
350
+ "syn 2.0.101",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "clap_lex"
355
+ version = "0.7.4"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
358
+
359
+ [[package]]
360
+ name = "cloudabi"
361
+ version = "0.0.3"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
364
+ dependencies = [
365
+ "bitflags 1.3.2",
366
+ ]
367
+
368
+ [[package]]
369
+ name = "colorchoice"
370
+ version = "1.0.3"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
373
+
374
+ [[package]]
375
+ name = "console"
376
+ version = "0.11.3"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "8c0994e656bba7b922d8dd1245db90672ffb701e684e45be58f20719d69abc5a"
379
+ dependencies = [
380
+ "encode_unicode 0.3.6",
381
+ "lazy_static",
382
+ "libc",
383
+ "regex",
384
+ "terminal_size",
385
+ "termios",
386
+ "unicode-width 0.1.9",
387
+ "winapi 0.3.9",
388
+ "winapi-util",
389
+ ]
390
+
391
+ [[package]]
392
+ name = "console"
393
+ version = "0.15.11"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
396
+ dependencies = [
397
+ "encode_unicode 1.0.0",
398
+ "libc",
399
+ "once_cell",
400
+ "windows-sys 0.59.0",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "console_error_panic_hook"
405
+ version = "0.1.7"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
408
+ dependencies = [
409
+ "cfg-if 1.0.0",
410
+ "wasm-bindgen",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "console_log"
415
+ version = "1.0.0"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "be8aed40e4edbf4d3b4431ab260b63fdc40f5780a4766824329ea0f1eefe3c0f"
418
+ dependencies = [
419
+ "log",
420
+ "web-sys",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "convert_case"
425
+ version = "0.7.1"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "bb402b8d4c85569410425650ce3eddc7d698ed96d39a73f941b08fb63082f1e7"
428
+ dependencies = [
429
+ "unicode-segmentation",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "cookie"
434
+ version = "0.12.0"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "888604f00b3db336d2af898ec3c1d5d0ddf5e6d462220f2ededc33a87ac4bbd5"
437
+ dependencies = [
438
+ "time 0.1.44",
439
+ "url 1.7.2",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "cookie_store"
444
+ version = "0.7.0"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "46750b3f362965f197996c4448e4a0935e791bf7d6631bfce9ee0af3d24c919c"
447
+ dependencies = [
448
+ "cookie",
449
+ "failure",
450
+ "idna 0.1.5",
451
+ "log",
452
+ "publicsuffix",
453
+ "serde",
454
+ "serde_json",
455
+ "time 0.1.44",
456
+ "try_from",
457
+ "url 1.7.2",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "core-foundation"
462
+ version = "0.9.3"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
465
+ dependencies = [
466
+ "core-foundation-sys",
467
+ "libc",
468
+ ]
469
+
470
+ [[package]]
471
+ name = "core-foundation-sys"
472
+ version = "0.8.3"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
475
+
476
+ [[package]]
477
+ name = "countme"
478
+ version = "3.0.1"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
481
+
482
+ [[package]]
483
+ name = "crc32fast"
484
+ version = "1.3.2"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
487
+ dependencies = [
488
+ "cfg-if 1.0.0",
489
+ ]
490
+
491
+ [[package]]
492
+ name = "crossbeam-deque"
493
+ version = "0.7.4"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "c20ff29ded3204c5106278a81a38f4b482636ed4fa1e6cfbeef193291beb29ed"
496
+ dependencies = [
497
+ "crossbeam-epoch",
498
+ "crossbeam-utils",
499
+ "maybe-uninit",
500
+ ]
501
+
502
+ [[package]]
503
+ name = "crossbeam-epoch"
504
+ version = "0.8.2"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"
507
+ dependencies = [
508
+ "autocfg 1.1.0",
509
+ "cfg-if 0.1.10",
510
+ "crossbeam-utils",
511
+ "lazy_static",
512
+ "maybe-uninit",
513
+ "memoffset",
514
+ "scopeguard",
515
+ ]
516
+
517
+ [[package]]
518
+ name = "crossbeam-queue"
519
+ version = "0.2.3"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570"
522
+ dependencies = [
523
+ "cfg-if 0.1.10",
524
+ "crossbeam-utils",
525
+ "maybe-uninit",
526
+ ]
527
+
528
+ [[package]]
529
+ name = "crossbeam-utils"
530
+ version = "0.7.2"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
533
+ dependencies = [
534
+ "autocfg 1.1.0",
535
+ "cfg-if 0.1.10",
536
+ "lazy_static",
537
+ ]
538
+
539
+ [[package]]
540
+ name = "dir-test"
541
+ version = "0.4.1"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "62c013fe825864f3e4593f36426c1fa7a74f5603f13ca8d1af7a990c1cd94a79"
544
+ dependencies = [
545
+ "dir-test-macros",
546
+ ]
547
+
548
+ [[package]]
549
+ name = "dir-test-macros"
550
+ version = "0.4.1"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "d42f54d7b4a6bc2400fe5b338e35d1a335787585375322f49c5d5fe7b243da7e"
553
+ dependencies = [
554
+ "glob",
555
+ "proc-macro2",
556
+ "quote",
557
+ "syn 2.0.101",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "displaydoc"
562
+ version = "0.2.5"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
565
+ dependencies = [
566
+ "proc-macro2",
567
+ "quote",
568
+ "syn 2.0.101",
569
+ ]
570
+
571
+ [[package]]
572
+ name = "drop_bomb"
573
+ version = "0.1.5"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "9bda8e21c04aca2ae33ffc2fd8c23134f3cac46db123ba97bd9d3f3b8a4a85e1"
576
+
577
+ [[package]]
578
+ name = "dtoa"
579
+ version = "0.4.8"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
582
+
583
+ [[package]]
584
+ name = "either"
585
+ version = "1.7.0"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "3f107b87b6afc2a64fd13cac55fe06d6c8859f12d4b14cbcdd2c67d0976781be"
588
+
589
+ [[package]]
590
+ name = "encode_unicode"
591
+ version = "0.3.6"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
594
+
595
+ [[package]]
596
+ name = "encode_unicode"
597
+ version = "1.0.0"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
600
+
601
+ [[package]]
602
+ name = "encoding_rs"
603
+ version = "0.8.31"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
606
+ dependencies = [
607
+ "cfg-if 1.0.0",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "enum-iterator"
612
+ version = "2.1.0"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "c280b9e6b3ae19e152d8e31cf47f18389781e119d4013a2a2bb0180e5facc635"
615
+ dependencies = [
616
+ "enum-iterator-derive",
617
+ ]
618
+
619
+ [[package]]
620
+ name = "enum-iterator-derive"
621
+ version = "1.4.0"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "a1ab991c1362ac86c61ab6f556cff143daa22e5a15e4e189df818b2fd19fe65b"
624
+ dependencies = [
625
+ "proc-macro2",
626
+ "quote",
627
+ "syn 2.0.101",
628
+ ]
629
+
630
+ [[package]]
631
+ name = "equivalent"
632
+ version = "1.0.2"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
635
+
636
+ [[package]]
637
+ name = "errno"
638
+ version = "0.3.10"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
641
+ dependencies = [
642
+ "libc",
643
+ "windows-sys 0.59.0",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "failure"
648
+ version = "0.1.8"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86"
651
+ dependencies = [
652
+ "backtrace",
653
+ "failure_derive",
654
+ ]
655
+
656
+ [[package]]
657
+ name = "failure_derive"
658
+ version = "0.1.8"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4"
661
+ dependencies = [
662
+ "proc-macro2",
663
+ "quote",
664
+ "syn 1.0.109",
665
+ "synstructure 0.12.6",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "fastrand"
670
+ version = "1.7.0"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf"
673
+ dependencies = [
674
+ "instant",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "fixedbitset"
679
+ version = "0.5.7"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
682
+
683
+ [[package]]
684
+ name = "flate2"
685
+ version = "1.0.24"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
688
+ dependencies = [
689
+ "crc32fast",
690
+ "miniz_oxide",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "fnv"
695
+ version = "1.0.7"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
698
+
699
+ [[package]]
700
+ name = "foreign-types"
701
+ version = "0.3.2"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
704
+ dependencies = [
705
+ "foreign-types-shared",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "foreign-types-shared"
710
+ version = "0.1.1"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
713
+
714
+ [[package]]
715
+ name = "form_urlencoded"
716
+ version = "1.2.1"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
719
+ dependencies = [
720
+ "percent-encoding 2.3.1",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "fs_extra"
725
+ version = "1.3.0"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
728
+
729
+ [[package]]
730
+ name = "fuchsia-cprng"
731
+ version = "0.1.1"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
734
+
735
+ [[package]]
736
+ name = "fuchsia-zircon"
737
+ version = "0.3.3"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
740
+ dependencies = [
741
+ "bitflags 1.3.2",
742
+ "fuchsia-zircon-sys",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "fuchsia-zircon-sys"
747
+ version = "0.3.3"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
750
+
751
+ [[package]]
752
+ name = "futures"
753
+ version = "0.1.31"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678"
756
+
757
+ [[package]]
758
+ name = "futures-channel"
759
+ version = "0.3.31"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
762
+ dependencies = [
763
+ "futures-core",
764
+ "futures-sink",
765
+ ]
766
+
767
+ [[package]]
768
+ name = "futures-core"
769
+ version = "0.3.31"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
772
+
773
+ [[package]]
774
+ name = "futures-cpupool"
775
+ version = "0.1.8"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4"
778
+ dependencies = [
779
+ "futures",
780
+ "num_cpus",
781
+ ]
782
+
783
+ [[package]]
784
+ name = "futures-io"
785
+ version = "0.3.31"
786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
787
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
788
+
789
+ [[package]]
790
+ name = "futures-sink"
791
+ version = "0.3.31"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
794
+
795
+ [[package]]
796
+ name = "futures-task"
797
+ version = "0.3.31"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
800
+
801
+ [[package]]
802
+ name = "futures-util"
803
+ version = "0.3.31"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
806
+ dependencies = [
807
+ "futures-core",
808
+ "futures-io",
809
+ "futures-sink",
810
+ "futures-task",
811
+ "memchr",
812
+ "pin-project-lite",
813
+ "pin-utils",
814
+ "slab",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "getrandom"
819
+ version = "0.2.16"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
822
+ dependencies = [
823
+ "cfg-if 1.0.0",
824
+ "libc",
825
+ "wasi 0.11.0+wasi-snapshot-preview1",
826
+ ]
827
+
828
+ [[package]]
829
+ name = "gimli"
830
+ version = "0.26.1"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "78cc372d058dcf6d5ecd98510e7fbc9e5aec4d21de70f65fea8fecebcd881bd4"
833
+
834
+ [[package]]
835
+ name = "glob"
836
+ version = "0.3.1"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
839
+
840
+ [[package]]
841
+ name = "h2"
842
+ version = "0.1.26"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462"
845
+ dependencies = [
846
+ "byteorder",
847
+ "bytes 0.4.12",
848
+ "fnv",
849
+ "futures",
850
+ "http 0.1.21",
851
+ "indexmap 1.9.1",
852
+ "log",
853
+ "slab",
854
+ "string",
855
+ "tokio-io",
856
+ ]
857
+
858
+ [[package]]
859
+ name = "h2"
860
+ version = "0.4.9"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "75249d144030531f8dee69fe9cea04d3edf809a017ae445e2abdff6629e86633"
863
+ dependencies = [
864
+ "atomic-waker",
865
+ "bytes 1.10.1",
866
+ "fnv",
867
+ "futures-core",
868
+ "futures-sink",
869
+ "http 1.3.1",
870
+ "indexmap 2.9.0",
871
+ "slab",
872
+ "tokio 1.44.2",
873
+ "tokio-util",
874
+ "tracing",
875
+ ]
876
+
877
+ [[package]]
878
+ name = "hashbrown"
879
+ version = "0.12.1"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3"
882
+
883
+ [[package]]
884
+ name = "hashbrown"
885
+ version = "0.14.5"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
888
+
889
+ [[package]]
890
+ name = "hashbrown"
891
+ version = "0.15.3"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
894
+
895
+ [[package]]
896
+ name = "heck"
897
+ version = "0.3.3"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
900
+ dependencies = [
901
+ "unicode-segmentation",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "heck"
906
+ version = "0.5.0"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
909
+
910
+ [[package]]
911
+ name = "hermit-abi"
912
+ version = "0.1.19"
913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
914
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
915
+ dependencies = [
916
+ "libc",
917
+ ]
918
+
919
+ [[package]]
920
+ name = "home"
921
+ version = "0.5.9"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
924
+ dependencies = [
925
+ "windows-sys 0.52.0",
926
+ ]
927
+
928
+ [[package]]
929
+ name = "http"
930
+ version = "0.1.21"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "d6ccf5ede3a895d8856620237b2f02972c1bbc78d2965ad7fe8838d4a0ed41f0"
933
+ dependencies = [
934
+ "bytes 0.4.12",
935
+ "fnv",
936
+ "itoa 0.4.8",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "http"
941
+ version = "1.3.1"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
944
+ dependencies = [
945
+ "bytes 1.10.1",
946
+ "fnv",
947
+ "itoa 1.0.2",
948
+ ]
949
+
950
+ [[package]]
951
+ name = "http-body"
952
+ version = "0.1.0"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d"
955
+ dependencies = [
956
+ "bytes 0.4.12",
957
+ "futures",
958
+ "http 0.1.21",
959
+ "tokio-buf",
960
+ ]
961
+
962
+ [[package]]
963
+ name = "http-body"
964
+ version = "1.0.1"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
967
+ dependencies = [
968
+ "bytes 1.10.1",
969
+ "http 1.3.1",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "http-body-util"
974
+ version = "0.1.3"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
977
+ dependencies = [
978
+ "bytes 1.10.1",
979
+ "futures-core",
980
+ "http 1.3.1",
981
+ "http-body 1.0.1",
982
+ "pin-project-lite",
983
+ ]
984
+
985
+ [[package]]
986
+ name = "httparse"
987
+ version = "1.10.1"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
990
+
991
+ [[package]]
992
+ name = "hyper"
993
+ version = "0.12.36"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "5c843caf6296fc1f93444735205af9ed4e109a539005abb2564ae1d6fad34c52"
996
+ dependencies = [
997
+ "bytes 0.4.12",
998
+ "futures",
999
+ "futures-cpupool",
1000
+ "h2 0.1.26",
1001
+ "http 0.1.21",
1002
+ "http-body 0.1.0",
1003
+ "httparse",
1004
+ "iovec",
1005
+ "itoa 0.4.8",
1006
+ "log",
1007
+ "net2",
1008
+ "rustc_version",
1009
+ "time 0.1.44",
1010
+ "tokio 0.1.22",
1011
+ "tokio-buf",
1012
+ "tokio-executor",
1013
+ "tokio-io",
1014
+ "tokio-reactor",
1015
+ "tokio-tcp",
1016
+ "tokio-threadpool",
1017
+ "tokio-timer",
1018
+ "want 0.2.0",
1019
+ ]
1020
+
1021
+ [[package]]
1022
+ name = "hyper"
1023
+ version = "1.6.0"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
1026
+ dependencies = [
1027
+ "bytes 1.10.1",
1028
+ "futures-channel",
1029
+ "futures-util",
1030
+ "h2 0.4.9",
1031
+ "http 1.3.1",
1032
+ "http-body 1.0.1",
1033
+ "httparse",
1034
+ "itoa 1.0.2",
1035
+ "pin-project-lite",
1036
+ "smallvec 1.15.0",
1037
+ "tokio 1.44.2",
1038
+ "want 0.3.1",
1039
+ ]
1040
+
1041
+ [[package]]
1042
+ name = "hyper-rustls"
1043
+ version = "0.27.5"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
1046
+ dependencies = [
1047
+ "futures-util",
1048
+ "http 1.3.1",
1049
+ "hyper 1.6.0",
1050
+ "hyper-util",
1051
+ "rustls",
1052
+ "rustls-pki-types",
1053
+ "tokio 1.44.2",
1054
+ "tokio-rustls",
1055
+ "tower-service",
1056
+ ]
1057
+
1058
+ [[package]]
1059
+ name = "hyper-tls"
1060
+ version = "0.3.2"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "3a800d6aa50af4b5850b2b0f659625ce9504df908e9733b635720483be26174f"
1063
+ dependencies = [
1064
+ "bytes 0.4.12",
1065
+ "futures",
1066
+ "hyper 0.12.36",
1067
+ "native-tls",
1068
+ "tokio-io",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "hyper-tls"
1073
+ version = "0.6.0"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
1076
+ dependencies = [
1077
+ "bytes 1.10.1",
1078
+ "http-body-util",
1079
+ "hyper 1.6.0",
1080
+ "hyper-util",
1081
+ "native-tls",
1082
+ "tokio 1.44.2",
1083
+ "tokio-native-tls",
1084
+ "tower-service",
1085
+ ]
1086
+
1087
+ [[package]]
1088
+ name = "hyper-util"
1089
+ version = "0.1.11"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
1092
+ dependencies = [
1093
+ "bytes 1.10.1",
1094
+ "futures-channel",
1095
+ "futures-util",
1096
+ "http 1.3.1",
1097
+ "http-body 1.0.1",
1098
+ "hyper 1.6.0",
1099
+ "libc",
1100
+ "pin-project-lite",
1101
+ "socket2",
1102
+ "tokio 1.44.2",
1103
+ "tower-service",
1104
+ "tracing",
1105
+ ]
1106
+
1107
+ [[package]]
1108
+ name = "icu_collections"
1109
+ version = "1.5.0"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1112
+ dependencies = [
1113
+ "displaydoc",
1114
+ "yoke",
1115
+ "zerofrom",
1116
+ "zerovec",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "icu_locid"
1121
+ version = "1.5.0"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1124
+ dependencies = [
1125
+ "displaydoc",
1126
+ "litemap",
1127
+ "tinystr",
1128
+ "writeable",
1129
+ "zerovec",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "icu_locid_transform"
1134
+ version = "1.5.0"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
1137
+ dependencies = [
1138
+ "displaydoc",
1139
+ "icu_locid",
1140
+ "icu_locid_transform_data",
1141
+ "icu_provider",
1142
+ "tinystr",
1143
+ "zerovec",
1144
+ ]
1145
+
1146
+ [[package]]
1147
+ name = "icu_locid_transform_data"
1148
+ version = "1.5.1"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
1151
+
1152
+ [[package]]
1153
+ name = "icu_normalizer"
1154
+ version = "1.5.0"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1157
+ dependencies = [
1158
+ "displaydoc",
1159
+ "icu_collections",
1160
+ "icu_normalizer_data",
1161
+ "icu_properties",
1162
+ "icu_provider",
1163
+ "smallvec 1.15.0",
1164
+ "utf16_iter",
1165
+ "utf8_iter",
1166
+ "write16",
1167
+ "zerovec",
1168
+ ]
1169
+
1170
+ [[package]]
1171
+ name = "icu_normalizer_data"
1172
+ version = "1.5.1"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
1175
+
1176
+ [[package]]
1177
+ name = "icu_properties"
1178
+ version = "1.5.1"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1181
+ dependencies = [
1182
+ "displaydoc",
1183
+ "icu_collections",
1184
+ "icu_locid_transform",
1185
+ "icu_properties_data",
1186
+ "icu_provider",
1187
+ "tinystr",
1188
+ "zerovec",
1189
+ ]
1190
+
1191
+ [[package]]
1192
+ name = "icu_properties_data"
1193
+ version = "1.5.1"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
1196
+
1197
+ [[package]]
1198
+ name = "icu_provider"
1199
+ version = "1.5.0"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1202
+ dependencies = [
1203
+ "displaydoc",
1204
+ "icu_locid",
1205
+ "icu_provider_macros",
1206
+ "stable_deref_trait",
1207
+ "tinystr",
1208
+ "writeable",
1209
+ "yoke",
1210
+ "zerofrom",
1211
+ "zerovec",
1212
+ ]
1213
+
1214
+ [[package]]
1215
+ name = "icu_provider_macros"
1216
+ version = "1.5.0"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1219
+ dependencies = [
1220
+ "proc-macro2",
1221
+ "quote",
1222
+ "syn 2.0.101",
1223
+ ]
1224
+
1225
+ [[package]]
1226
+ name = "idna"
1227
+ version = "0.1.5"
1228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1229
+ checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e"
1230
+ dependencies = [
1231
+ "matches",
1232
+ "unicode-bidi",
1233
+ "unicode-normalization",
1234
+ ]
1235
+
1236
+ [[package]]
1237
+ name = "idna"
1238
+ version = "0.2.3"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
1241
+ dependencies = [
1242
+ "matches",
1243
+ "unicode-bidi",
1244
+ "unicode-normalization",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "idna"
1249
+ version = "1.0.3"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1252
+ dependencies = [
1253
+ "idna_adapter",
1254
+ "smallvec 1.15.0",
1255
+ "utf8_iter",
1256
+ ]
1257
+
1258
+ [[package]]
1259
+ name = "idna_adapter"
1260
+ version = "1.2.0"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1263
+ dependencies = [
1264
+ "icu_normalizer",
1265
+ "icu_properties",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "indexmap"
1270
+ version = "1.9.1"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
1273
+ dependencies = [
1274
+ "autocfg 1.1.0",
1275
+ "hashbrown 0.12.1",
1276
+ ]
1277
+
1278
+ [[package]]
1279
+ name = "indexmap"
1280
+ version = "2.9.0"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
1283
+ dependencies = [
1284
+ "equivalent",
1285
+ "hashbrown 0.15.3",
1286
+ ]
1287
+
1288
+ [[package]]
1289
+ name = "insta"
1290
+ version = "1.43.1"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "154934ea70c58054b556dd430b99a98c2a7ff5309ac9891597e339b5c28f4371"
1293
+ dependencies = [
1294
+ "console 0.15.11",
1295
+ "once_cell",
1296
+ "similar",
1297
+ ]
1298
+
1299
+ [[package]]
1300
+ name = "instant"
1301
+ version = "0.1.12"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
1304
+ dependencies = [
1305
+ "cfg-if 1.0.0",
1306
+ ]
1307
+
1308
+ [[package]]
1309
+ name = "iovec"
1310
+ version = "0.1.4"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
1313
+ dependencies = [
1314
+ "libc",
1315
+ ]
1316
+
1317
+ [[package]]
1318
+ name = "ipnet"
1319
+ version = "2.11.0"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1322
+
1323
+ [[package]]
1324
+ name = "is_terminal_polyfill"
1325
+ version = "1.70.1"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1328
+
1329
+ [[package]]
1330
+ name = "itertools"
1331
+ version = "0.10.5"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1334
+ dependencies = [
1335
+ "either",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "itertools"
1340
+ version = "0.14.0"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1343
+ dependencies = [
1344
+ "either",
1345
+ ]
1346
+
1347
+ [[package]]
1348
+ name = "itoa"
1349
+ version = "0.4.8"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
1352
+
1353
+ [[package]]
1354
+ name = "itoa"
1355
+ version = "1.0.2"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
1358
+
1359
+ [[package]]
1360
+ name = "js-sys"
1361
+ version = "0.3.77"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1364
+ dependencies = [
1365
+ "once_cell",
1366
+ "wasm-bindgen",
1367
+ ]
1368
+
1369
+ [[package]]
1370
+ name = "jsonwebtoken"
1371
+ version = "8.1.1"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "1aa4b4af834c6cfd35d8763d359661b90f2e45d8f750a0849156c7f4671af09c"
1374
+ dependencies = [
1375
+ "base64 0.13.0",
1376
+ "pem",
1377
+ "ring 0.16.20",
1378
+ "serde",
1379
+ "serde_json",
1380
+ "simple_asn1",
1381
+ ]
1382
+
1383
+ [[package]]
1384
+ name = "kernel32-sys"
1385
+ version = "0.2.2"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
1388
+ dependencies = [
1389
+ "winapi 0.2.8",
1390
+ "winapi-build",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "lazy_static"
1395
+ version = "1.5.0"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1398
+
1399
+ [[package]]
1400
+ name = "lazycell"
1401
+ version = "1.3.0"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1404
+
1405
+ [[package]]
1406
+ name = "libc"
1407
+ version = "0.2.172"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
1410
+
1411
+ [[package]]
1412
+ name = "libloading"
1413
+ version = "0.8.6"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
1416
+ dependencies = [
1417
+ "cfg-if 1.0.0",
1418
+ "windows-targets 0.52.6",
1419
+ ]
1420
+
1421
+ [[package]]
1422
+ name = "line-index"
1423
+ version = "0.1.2"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "3e27e0ed5a392a7f5ba0b3808a2afccff16c64933312c84b57618b49d1209bd2"
1426
+ dependencies = [
1427
+ "nohash-hasher",
1428
+ "text-size",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "linux-raw-sys"
1433
+ version = "0.4.14"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
1436
+
1437
+ [[package]]
1438
+ name = "litemap"
1439
+ version = "0.7.5"
1440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1441
+ checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
1442
+
1443
+ [[package]]
1444
+ name = "lock_api"
1445
+ version = "0.3.4"
1446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1447
+ checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75"
1448
+ dependencies = [
1449
+ "scopeguard",
1450
+ ]
1451
+
1452
+ [[package]]
1453
+ name = "log"
1454
+ version = "0.4.27"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1457
+
1458
+ [[package]]
1459
+ name = "matches"
1460
+ version = "0.1.9"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
1463
+
1464
+ [[package]]
1465
+ name = "maybe-uninit"
1466
+ version = "2.0.0"
1467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1468
+ checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
1469
+
1470
+ [[package]]
1471
+ name = "memchr"
1472
+ version = "2.5.0"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
1475
+
1476
+ [[package]]
1477
+ name = "memoffset"
1478
+ version = "0.5.6"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "043175f069eda7b85febe4a74abbaeff828d9f8b448515d3151a14a3542811aa"
1481
+ dependencies = [
1482
+ "autocfg 1.1.0",
1483
+ ]
1484
+
1485
+ [[package]]
1486
+ name = "mime"
1487
+ version = "0.3.16"
1488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1489
+ checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
1490
+
1491
+ [[package]]
1492
+ name = "mime_guess"
1493
+ version = "2.0.4"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
1496
+ dependencies = [
1497
+ "mime",
1498
+ "unicase",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "minicov"
1503
+ version = "0.3.7"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "f27fe9f1cc3c22e1687f9446c2083c4c5fc7f0bcf1c7a86bdbded14985895b4b"
1506
+ dependencies = [
1507
+ "cc",
1508
+ "walkdir",
1509
+ ]
1510
+
1511
+ [[package]]
1512
+ name = "minimal-lexical"
1513
+ version = "0.2.1"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1516
+
1517
+ [[package]]
1518
+ name = "miniz_oxide"
1519
+ version = "0.5.3"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
1522
+ dependencies = [
1523
+ "adler",
1524
+ ]
1525
+
1526
+ [[package]]
1527
+ name = "mio"
1528
+ version = "0.6.23"
1529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+ checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
1531
+ dependencies = [
1532
+ "cfg-if 0.1.10",
1533
+ "fuchsia-zircon",
1534
+ "fuchsia-zircon-sys",
1535
+ "iovec",
1536
+ "kernel32-sys",
1537
+ "libc",
1538
+ "log",
1539
+ "miow",
1540
+ "net2",
1541
+ "slab",
1542
+ "winapi 0.2.8",
1543
+ ]
1544
+
1545
+ [[package]]
1546
+ name = "mio"
1547
+ version = "1.0.3"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1550
+ dependencies = [
1551
+ "libc",
1552
+ "wasi 0.11.0+wasi-snapshot-preview1",
1553
+ "windows-sys 0.52.0",
1554
+ ]
1555
+
1556
+ [[package]]
1557
+ name = "miow"
1558
+ version = "0.2.2"
1559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1560
+ checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
1561
+ dependencies = [
1562
+ "kernel32-sys",
1563
+ "net2",
1564
+ "winapi 0.2.8",
1565
+ "ws2_32-sys",
1566
+ ]
1567
+
1568
+ [[package]]
1569
+ name = "multimap"
1570
+ version = "0.10.0"
1571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1572
+ checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
1573
+
1574
+ [[package]]
1575
+ name = "native-tls"
1576
+ version = "0.2.10"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
1579
+ dependencies = [
1580
+ "lazy_static",
1581
+ "libc",
1582
+ "log",
1583
+ "openssl",
1584
+ "openssl-probe",
1585
+ "openssl-sys",
1586
+ "schannel",
1587
+ "security-framework",
1588
+ "security-framework-sys",
1589
+ "tempfile",
1590
+ ]
1591
+
1592
+ [[package]]
1593
+ name = "net2"
1594
+ version = "0.2.37"
1595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1596
+ checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
1597
+ dependencies = [
1598
+ "cfg-if 0.1.10",
1599
+ "libc",
1600
+ "winapi 0.3.9",
1601
+ ]
1602
+
1603
+ [[package]]
1604
+ name = "nohash-hasher"
1605
+ version = "0.2.0"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
1608
+
1609
+ [[package]]
1610
+ name = "nom"
1611
+ version = "7.1.3"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1614
+ dependencies = [
1615
+ "memchr",
1616
+ "minimal-lexical",
1617
+ ]
1618
+
1619
+ [[package]]
1620
+ name = "num-bigint"
1621
+ version = "0.4.3"
1622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1623
+ checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
1624
+ dependencies = [
1625
+ "autocfg 1.1.0",
1626
+ "num-integer",
1627
+ "num-traits",
1628
+ ]
1629
+
1630
+ [[package]]
1631
+ name = "num-integer"
1632
+ version = "0.1.45"
1633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+ checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
1635
+ dependencies = [
1636
+ "autocfg 1.1.0",
1637
+ "num-traits",
1638
+ ]
1639
+
1640
+ [[package]]
1641
+ name = "num-traits"
1642
+ version = "0.2.15"
1643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1644
+ checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
1645
+ dependencies = [
1646
+ "autocfg 1.1.0",
1647
+ ]
1648
+
1649
+ [[package]]
1650
+ name = "num_cpus"
1651
+ version = "1.13.1"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
1654
+ dependencies = [
1655
+ "hermit-abi",
1656
+ "libc",
1657
+ ]
1658
+
1659
+ [[package]]
1660
+ name = "num_threads"
1661
+ version = "0.1.6"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
1664
+ dependencies = [
1665
+ "libc",
1666
+ ]
1667
+
1668
+ [[package]]
1669
+ name = "object"
1670
+ version = "0.28.4"
1671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1672
+ checksum = "e42c982f2d955fac81dd7e1d0e1426a7d702acd9c98d19ab01083a6a0328c424"
1673
+ dependencies = [
1674
+ "memchr",
1675
+ ]
1676
+
1677
+ [[package]]
1678
+ name = "once_cell"
1679
+ version = "1.21.3"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1682
+
1683
+ [[package]]
1684
+ name = "openssl"
1685
+ version = "0.10.40"
1686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1687
+ checksum = "fb81a6430ac911acb25fe5ac8f1d2af1b4ea8a4fdfda0f1ee4292af2e2d8eb0e"
1688
+ dependencies = [
1689
+ "bitflags 1.3.2",
1690
+ "cfg-if 1.0.0",
1691
+ "foreign-types",
1692
+ "libc",
1693
+ "once_cell",
1694
+ "openssl-macros",
1695
+ "openssl-sys",
1696
+ ]
1697
+
1698
+ [[package]]
1699
+ name = "openssl-macros"
1700
+ version = "0.1.0"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
1703
+ dependencies = [
1704
+ "proc-macro2",
1705
+ "quote",
1706
+ "syn 1.0.109",
1707
+ ]
1708
+
1709
+ [[package]]
1710
+ name = "openssl-probe"
1711
+ version = "0.1.5"
1712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1713
+ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
1714
+
1715
+ [[package]]
1716
+ name = "openssl-src"
1717
+ version = "111.25.0+1.1.1t"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "3173cd3626c43e3854b1b727422a276e568d9ec5fe8cec197822cf52cfb743d6"
1720
+ dependencies = [
1721
+ "cc",
1722
+ ]
1723
+
1724
+ [[package]]
1725
+ name = "openssl-sys"
1726
+ version = "0.9.74"
1727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1728
+ checksum = "835363342df5fba8354c5b453325b110ffd54044e588c539cf2f20a8014e4cb1"
1729
+ dependencies = [
1730
+ "autocfg 1.1.0",
1731
+ "cc",
1732
+ "libc",
1733
+ "openssl-src",
1734
+ "pkg-config",
1735
+ "vcpkg",
1736
+ ]
1737
+
1738
+ [[package]]
1739
+ name = "parking_lot"
1740
+ version = "0.9.0"
1741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1742
+ checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252"
1743
+ dependencies = [
1744
+ "lock_api",
1745
+ "parking_lot_core",
1746
+ "rustc_version",
1747
+ ]
1748
+
1749
+ [[package]]
1750
+ name = "parking_lot_core"
1751
+ version = "0.6.2"
1752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1753
+ checksum = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b"
1754
+ dependencies = [
1755
+ "cfg-if 0.1.10",
1756
+ "cloudabi",
1757
+ "libc",
1758
+ "redox_syscall 0.1.57",
1759
+ "rustc_version",
1760
+ "smallvec 0.6.14",
1761
+ "winapi 0.3.9",
1762
+ ]
1763
+
1764
+ [[package]]
1765
+ name = "peeking_take_while"
1766
+ version = "0.1.2"
1767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1768
+ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
1769
+
1770
+ [[package]]
1771
+ name = "pem"
1772
+ version = "1.0.2"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "e9a3b09a20e374558580a4914d3b7d89bd61b954a5a5e1dcbea98753addb1947"
1775
+ dependencies = [
1776
+ "base64 0.13.0",
1777
+ ]
1778
+
1779
+ [[package]]
1780
+ name = "percent-encoding"
1781
+ version = "1.0.1"
1782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1783
+ checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"
1784
+
1785
+ [[package]]
1786
+ name = "percent-encoding"
1787
+ version = "2.3.1"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1790
+
1791
+ [[package]]
1792
+ name = "petgraph"
1793
+ version = "0.7.1"
1794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1795
+ checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
1796
+ dependencies = [
1797
+ "fixedbitset",
1798
+ "indexmap 2.9.0",
1799
+ ]
1800
+
1801
+ [[package]]
1802
+ name = "pg_query"
1803
+ version = "6.1.0"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "f71c7c56dfe299ec6f98aa210aa23458be3b0610c485be60a5873c2f3627c40e"
1806
+ dependencies = [
1807
+ "bindgen",
1808
+ "cc",
1809
+ "fs_extra",
1810
+ "glob",
1811
+ "itertools 0.10.5",
1812
+ "prost",
1813
+ "prost-build",
1814
+ "serde",
1815
+ "serde_json",
1816
+ "thiserror",
1817
+ ]
1818
+
1819
+ [[package]]
1820
+ name = "pin-project-lite"
1821
+ version = "0.2.16"
1822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1823
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1824
+
1825
+ [[package]]
1826
+ name = "pin-utils"
1827
+ version = "0.1.0"
1828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1829
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1830
+
1831
+ [[package]]
1832
+ name = "pkg-config"
1833
+ version = "0.3.25"
1834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1835
+ checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
1836
+
1837
+ [[package]]
1838
+ name = "prettyplease"
1839
+ version = "0.2.32"
1840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1841
+ checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6"
1842
+ dependencies = [
1843
+ "proc-macro2",
1844
+ "syn 2.0.101",
1845
+ ]
1846
+
1847
+ [[package]]
1848
+ name = "proc-macro-error"
1849
+ version = "1.0.4"
1850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1851
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
1852
+ dependencies = [
1853
+ "proc-macro-error-attr",
1854
+ "proc-macro2",
1855
+ "quote",
1856
+ "syn 1.0.109",
1857
+ "version_check",
1858
+ ]
1859
+
1860
+ [[package]]
1861
+ name = "proc-macro-error-attr"
1862
+ version = "1.0.4"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
1865
+ dependencies = [
1866
+ "proc-macro2",
1867
+ "quote",
1868
+ "version_check",
1869
+ ]
1870
+
1871
+ [[package]]
1872
+ name = "proc-macro2"
1873
+ version = "1.0.95"
1874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1875
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
1876
+ dependencies = [
1877
+ "unicode-ident",
1878
+ ]
1879
+
1880
+ [[package]]
1881
+ name = "prost"
1882
+ version = "0.13.5"
1883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1884
+ checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
1885
+ dependencies = [
1886
+ "bytes 1.10.1",
1887
+ "prost-derive",
1888
+ ]
1889
+
1890
+ [[package]]
1891
+ name = "prost-build"
1892
+ version = "0.13.5"
1893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1894
+ checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf"
1895
+ dependencies = [
1896
+ "heck 0.5.0",
1897
+ "itertools 0.14.0",
1898
+ "log",
1899
+ "multimap",
1900
+ "once_cell",
1901
+ "petgraph",
1902
+ "prettyplease",
1903
+ "prost",
1904
+ "prost-types",
1905
+ "regex",
1906
+ "syn 2.0.101",
1907
+ "tempfile",
1908
+ ]
1909
+
1910
+ [[package]]
1911
+ name = "prost-derive"
1912
+ version = "0.13.5"
1913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1914
+ checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
1915
+ dependencies = [
1916
+ "anyhow",
1917
+ "itertools 0.14.0",
1918
+ "proc-macro2",
1919
+ "quote",
1920
+ "syn 2.0.101",
1921
+ ]
1922
+
1923
+ [[package]]
1924
+ name = "prost-types"
1925
+ version = "0.13.5"
1926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1927
+ checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16"
1928
+ dependencies = [
1929
+ "prost",
1930
+ ]
1931
+
1932
+ [[package]]
1933
+ name = "publicsuffix"
1934
+ version = "1.5.6"
1935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1936
+ checksum = "95b4ce31ff0a27d93c8de1849cf58162283752f065a90d508f1105fa6c9a213f"
1937
+ dependencies = [
1938
+ "idna 0.2.3",
1939
+ "url 2.5.4",
1940
+ ]
1941
+
1942
+ [[package]]
1943
+ name = "quote"
1944
+ version = "1.0.36"
1945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1946
+ checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
1947
+ dependencies = [
1948
+ "proc-macro2",
1949
+ ]
1950
+
1951
+ [[package]]
1952
+ name = "rand"
1953
+ version = "0.6.5"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
1956
+ dependencies = [
1957
+ "autocfg 0.1.8",
1958
+ "libc",
1959
+ "rand_chacha",
1960
+ "rand_core 0.4.2",
1961
+ "rand_hc",
1962
+ "rand_isaac",
1963
+ "rand_jitter",
1964
+ "rand_os",
1965
+ "rand_pcg",
1966
+ "rand_xorshift",
1967
+ "winapi 0.3.9",
1968
+ ]
1969
+
1970
+ [[package]]
1971
+ name = "rand_chacha"
1972
+ version = "0.1.1"
1973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1974
+ checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
1975
+ dependencies = [
1976
+ "autocfg 0.1.8",
1977
+ "rand_core 0.3.1",
1978
+ ]
1979
+
1980
+ [[package]]
1981
+ name = "rand_core"
1982
+ version = "0.3.1"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
1985
+ dependencies = [
1986
+ "rand_core 0.4.2",
1987
+ ]
1988
+
1989
+ [[package]]
1990
+ name = "rand_core"
1991
+ version = "0.4.2"
1992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1993
+ checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
1994
+
1995
+ [[package]]
1996
+ name = "rand_hc"
1997
+ version = "0.1.0"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
2000
+ dependencies = [
2001
+ "rand_core 0.3.1",
2002
+ ]
2003
+
2004
+ [[package]]
2005
+ name = "rand_isaac"
2006
+ version = "0.1.1"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
2009
+ dependencies = [
2010
+ "rand_core 0.3.1",
2011
+ ]
2012
+
2013
+ [[package]]
2014
+ name = "rand_jitter"
2015
+ version = "0.1.4"
2016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2017
+ checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
2018
+ dependencies = [
2019
+ "libc",
2020
+ "rand_core 0.4.2",
2021
+ "winapi 0.3.9",
2022
+ ]
2023
+
2024
+ [[package]]
2025
+ name = "rand_os"
2026
+ version = "0.1.3"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
2029
+ dependencies = [
2030
+ "cloudabi",
2031
+ "fuchsia-cprng",
2032
+ "libc",
2033
+ "rand_core 0.4.2",
2034
+ "rdrand",
2035
+ "winapi 0.3.9",
2036
+ ]
2037
+
2038
+ [[package]]
2039
+ name = "rand_pcg"
2040
+ version = "0.1.2"
2041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2042
+ checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
2043
+ dependencies = [
2044
+ "autocfg 0.1.8",
2045
+ "rand_core 0.4.2",
2046
+ ]
2047
+
2048
+ [[package]]
2049
+ name = "rand_xorshift"
2050
+ version = "0.1.1"
2051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2052
+ checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
2053
+ dependencies = [
2054
+ "rand_core 0.3.1",
2055
+ ]
2056
+
2057
+ [[package]]
2058
+ name = "rdrand"
2059
+ version = "0.4.0"
2060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2061
+ checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
2062
+ dependencies = [
2063
+ "rand_core 0.3.1",
2064
+ ]
2065
+
2066
+ [[package]]
2067
+ name = "redox_syscall"
2068
+ version = "0.1.57"
2069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2070
+ checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
2071
+
2072
+ [[package]]
2073
+ name = "redox_syscall"
2074
+ version = "0.2.13"
2075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2076
+ checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
2077
+ dependencies = [
2078
+ "bitflags 1.3.2",
2079
+ ]
2080
+
2081
+ [[package]]
2082
+ name = "regex"
2083
+ version = "1.9.4"
2084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2085
+ checksum = "12de2eff854e5fa4b1295edd650e227e9d8fb0c9e90b12e7f36d6a6811791a29"
2086
+ dependencies = [
2087
+ "aho-corasick",
2088
+ "memchr",
2089
+ "regex-automata",
2090
+ "regex-syntax",
2091
+ ]
2092
+
2093
+ [[package]]
2094
+ name = "regex-automata"
2095
+ version = "0.3.7"
2096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2097
+ checksum = "49530408a136e16e5b486e883fbb6ba058e8e4e8ae6621a77b048b314336e629"
2098
+ dependencies = [
2099
+ "aho-corasick",
2100
+ "memchr",
2101
+ "regex-syntax",
2102
+ ]
2103
+
2104
+ [[package]]
2105
+ name = "regex-syntax"
2106
+ version = "0.7.5"
2107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2108
+ checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
2109
+
2110
+ [[package]]
2111
+ name = "remove_dir_all"
2112
+ version = "0.5.3"
2113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2114
+ checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
2115
+ dependencies = [
2116
+ "winapi 0.3.9",
2117
+ ]
2118
+
2119
+ [[package]]
2120
+ name = "reqwest"
2121
+ version = "0.9.24"
2122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2123
+ checksum = "f88643aea3c1343c804950d7bf983bd2067f5ab59db6d613a08e05572f2714ab"
2124
+ dependencies = [
2125
+ "base64 0.10.1",
2126
+ "bytes 0.4.12",
2127
+ "cookie",
2128
+ "cookie_store",
2129
+ "encoding_rs",
2130
+ "flate2",
2131
+ "futures",
2132
+ "http 0.1.21",
2133
+ "hyper 0.12.36",
2134
+ "hyper-tls 0.3.2",
2135
+ "log",
2136
+ "mime",
2137
+ "mime_guess",
2138
+ "native-tls",
2139
+ "serde",
2140
+ "serde_json",
2141
+ "serde_urlencoded 0.5.5",
2142
+ "time 0.1.44",
2143
+ "tokio 0.1.22",
2144
+ "tokio-executor",
2145
+ "tokio-io",
2146
+ "tokio-threadpool",
2147
+ "tokio-timer",
2148
+ "url 1.7.2",
2149
+ "uuid",
2150
+ "winreg",
2151
+ ]
2152
+
2153
+ [[package]]
2154
+ name = "reqwest"
2155
+ version = "0.12.15"
2156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2157
+ checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
2158
+ dependencies = [
2159
+ "base64 0.22.1",
2160
+ "bytes 1.10.1",
2161
+ "encoding_rs",
2162
+ "futures-channel",
2163
+ "futures-core",
2164
+ "futures-util",
2165
+ "h2 0.4.9",
2166
+ "http 1.3.1",
2167
+ "http-body 1.0.1",
2168
+ "http-body-util",
2169
+ "hyper 1.6.0",
2170
+ "hyper-rustls",
2171
+ "hyper-tls 0.6.0",
2172
+ "hyper-util",
2173
+ "ipnet",
2174
+ "js-sys",
2175
+ "log",
2176
+ "mime",
2177
+ "native-tls",
2178
+ "once_cell",
2179
+ "percent-encoding 2.3.1",
2180
+ "pin-project-lite",
2181
+ "rustls-pemfile",
2182
+ "serde",
2183
+ "serde_json",
2184
+ "serde_urlencoded 0.7.1",
2185
+ "sync_wrapper",
2186
+ "system-configuration",
2187
+ "tokio 1.44.2",
2188
+ "tokio-native-tls",
2189
+ "tower",
2190
+ "tower-service",
2191
+ "url 2.5.4",
2192
+ "wasm-bindgen",
2193
+ "wasm-bindgen-futures",
2194
+ "web-sys",
2195
+ "windows-registry",
2196
+ ]
2197
+
2198
+ [[package]]
2199
+ name = "ring"
2200
+ version = "0.16.20"
2201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2202
+ checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
2203
+ dependencies = [
2204
+ "cc",
2205
+ "libc",
2206
+ "once_cell",
2207
+ "spin",
2208
+ "untrusted 0.7.1",
2209
+ "web-sys",
2210
+ "winapi 0.3.9",
2211
+ ]
2212
+
2213
+ [[package]]
2214
+ name = "ring"
2215
+ version = "0.17.14"
2216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2217
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2218
+ dependencies = [
2219
+ "cc",
2220
+ "cfg-if 1.0.0",
2221
+ "getrandom",
2222
+ "libc",
2223
+ "untrusted 0.9.0",
2224
+ "windows-sys 0.52.0",
2225
+ ]
2226
+
2227
+ [[package]]
2228
+ name = "rowan"
2229
+ version = "0.15.16"
2230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2231
+ checksum = "0a542b0253fa46e632d27a1dc5cf7b930de4df8659dc6e720b647fc72147ae3d"
2232
+ dependencies = [
2233
+ "countme",
2234
+ "hashbrown 0.14.5",
2235
+ "rustc-hash",
2236
+ "text-size",
2237
+ ]
2238
+
2239
+ [[package]]
2240
+ name = "rustc-demangle"
2241
+ version = "0.1.21"
2242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2243
+ checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
2244
+
2245
+ [[package]]
2246
+ name = "rustc-hash"
2247
+ version = "1.1.0"
2248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2249
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2250
+
2251
+ [[package]]
2252
+ name = "rustc_version"
2253
+ version = "0.2.3"
2254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2255
+ checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
2256
+ dependencies = [
2257
+ "semver",
2258
+ ]
2259
+
2260
+ [[package]]
2261
+ name = "rustix"
2262
+ version = "0.38.41"
2263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2264
+ checksum = "d7f649912bc1495e167a6edee79151c84b1bad49748cb4f1f1167f459f6224f6"
2265
+ dependencies = [
2266
+ "bitflags 2.6.0",
2267
+ "errno",
2268
+ "libc",
2269
+ "linux-raw-sys",
2270
+ "windows-sys 0.52.0",
2271
+ ]
2272
+
2273
+ [[package]]
2274
+ name = "rustls"
2275
+ version = "0.23.26"
2276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2277
+ checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
2278
+ dependencies = [
2279
+ "once_cell",
2280
+ "rustls-pki-types",
2281
+ "rustls-webpki",
2282
+ "subtle",
2283
+ "zeroize",
2284
+ ]
2285
+
2286
+ [[package]]
2287
+ name = "rustls-pemfile"
2288
+ version = "2.2.0"
2289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2290
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
2291
+ dependencies = [
2292
+ "rustls-pki-types",
2293
+ ]
2294
+
2295
+ [[package]]
2296
+ name = "rustls-pki-types"
2297
+ version = "1.11.0"
2298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2299
+ checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
2300
+
2301
+ [[package]]
2302
+ name = "rustls-webpki"
2303
+ version = "0.103.1"
2304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2305
+ checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
2306
+ dependencies = [
2307
+ "ring 0.17.14",
2308
+ "rustls-pki-types",
2309
+ "untrusted 0.9.0",
2310
+ ]
2311
+
2312
+ [[package]]
2313
+ name = "rustversion"
2314
+ version = "1.0.20"
2315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2316
+ checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
2317
+
2318
+ [[package]]
2319
+ name = "ryu"
2320
+ version = "1.0.10"
2321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2322
+ checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695"
2323
+
2324
+ [[package]]
2325
+ name = "same-file"
2326
+ version = "1.0.6"
2327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2328
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2329
+ dependencies = [
2330
+ "winapi-util",
2331
+ ]
2332
+
2333
+ [[package]]
2334
+ name = "schannel"
2335
+ version = "0.1.20"
2336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2337
+ checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
2338
+ dependencies = [
2339
+ "lazy_static",
2340
+ "windows-sys 0.36.1",
2341
+ ]
2342
+
2343
+ [[package]]
2344
+ name = "scopeguard"
2345
+ version = "1.1.0"
2346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2347
+ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2348
+
2349
+ [[package]]
2350
+ name = "security-framework"
2351
+ version = "2.6.1"
2352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2353
+ checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc"
2354
+ dependencies = [
2355
+ "bitflags 1.3.2",
2356
+ "core-foundation",
2357
+ "core-foundation-sys",
2358
+ "libc",
2359
+ "security-framework-sys",
2360
+ ]
2361
+
2362
+ [[package]]
2363
+ name = "security-framework-sys"
2364
+ version = "2.6.1"
2365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2366
+ checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
2367
+ dependencies = [
2368
+ "core-foundation-sys",
2369
+ "libc",
2370
+ ]
2371
+
2372
+ [[package]]
2373
+ name = "semver"
2374
+ version = "0.9.0"
2375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2376
+ checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
2377
+ dependencies = [
2378
+ "semver-parser",
2379
+ ]
2380
+
2381
+ [[package]]
2382
+ name = "semver-parser"
2383
+ version = "0.7.0"
2384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2385
+ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2386
+
2387
+ [[package]]
2388
+ name = "serde"
2389
+ version = "1.0.219"
2390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2391
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
2392
+ dependencies = [
2393
+ "serde_derive",
2394
+ ]
2395
+
2396
+ [[package]]
2397
+ name = "serde-wasm-bindgen"
2398
+ version = "0.6.5"
2399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2400
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
2401
+ dependencies = [
2402
+ "js-sys",
2403
+ "serde",
2404
+ "wasm-bindgen",
2405
+ ]
2406
+
2407
+ [[package]]
2408
+ name = "serde_derive"
2409
+ version = "1.0.219"
2410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2411
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2412
+ dependencies = [
2413
+ "proc-macro2",
2414
+ "quote",
2415
+ "syn 2.0.101",
2416
+ ]
2417
+
2418
+ [[package]]
2419
+ name = "serde_json"
2420
+ version = "1.0.82"
2421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2422
+ checksum = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7"
2423
+ dependencies = [
2424
+ "itoa 1.0.2",
2425
+ "ryu",
2426
+ "serde",
2427
+ ]
2428
+
2429
+ [[package]]
2430
+ name = "serde_plain"
2431
+ version = "1.0.2"
2432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2433
+ checksum = "9ce1fc6db65a611022b23a0dec6975d63fb80a302cb3388835ff02c097258d50"
2434
+ dependencies = [
2435
+ "serde",
2436
+ ]
2437
+
2438
+ [[package]]
2439
+ name = "serde_urlencoded"
2440
+ version = "0.5.5"
2441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2442
+ checksum = "642dd69105886af2efd227f75a520ec9b44a820d65bc133a9131f7d229fd165a"
2443
+ dependencies = [
2444
+ "dtoa",
2445
+ "itoa 0.4.8",
2446
+ "serde",
2447
+ "url 1.7.2",
2448
+ ]
2449
+
2450
+ [[package]]
2451
+ name = "serde_urlencoded"
2452
+ version = "0.7.1"
2453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2454
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2455
+ dependencies = [
2456
+ "form_urlencoded",
2457
+ "itoa 1.0.2",
2458
+ "ryu",
2459
+ "serde",
2460
+ ]
2461
+
2462
+ [[package]]
2463
+ name = "shlex"
2464
+ version = "1.3.0"
2465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2466
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2467
+
2468
+ [[package]]
2469
+ name = "similar"
2470
+ version = "2.7.0"
2471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2472
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
2473
+
2474
+ [[package]]
2475
+ name = "simple_asn1"
2476
+ version = "0.6.2"
2477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2478
+ checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085"
2479
+ dependencies = [
2480
+ "num-bigint",
2481
+ "num-traits",
2482
+ "thiserror",
2483
+ "time 0.3.11",
2484
+ ]
2485
+
2486
+ [[package]]
2487
+ name = "simplelog"
2488
+ version = "0.12.0"
2489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2490
+ checksum = "48dfff04aade74dd495b007c831cd6f4e0cee19c344dd9dc0884c0289b70a786"
2491
+ dependencies = [
2492
+ "log",
2493
+ "termcolor",
2494
+ "time 0.3.11",
2495
+ ]
2496
+
2497
+ [[package]]
2498
+ name = "slab"
2499
+ version = "0.4.6"
2500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2501
+ checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
2502
+
2503
+ [[package]]
2504
+ name = "smallvec"
2505
+ version = "0.6.14"
2506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2507
+ checksum = "b97fcaeba89edba30f044a10c6a3cc39df9c3f17d7cd829dd1446cab35f890e0"
2508
+ dependencies = [
2509
+ "maybe-uninit",
2510
+ ]
2511
+
2512
+ [[package]]
2513
+ name = "smallvec"
2514
+ version = "1.15.0"
2515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2516
+ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
2517
+
2518
+ [[package]]
2519
+ name = "smol_str"
2520
+ version = "0.3.2"
2521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2522
+ checksum = "9676b89cd56310a87b93dec47b11af744f34d5fc9f367b829474eec0a891350d"
2523
+ dependencies = [
2524
+ "borsh",
2525
+ "serde",
2526
+ ]
2527
+
2528
+ [[package]]
2529
+ name = "socket2"
2530
+ version = "0.5.9"
2531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2532
+ checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
2533
+ dependencies = [
2534
+ "libc",
2535
+ "windows-sys 0.52.0",
2536
+ ]
2537
+
2538
+ [[package]]
2539
+ name = "spin"
2540
+ version = "0.5.2"
2541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2542
+ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2543
+
2544
+ [[package]]
2545
+ name = "squawk"
2546
+ version = "2.0.0"
2547
+ dependencies = [
2548
+ "annotate-snippets",
2549
+ "anyhow",
2550
+ "atty",
2551
+ "base64 0.12.3",
2552
+ "console 0.11.3",
2553
+ "enum-iterator",
2554
+ "glob",
2555
+ "insta",
2556
+ "line-index",
2557
+ "log",
2558
+ "serde",
2559
+ "serde_json",
2560
+ "simplelog",
2561
+ "squawk-github",
2562
+ "squawk_lexer",
2563
+ "squawk_linter",
2564
+ "squawk_syntax",
2565
+ "structopt",
2566
+ "tempfile",
2567
+ "toml",
2568
+ ]
2569
+
2570
+ [[package]]
2571
+ name = "squawk-github"
2572
+ version = "0.0.0"
2573
+ dependencies = [
2574
+ "jsonwebtoken",
2575
+ "log",
2576
+ "reqwest 0.9.24",
2577
+ "serde",
2578
+ "serde_json",
2579
+ ]
2580
+
2581
+ [[package]]
2582
+ name = "squawk_lexer"
2583
+ version = "0.0.0"
2584
+ dependencies = [
2585
+ "insta",
2586
+ ]
2587
+
2588
+ [[package]]
2589
+ name = "squawk_linter"
2590
+ version = "0.0.0"
2591
+ dependencies = [
2592
+ "enum-iterator",
2593
+ "insta",
2594
+ "lazy_static",
2595
+ "line-index",
2596
+ "rowan",
2597
+ "serde",
2598
+ "serde_plain",
2599
+ "squawk_syntax",
2600
+ ]
2601
+
2602
+ [[package]]
2603
+ name = "squawk_parser"
2604
+ version = "0.0.0"
2605
+ dependencies = [
2606
+ "camino",
2607
+ "dir-test",
2608
+ "drop_bomb",
2609
+ "insta",
2610
+ "pg_query",
2611
+ "squawk_lexer",
2612
+ ]
2613
+
2614
+ [[package]]
2615
+ name = "squawk_syntax"
2616
+ version = "0.0.0"
2617
+ dependencies = [
2618
+ "camino",
2619
+ "dir-test",
2620
+ "insta",
2621
+ "rowan",
2622
+ "smol_str",
2623
+ "squawk_parser",
2624
+ ]
2625
+
2626
+ [[package]]
2627
+ name = "squawk_wasm"
2628
+ version = "0.1.0"
2629
+ dependencies = [
2630
+ "console_error_panic_hook",
2631
+ "console_log",
2632
+ "line-index",
2633
+ "log",
2634
+ "serde",
2635
+ "serde-wasm-bindgen",
2636
+ "squawk_lexer",
2637
+ "squawk_linter",
2638
+ "squawk_syntax",
2639
+ "wasm-bindgen",
2640
+ "wasm-bindgen-test",
2641
+ "web-sys",
2642
+ ]
2643
+
2644
+ [[package]]
2645
+ name = "stable_deref_trait"
2646
+ version = "1.2.0"
2647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2648
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2649
+
2650
+ [[package]]
2651
+ name = "string"
2652
+ version = "0.2.1"
2653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2654
+ checksum = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d"
2655
+ dependencies = [
2656
+ "bytes 0.4.12",
2657
+ ]
2658
+
2659
+ [[package]]
2660
+ name = "strsim"
2661
+ version = "0.8.0"
2662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2663
+ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
2664
+
2665
+ [[package]]
2666
+ name = "strsim"
2667
+ version = "0.11.1"
2668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2669
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2670
+
2671
+ [[package]]
2672
+ name = "structopt"
2673
+ version = "0.3.26"
2674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2675
+ checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
2676
+ dependencies = [
2677
+ "clap 2.34.0",
2678
+ "lazy_static",
2679
+ "structopt-derive",
2680
+ ]
2681
+
2682
+ [[package]]
2683
+ name = "structopt-derive"
2684
+ version = "0.4.18"
2685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2686
+ checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
2687
+ dependencies = [
2688
+ "heck 0.3.3",
2689
+ "proc-macro-error",
2690
+ "proc-macro2",
2691
+ "quote",
2692
+ "syn 1.0.109",
2693
+ ]
2694
+
2695
+ [[package]]
2696
+ name = "subtle"
2697
+ version = "2.6.1"
2698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2699
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2700
+
2701
+ [[package]]
2702
+ name = "syn"
2703
+ version = "1.0.109"
2704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2705
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2706
+ dependencies = [
2707
+ "proc-macro2",
2708
+ "quote",
2709
+ "unicode-ident",
2710
+ ]
2711
+
2712
+ [[package]]
2713
+ name = "syn"
2714
+ version = "2.0.101"
2715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2716
+ checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
2717
+ dependencies = [
2718
+ "proc-macro2",
2719
+ "quote",
2720
+ "unicode-ident",
2721
+ ]
2722
+
2723
+ [[package]]
2724
+ name = "sync_wrapper"
2725
+ version = "1.0.2"
2726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2727
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2728
+ dependencies = [
2729
+ "futures-core",
2730
+ ]
2731
+
2732
+ [[package]]
2733
+ name = "synstructure"
2734
+ version = "0.12.6"
2735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2736
+ checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
2737
+ dependencies = [
2738
+ "proc-macro2",
2739
+ "quote",
2740
+ "syn 1.0.109",
2741
+ "unicode-xid",
2742
+ ]
2743
+
2744
+ [[package]]
2745
+ name = "synstructure"
2746
+ version = "0.13.2"
2747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2748
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2749
+ dependencies = [
2750
+ "proc-macro2",
2751
+ "quote",
2752
+ "syn 2.0.101",
2753
+ ]
2754
+
2755
+ [[package]]
2756
+ name = "system-configuration"
2757
+ version = "0.6.1"
2758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2759
+ checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
2760
+ dependencies = [
2761
+ "bitflags 2.6.0",
2762
+ "core-foundation",
2763
+ "system-configuration-sys",
2764
+ ]
2765
+
2766
+ [[package]]
2767
+ name = "system-configuration-sys"
2768
+ version = "0.6.0"
2769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2770
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2771
+ dependencies = [
2772
+ "core-foundation-sys",
2773
+ "libc",
2774
+ ]
2775
+
2776
+ [[package]]
2777
+ name = "tempfile"
2778
+ version = "3.3.0"
2779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2780
+ checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
2781
+ dependencies = [
2782
+ "cfg-if 1.0.0",
2783
+ "fastrand",
2784
+ "libc",
2785
+ "redox_syscall 0.2.13",
2786
+ "remove_dir_all",
2787
+ "winapi 0.3.9",
2788
+ ]
2789
+
2790
+ [[package]]
2791
+ name = "termcolor"
2792
+ version = "1.1.3"
2793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2794
+ checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
2795
+ dependencies = [
2796
+ "winapi-util",
2797
+ ]
2798
+
2799
+ [[package]]
2800
+ name = "terminal_size"
2801
+ version = "0.1.17"
2802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2803
+ checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
2804
+ dependencies = [
2805
+ "libc",
2806
+ "winapi 0.3.9",
2807
+ ]
2808
+
2809
+ [[package]]
2810
+ name = "termios"
2811
+ version = "0.3.3"
2812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2813
+ checksum = "411c5bf740737c7918b8b1fe232dca4dc9f8e754b8ad5e20966814001ed0ac6b"
2814
+ dependencies = [
2815
+ "libc",
2816
+ ]
2817
+
2818
+ [[package]]
2819
+ name = "text-size"
2820
+ version = "1.1.1"
2821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2822
+ checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
2823
+
2824
+ [[package]]
2825
+ name = "textwrap"
2826
+ version = "0.11.0"
2827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2828
+ checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
2829
+ dependencies = [
2830
+ "unicode-width 0.1.9",
2831
+ ]
2832
+
2833
+ [[package]]
2834
+ name = "thiserror"
2835
+ version = "1.0.31"
2836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2837
+ checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a"
2838
+ dependencies = [
2839
+ "thiserror-impl",
2840
+ ]
2841
+
2842
+ [[package]]
2843
+ name = "thiserror-impl"
2844
+ version = "1.0.31"
2845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2846
+ checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a"
2847
+ dependencies = [
2848
+ "proc-macro2",
2849
+ "quote",
2850
+ "syn 1.0.109",
2851
+ ]
2852
+
2853
+ [[package]]
2854
+ name = "time"
2855
+ version = "0.1.44"
2856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2857
+ checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
2858
+ dependencies = [
2859
+ "libc",
2860
+ "wasi 0.10.0+wasi-snapshot-preview1",
2861
+ "winapi 0.3.9",
2862
+ ]
2863
+
2864
+ [[package]]
2865
+ name = "time"
2866
+ version = "0.3.11"
2867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2868
+ checksum = "72c91f41dcb2f096c05f0873d667dceec1087ce5bcf984ec8ffb19acddbb3217"
2869
+ dependencies = [
2870
+ "itoa 1.0.2",
2871
+ "libc",
2872
+ "num_threads",
2873
+ "time-macros",
2874
+ ]
2875
+
2876
+ [[package]]
2877
+ name = "time-macros"
2878
+ version = "0.2.4"
2879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2880
+ checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
2881
+
2882
+ [[package]]
2883
+ name = "tinystr"
2884
+ version = "0.7.6"
2885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2886
+ checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
2887
+ dependencies = [
2888
+ "displaydoc",
2889
+ "zerovec",
2890
+ ]
2891
+
2892
+ [[package]]
2893
+ name = "tinyvec"
2894
+ version = "1.6.0"
2895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2896
+ checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2897
+ dependencies = [
2898
+ "tinyvec_macros",
2899
+ ]
2900
+
2901
+ [[package]]
2902
+ name = "tinyvec_macros"
2903
+ version = "0.1.0"
2904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2905
+ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2906
+
2907
+ [[package]]
2908
+ name = "tokio"
2909
+ version = "0.1.22"
2910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2911
+ checksum = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6"
2912
+ dependencies = [
2913
+ "bytes 0.4.12",
2914
+ "futures",
2915
+ "mio 0.6.23",
2916
+ "num_cpus",
2917
+ "tokio-current-thread",
2918
+ "tokio-executor",
2919
+ "tokio-io",
2920
+ "tokio-reactor",
2921
+ "tokio-tcp",
2922
+ "tokio-threadpool",
2923
+ "tokio-timer",
2924
+ ]
2925
+
2926
+ [[package]]
2927
+ name = "tokio"
2928
+ version = "1.44.2"
2929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2930
+ checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
2931
+ dependencies = [
2932
+ "backtrace",
2933
+ "bytes 1.10.1",
2934
+ "libc",
2935
+ "mio 1.0.3",
2936
+ "pin-project-lite",
2937
+ "socket2",
2938
+ "windows-sys 0.52.0",
2939
+ ]
2940
+
2941
+ [[package]]
2942
+ name = "tokio-buf"
2943
+ version = "0.1.1"
2944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2945
+ checksum = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46"
2946
+ dependencies = [
2947
+ "bytes 0.4.12",
2948
+ "either",
2949
+ "futures",
2950
+ ]
2951
+
2952
+ [[package]]
2953
+ name = "tokio-current-thread"
2954
+ version = "0.1.7"
2955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2956
+ checksum = "b1de0e32a83f131e002238d7ccde18211c0a5397f60cbfffcb112868c2e0e20e"
2957
+ dependencies = [
2958
+ "futures",
2959
+ "tokio-executor",
2960
+ ]
2961
+
2962
+ [[package]]
2963
+ name = "tokio-executor"
2964
+ version = "0.1.10"
2965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2966
+ checksum = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671"
2967
+ dependencies = [
2968
+ "crossbeam-utils",
2969
+ "futures",
2970
+ ]
2971
+
2972
+ [[package]]
2973
+ name = "tokio-io"
2974
+ version = "0.1.13"
2975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2976
+ checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674"
2977
+ dependencies = [
2978
+ "bytes 0.4.12",
2979
+ "futures",
2980
+ "log",
2981
+ ]
2982
+
2983
+ [[package]]
2984
+ name = "tokio-native-tls"
2985
+ version = "0.3.1"
2986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2987
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2988
+ dependencies = [
2989
+ "native-tls",
2990
+ "tokio 1.44.2",
2991
+ ]
2992
+
2993
+ [[package]]
2994
+ name = "tokio-reactor"
2995
+ version = "0.1.12"
2996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2997
+ checksum = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351"
2998
+ dependencies = [
2999
+ "crossbeam-utils",
3000
+ "futures",
3001
+ "lazy_static",
3002
+ "log",
3003
+ "mio 0.6.23",
3004
+ "num_cpus",
3005
+ "parking_lot",
3006
+ "slab",
3007
+ "tokio-executor",
3008
+ "tokio-io",
3009
+ "tokio-sync",
3010
+ ]
3011
+
3012
+ [[package]]
3013
+ name = "tokio-rustls"
3014
+ version = "0.26.2"
3015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3016
+ checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
3017
+ dependencies = [
3018
+ "rustls",
3019
+ "tokio 1.44.2",
3020
+ ]
3021
+
3022
+ [[package]]
3023
+ name = "tokio-sync"
3024
+ version = "0.1.8"
3025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3026
+ checksum = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee"
3027
+ dependencies = [
3028
+ "fnv",
3029
+ "futures",
3030
+ ]
3031
+
3032
+ [[package]]
3033
+ name = "tokio-tcp"
3034
+ version = "0.1.4"
3035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3036
+ checksum = "98df18ed66e3b72e742f185882a9e201892407957e45fbff8da17ae7a7c51f72"
3037
+ dependencies = [
3038
+ "bytes 0.4.12",
3039
+ "futures",
3040
+ "iovec",
3041
+ "mio 0.6.23",
3042
+ "tokio-io",
3043
+ "tokio-reactor",
3044
+ ]
3045
+
3046
+ [[package]]
3047
+ name = "tokio-threadpool"
3048
+ version = "0.1.18"
3049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3050
+ checksum = "df720b6581784c118f0eb4310796b12b1d242a7eb95f716a8367855325c25f89"
3051
+ dependencies = [
3052
+ "crossbeam-deque",
3053
+ "crossbeam-queue",
3054
+ "crossbeam-utils",
3055
+ "futures",
3056
+ "lazy_static",
3057
+ "log",
3058
+ "num_cpus",
3059
+ "slab",
3060
+ "tokio-executor",
3061
+ ]
3062
+
3063
+ [[package]]
3064
+ name = "tokio-timer"
3065
+ version = "0.2.13"
3066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3067
+ checksum = "93044f2d313c95ff1cb7809ce9a7a05735b012288a888b62d4434fd58c94f296"
3068
+ dependencies = [
3069
+ "crossbeam-utils",
3070
+ "futures",
3071
+ "slab",
3072
+ "tokio-executor",
3073
+ ]
3074
+
3075
+ [[package]]
3076
+ name = "tokio-util"
3077
+ version = "0.7.15"
3078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3079
+ checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
3080
+ dependencies = [
3081
+ "bytes 1.10.1",
3082
+ "futures-core",
3083
+ "futures-sink",
3084
+ "pin-project-lite",
3085
+ "tokio 1.44.2",
3086
+ ]
3087
+
3088
+ [[package]]
3089
+ name = "toml"
3090
+ version = "0.5.9"
3091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3092
+ checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
3093
+ dependencies = [
3094
+ "serde",
3095
+ ]
3096
+
3097
+ [[package]]
3098
+ name = "tower"
3099
+ version = "0.5.2"
3100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3101
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
3102
+ dependencies = [
3103
+ "futures-core",
3104
+ "futures-util",
3105
+ "pin-project-lite",
3106
+ "sync_wrapper",
3107
+ "tokio 1.44.2",
3108
+ "tower-layer",
3109
+ "tower-service",
3110
+ ]
3111
+
3112
+ [[package]]
3113
+ name = "tower-layer"
3114
+ version = "0.3.3"
3115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3116
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3117
+
3118
+ [[package]]
3119
+ name = "tower-service"
3120
+ version = "0.3.3"
3121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3122
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3123
+
3124
+ [[package]]
3125
+ name = "tracing"
3126
+ version = "0.1.41"
3127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3128
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3129
+ dependencies = [
3130
+ "pin-project-lite",
3131
+ "tracing-core",
3132
+ ]
3133
+
3134
+ [[package]]
3135
+ name = "tracing-core"
3136
+ version = "0.1.33"
3137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3138
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
3139
+ dependencies = [
3140
+ "once_cell",
3141
+ ]
3142
+
3143
+ [[package]]
3144
+ name = "try-lock"
3145
+ version = "0.2.5"
3146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3147
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3148
+
3149
+ [[package]]
3150
+ name = "try_from"
3151
+ version = "0.3.2"
3152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3153
+ checksum = "283d3b89e1368717881a9d51dad843cc435380d8109c9e47d38780a324698d8b"
3154
+ dependencies = [
3155
+ "cfg-if 0.1.10",
3156
+ ]
3157
+
3158
+ [[package]]
3159
+ name = "unicase"
3160
+ version = "2.6.0"
3161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3162
+ checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
3163
+ dependencies = [
3164
+ "version_check",
3165
+ ]
3166
+
3167
+ [[package]]
3168
+ name = "unicode-bidi"
3169
+ version = "0.3.8"
3170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3171
+ checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
3172
+
3173
+ [[package]]
3174
+ name = "unicode-ident"
3175
+ version = "1.0.18"
3176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3177
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
3178
+
3179
+ [[package]]
3180
+ name = "unicode-normalization"
3181
+ version = "0.1.21"
3182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3183
+ checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6"
3184
+ dependencies = [
3185
+ "tinyvec",
3186
+ ]
3187
+
3188
+ [[package]]
3189
+ name = "unicode-segmentation"
3190
+ version = "1.9.0"
3191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3192
+ checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"
3193
+
3194
+ [[package]]
3195
+ name = "unicode-width"
3196
+ version = "0.1.9"
3197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3198
+ checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
3199
+
3200
+ [[package]]
3201
+ name = "unicode-width"
3202
+ version = "0.2.0"
3203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3204
+ checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
3205
+
3206
+ [[package]]
3207
+ name = "unicode-xid"
3208
+ version = "0.2.3"
3209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3210
+ checksum = "957e51f3646910546462e67d5f7599b9e4fb8acdd304b087a6494730f9eebf04"
3211
+
3212
+ [[package]]
3213
+ name = "untrusted"
3214
+ version = "0.7.1"
3215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3216
+ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
3217
+
3218
+ [[package]]
3219
+ name = "untrusted"
3220
+ version = "0.9.0"
3221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3222
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3223
+
3224
+ [[package]]
3225
+ name = "url"
3226
+ version = "1.7.2"
3227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3228
+ checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"
3229
+ dependencies = [
3230
+ "idna 0.1.5",
3231
+ "matches",
3232
+ "percent-encoding 1.0.1",
3233
+ ]
3234
+
3235
+ [[package]]
3236
+ name = "url"
3237
+ version = "2.5.4"
3238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3239
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
3240
+ dependencies = [
3241
+ "form_urlencoded",
3242
+ "idna 1.0.3",
3243
+ "percent-encoding 2.3.1",
3244
+ ]
3245
+
3246
+ [[package]]
3247
+ name = "utf16_iter"
3248
+ version = "1.0.5"
3249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3250
+ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
3251
+
3252
+ [[package]]
3253
+ name = "utf8_iter"
3254
+ version = "1.0.4"
3255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3256
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3257
+
3258
+ [[package]]
3259
+ name = "utf8parse"
3260
+ version = "0.2.2"
3261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3262
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3263
+
3264
+ [[package]]
3265
+ name = "uuid"
3266
+ version = "0.7.4"
3267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3268
+ checksum = "90dbc611eb48397705a6b0f6e917da23ae517e4d127123d2cf7674206627d32a"
3269
+ dependencies = [
3270
+ "rand",
3271
+ ]
3272
+
3273
+ [[package]]
3274
+ name = "vcpkg"
3275
+ version = "0.2.15"
3276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3277
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3278
+
3279
+ [[package]]
3280
+ name = "vec_map"
3281
+ version = "0.8.2"
3282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3283
+ checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
3284
+
3285
+ [[package]]
3286
+ name = "version_check"
3287
+ version = "0.9.4"
3288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3289
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
3290
+
3291
+ [[package]]
3292
+ name = "walkdir"
3293
+ version = "2.5.0"
3294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3295
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3296
+ dependencies = [
3297
+ "same-file",
3298
+ "winapi-util",
3299
+ ]
3300
+
3301
+ [[package]]
3302
+ name = "want"
3303
+ version = "0.2.0"
3304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3305
+ checksum = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230"
3306
+ dependencies = [
3307
+ "futures",
3308
+ "log",
3309
+ "try-lock",
3310
+ ]
3311
+
3312
+ [[package]]
3313
+ name = "want"
3314
+ version = "0.3.1"
3315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3316
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3317
+ dependencies = [
3318
+ "try-lock",
3319
+ ]
3320
+
3321
+ [[package]]
3322
+ name = "wasi"
3323
+ version = "0.10.0+wasi-snapshot-preview1"
3324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3325
+ checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
3326
+
3327
+ [[package]]
3328
+ name = "wasi"
3329
+ version = "0.11.0+wasi-snapshot-preview1"
3330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3331
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3332
+
3333
+ [[package]]
3334
+ name = "wasm-bindgen"
3335
+ version = "0.2.100"
3336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3337
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
3338
+ dependencies = [
3339
+ "cfg-if 1.0.0",
3340
+ "once_cell",
3341
+ "rustversion",
3342
+ "wasm-bindgen-macro",
3343
+ ]
3344
+
3345
+ [[package]]
3346
+ name = "wasm-bindgen-backend"
3347
+ version = "0.2.100"
3348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3349
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
3350
+ dependencies = [
3351
+ "bumpalo",
3352
+ "log",
3353
+ "proc-macro2",
3354
+ "quote",
3355
+ "syn 2.0.101",
3356
+ "wasm-bindgen-shared",
3357
+ ]
3358
+
3359
+ [[package]]
3360
+ name = "wasm-bindgen-futures"
3361
+ version = "0.4.50"
3362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3363
+ checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
3364
+ dependencies = [
3365
+ "cfg-if 1.0.0",
3366
+ "js-sys",
3367
+ "once_cell",
3368
+ "wasm-bindgen",
3369
+ "web-sys",
3370
+ ]
3371
+
3372
+ [[package]]
3373
+ name = "wasm-bindgen-macro"
3374
+ version = "0.2.100"
3375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3376
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
3377
+ dependencies = [
3378
+ "quote",
3379
+ "wasm-bindgen-macro-support",
3380
+ ]
3381
+
3382
+ [[package]]
3383
+ name = "wasm-bindgen-macro-support"
3384
+ version = "0.2.100"
3385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3386
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3387
+ dependencies = [
3388
+ "proc-macro2",
3389
+ "quote",
3390
+ "syn 2.0.101",
3391
+ "wasm-bindgen-backend",
3392
+ "wasm-bindgen-shared",
3393
+ ]
3394
+
3395
+ [[package]]
3396
+ name = "wasm-bindgen-shared"
3397
+ version = "0.2.100"
3398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3399
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
3400
+ dependencies = [
3401
+ "unicode-ident",
3402
+ ]
3403
+
3404
+ [[package]]
3405
+ name = "wasm-bindgen-test"
3406
+ version = "0.3.50"
3407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3408
+ checksum = "66c8d5e33ca3b6d9fa3b4676d774c5778031d27a578c2b007f905acf816152c3"
3409
+ dependencies = [
3410
+ "js-sys",
3411
+ "minicov",
3412
+ "wasm-bindgen",
3413
+ "wasm-bindgen-futures",
3414
+ "wasm-bindgen-test-macro",
3415
+ ]
3416
+
3417
+ [[package]]
3418
+ name = "wasm-bindgen-test-macro"
3419
+ version = "0.3.50"
3420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3421
+ checksum = "17d5042cc5fa009658f9a7333ef24291b1291a25b6382dd68862a7f3b969f69b"
3422
+ dependencies = [
3423
+ "proc-macro2",
3424
+ "quote",
3425
+ "syn 2.0.101",
3426
+ ]
3427
+
3428
+ [[package]]
3429
+ name = "web-sys"
3430
+ version = "0.3.77"
3431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3432
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
3433
+ dependencies = [
3434
+ "js-sys",
3435
+ "wasm-bindgen",
3436
+ ]
3437
+
3438
+ [[package]]
3439
+ name = "which"
3440
+ version = "4.4.2"
3441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3442
+ checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
3443
+ dependencies = [
3444
+ "either",
3445
+ "home",
3446
+ "once_cell",
3447
+ "rustix",
3448
+ ]
3449
+
3450
+ [[package]]
3451
+ name = "winapi"
3452
+ version = "0.2.8"
3453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3454
+ checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
3455
+
3456
+ [[package]]
3457
+ name = "winapi"
3458
+ version = "0.3.9"
3459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3460
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3461
+ dependencies = [
3462
+ "winapi-i686-pc-windows-gnu",
3463
+ "winapi-x86_64-pc-windows-gnu",
3464
+ ]
3465
+
3466
+ [[package]]
3467
+ name = "winapi-build"
3468
+ version = "0.1.1"
3469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3470
+ checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
3471
+
3472
+ [[package]]
3473
+ name = "winapi-i686-pc-windows-gnu"
3474
+ version = "0.4.0"
3475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3476
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3477
+
3478
+ [[package]]
3479
+ name = "winapi-util"
3480
+ version = "0.1.5"
3481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3482
+ checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
3483
+ dependencies = [
3484
+ "winapi 0.3.9",
3485
+ ]
3486
+
3487
+ [[package]]
3488
+ name = "winapi-x86_64-pc-windows-gnu"
3489
+ version = "0.4.0"
3490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3491
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3492
+
3493
+ [[package]]
3494
+ name = "windows-link"
3495
+ version = "0.1.1"
3496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3497
+ checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
3498
+
3499
+ [[package]]
3500
+ name = "windows-registry"
3501
+ version = "0.4.0"
3502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3503
+ checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
3504
+ dependencies = [
3505
+ "windows-result",
3506
+ "windows-strings",
3507
+ "windows-targets 0.53.0",
3508
+ ]
3509
+
3510
+ [[package]]
3511
+ name = "windows-result"
3512
+ version = "0.3.2"
3513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3514
+ checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
3515
+ dependencies = [
3516
+ "windows-link",
3517
+ ]
3518
+
3519
+ [[package]]
3520
+ name = "windows-strings"
3521
+ version = "0.3.1"
3522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3523
+ checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
3524
+ dependencies = [
3525
+ "windows-link",
3526
+ ]
3527
+
3528
+ [[package]]
3529
+ name = "windows-sys"
3530
+ version = "0.36.1"
3531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3532
+ checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
3533
+ dependencies = [
3534
+ "windows_aarch64_msvc 0.36.1",
3535
+ "windows_i686_gnu 0.36.1",
3536
+ "windows_i686_msvc 0.36.1",
3537
+ "windows_x86_64_gnu 0.36.1",
3538
+ "windows_x86_64_msvc 0.36.1",
3539
+ ]
3540
+
3541
+ [[package]]
3542
+ name = "windows-sys"
3543
+ version = "0.52.0"
3544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3545
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3546
+ dependencies = [
3547
+ "windows-targets 0.52.6",
3548
+ ]
3549
+
3550
+ [[package]]
3551
+ name = "windows-sys"
3552
+ version = "0.59.0"
3553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3554
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3555
+ dependencies = [
3556
+ "windows-targets 0.52.6",
3557
+ ]
3558
+
3559
+ [[package]]
3560
+ name = "windows-targets"
3561
+ version = "0.52.6"
3562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3563
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3564
+ dependencies = [
3565
+ "windows_aarch64_gnullvm 0.52.6",
3566
+ "windows_aarch64_msvc 0.52.6",
3567
+ "windows_i686_gnu 0.52.6",
3568
+ "windows_i686_gnullvm 0.52.6",
3569
+ "windows_i686_msvc 0.52.6",
3570
+ "windows_x86_64_gnu 0.52.6",
3571
+ "windows_x86_64_gnullvm 0.52.6",
3572
+ "windows_x86_64_msvc 0.52.6",
3573
+ ]
3574
+
3575
+ [[package]]
3576
+ name = "windows-targets"
3577
+ version = "0.53.0"
3578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3579
+ checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
3580
+ dependencies = [
3581
+ "windows_aarch64_gnullvm 0.53.0",
3582
+ "windows_aarch64_msvc 0.53.0",
3583
+ "windows_i686_gnu 0.53.0",
3584
+ "windows_i686_gnullvm 0.53.0",
3585
+ "windows_i686_msvc 0.53.0",
3586
+ "windows_x86_64_gnu 0.53.0",
3587
+ "windows_x86_64_gnullvm 0.53.0",
3588
+ "windows_x86_64_msvc 0.53.0",
3589
+ ]
3590
+
3591
+ [[package]]
3592
+ name = "windows_aarch64_gnullvm"
3593
+ version = "0.52.6"
3594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3595
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3596
+
3597
+ [[package]]
3598
+ name = "windows_aarch64_gnullvm"
3599
+ version = "0.53.0"
3600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3601
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
3602
+
3603
+ [[package]]
3604
+ name = "windows_aarch64_msvc"
3605
+ version = "0.36.1"
3606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3607
+ checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
3608
+
3609
+ [[package]]
3610
+ name = "windows_aarch64_msvc"
3611
+ version = "0.52.6"
3612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3613
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3614
+
3615
+ [[package]]
3616
+ name = "windows_aarch64_msvc"
3617
+ version = "0.53.0"
3618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3619
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
3620
+
3621
+ [[package]]
3622
+ name = "windows_i686_gnu"
3623
+ version = "0.36.1"
3624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3625
+ checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
3626
+
3627
+ [[package]]
3628
+ name = "windows_i686_gnu"
3629
+ version = "0.52.6"
3630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3631
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3632
+
3633
+ [[package]]
3634
+ name = "windows_i686_gnu"
3635
+ version = "0.53.0"
3636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3637
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
3638
+
3639
+ [[package]]
3640
+ name = "windows_i686_gnullvm"
3641
+ version = "0.52.6"
3642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3643
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3644
+
3645
+ [[package]]
3646
+ name = "windows_i686_gnullvm"
3647
+ version = "0.53.0"
3648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3649
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
3650
+
3651
+ [[package]]
3652
+ name = "windows_i686_msvc"
3653
+ version = "0.36.1"
3654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3655
+ checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
3656
+
3657
+ [[package]]
3658
+ name = "windows_i686_msvc"
3659
+ version = "0.52.6"
3660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3661
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3662
+
3663
+ [[package]]
3664
+ name = "windows_i686_msvc"
3665
+ version = "0.53.0"
3666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3667
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
3668
+
3669
+ [[package]]
3670
+ name = "windows_x86_64_gnu"
3671
+ version = "0.36.1"
3672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3673
+ checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
3674
+
3675
+ [[package]]
3676
+ name = "windows_x86_64_gnu"
3677
+ version = "0.52.6"
3678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3679
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3680
+
3681
+ [[package]]
3682
+ name = "windows_x86_64_gnu"
3683
+ version = "0.53.0"
3684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3685
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
3686
+
3687
+ [[package]]
3688
+ name = "windows_x86_64_gnullvm"
3689
+ version = "0.52.6"
3690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3691
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3692
+
3693
+ [[package]]
3694
+ name = "windows_x86_64_gnullvm"
3695
+ version = "0.53.0"
3696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3697
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
3698
+
3699
+ [[package]]
3700
+ name = "windows_x86_64_msvc"
3701
+ version = "0.36.1"
3702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3703
+ checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
3704
+
3705
+ [[package]]
3706
+ name = "windows_x86_64_msvc"
3707
+ version = "0.52.6"
3708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3709
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3710
+
3711
+ [[package]]
3712
+ name = "windows_x86_64_msvc"
3713
+ version = "0.53.0"
3714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3715
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
3716
+
3717
+ [[package]]
3718
+ name = "winreg"
3719
+ version = "0.6.2"
3720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3721
+ checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9"
3722
+ dependencies = [
3723
+ "winapi 0.3.9",
3724
+ ]
3725
+
3726
+ [[package]]
3727
+ name = "write16"
3728
+ version = "1.0.0"
3729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3730
+ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
3731
+
3732
+ [[package]]
3733
+ name = "writeable"
3734
+ version = "0.5.5"
3735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3736
+ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
3737
+
3738
+ [[package]]
3739
+ name = "ws2_32-sys"
3740
+ version = "0.2.1"
3741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3742
+ checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
3743
+ dependencies = [
3744
+ "winapi 0.2.8",
3745
+ "winapi-build",
3746
+ ]
3747
+
3748
+ [[package]]
3749
+ name = "xtask"
3750
+ version = "0.1.0"
3751
+ dependencies = [
3752
+ "anyhow",
3753
+ "clap 4.5.37",
3754
+ "convert_case",
3755
+ "enum-iterator",
3756
+ "reqwest 0.12.15",
3757
+ "serde",
3758
+ ]
3759
+
3760
+ [[package]]
3761
+ name = "yoke"
3762
+ version = "0.7.5"
3763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3764
+ checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
3765
+ dependencies = [
3766
+ "serde",
3767
+ "stable_deref_trait",
3768
+ "yoke-derive",
3769
+ "zerofrom",
3770
+ ]
3771
+
3772
+ [[package]]
3773
+ name = "yoke-derive"
3774
+ version = "0.7.5"
3775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3776
+ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
3777
+ dependencies = [
3778
+ "proc-macro2",
3779
+ "quote",
3780
+ "syn 2.0.101",
3781
+ "synstructure 0.13.2",
3782
+ ]
3783
+
3784
+ [[package]]
3785
+ name = "zerofrom"
3786
+ version = "0.1.6"
3787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3788
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3789
+ dependencies = [
3790
+ "zerofrom-derive",
3791
+ ]
3792
+
3793
+ [[package]]
3794
+ name = "zerofrom-derive"
3795
+ version = "0.1.6"
3796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3797
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3798
+ dependencies = [
3799
+ "proc-macro2",
3800
+ "quote",
3801
+ "syn 2.0.101",
3802
+ "synstructure 0.13.2",
3803
+ ]
3804
+
3805
+ [[package]]
3806
+ name = "zeroize"
3807
+ version = "1.8.1"
3808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3809
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
3810
+
3811
+ [[package]]
3812
+ name = "zerovec"
3813
+ version = "0.10.4"
3814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3815
+ checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
3816
+ dependencies = [
3817
+ "yoke",
3818
+ "zerofrom",
3819
+ "zerovec-derive",
3820
+ ]
3821
+
3822
+ [[package]]
3823
+ name = "zerovec-derive"
3824
+ version = "0.10.3"
3825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3826
+ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
3827
+ dependencies = [
3828
+ "proc-macro2",
3829
+ "quote",
3830
+ "syn 2.0.101",
3831
+ ]