squawk-cli 1.2.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 (283) hide show
  1. squawk_cli-1.2.0/Cargo.lock +2240 -0
  2. squawk_cli-1.2.0/Cargo.toml +4 -0
  3. squawk_cli-1.2.0/PKG-INFO +296 -0
  4. squawk_cli-1.2.0/README.md +275 -0
  5. squawk_cli-1.2.0/cli/Cargo.toml +33 -0
  6. squawk_cli-1.2.0/cli/src/config.rs +169 -0
  7. squawk_cli-1.2.0/cli/src/file_finding.rs +70 -0
  8. squawk_cli-1.2.0/cli/src/main.rs +243 -0
  9. squawk_cli-1.2.0/cli/src/reporter.rs +812 -0
  10. squawk_cli-1.2.0/cli/src/snapshots/squawk__config__test_config__load_assume_in_transaction.snap +19 -0
  11. squawk_cli-1.2.0/cli/src/snapshots/squawk__config__test_config__load_cfg_full.snap +31 -0
  12. squawk_cli-1.2.0/cli/src/snapshots/squawk__config__test_config__load_excluded_paths.snap +19 -0
  13. squawk_cli-1.2.0/cli/src/snapshots/squawk__config__test_config__load_excluded_rules.snap +19 -0
  14. squawk_cli-1.2.0/cli/src/snapshots/squawk__config__test_config__load_fail_on_violations.snap +19 -0
  15. squawk_cli-1.2.0/cli/src/snapshots/squawk__config__test_config__load_pg_version.snap +25 -0
  16. squawk_cli-1.2.0/cli/src/snapshots/squawk__reporter__test_check_files__check_files_invalid_syntax.snap +13 -0
  17. squawk_cli-1.2.0/cli/src/snapshots/squawk__reporter__test_github_comment__generating_comment_multiple_files.snap +36 -0
  18. squawk_cli-1.2.0/cli/src/snapshots/squawk__reporter__test_github_comment__generating_comment_no_violations.snap +50 -0
  19. squawk_cli-1.2.0/cli/src/snapshots/squawk__reporter__test_github_comment__generating_no_violations_no_files.snap +14 -0
  20. squawk_cli-1.2.0/cli/src/snapshots/squawk__reporter__test_reporter__display_no_violations_tty.snap +6 -0
  21. squawk_cli-1.2.0/cli/src/snapshots/squawk__reporter__test_reporter__display_violations_tty.snap +21 -0
  22. squawk_cli-1.2.0/cli/src/snapshots/squawk__reporter__test_reporter__span_offsets.snap +42 -0
  23. squawk_cli-1.2.0/cli/src/subcommand.rs +233 -0
  24. squawk_cli-1.2.0/github/Cargo.toml +19 -0
  25. squawk_cli-1.2.0/github/README.md +3 -0
  26. squawk_cli-1.2.0/github/src/actions.rs +66 -0
  27. squawk_cli-1.2.0/github/src/app.rs +252 -0
  28. squawk_cli-1.2.0/github/src/lib.rs +80 -0
  29. squawk_cli-1.2.0/linter/Cargo.toml +22 -0
  30. squawk_cli-1.2.0/linter/README.md +4 -0
  31. squawk_cli-1.2.0/linter/src/errors.rs +20 -0
  32. squawk_cli-1.2.0/linter/src/lib.rs +464 -0
  33. squawk_cli-1.2.0/linter/src/rules/README.md +25 -0
  34. squawk_cli-1.2.0/linter/src/rules/adding_field_with_default.rs +243 -0
  35. squawk_cli-1.2.0/linter/src/rules/adding_foreign_key_constraint.rs +150 -0
  36. squawk_cli-1.2.0/linter/src/rules/adding_not_null_field.rs +107 -0
  37. squawk_cli-1.2.0/linter/src/rules/adding_primary_key_constraint.rs +103 -0
  38. squawk_cli-1.2.0/linter/src/rules/adding_required_field.rs +89 -0
  39. squawk_cli-1.2.0/linter/src/rules/bad_drop_database.rs +52 -0
  40. squawk_cli-1.2.0/linter/src/rules/ban_char_field.rs +93 -0
  41. squawk_cli-1.2.0/linter/src/rules/ban_concurrent_index_creation_in_transaction.rs +119 -0
  42. squawk_cli-1.2.0/linter/src/rules/ban_drop_column.rs +55 -0
  43. squawk_cli-1.2.0/linter/src/rules/ban_drop_not_null.rs +51 -0
  44. squawk_cli-1.2.0/linter/src/rules/ban_drop_table.rs +51 -0
  45. squawk_cli-1.2.0/linter/src/rules/changing_column_type.rs +70 -0
  46. squawk_cli-1.2.0/linter/src/rules/constraint_missing_not_valid.rs +265 -0
  47. squawk_cli-1.2.0/linter/src/rules/disallow_unique_constraint.rs +172 -0
  48. squawk_cli-1.2.0/linter/src/rules/mod.rs +54 -0
  49. squawk_cli-1.2.0/linter/src/rules/non_volatile_built_in_functions.txt +2963 -0
  50. squawk_cli-1.2.0/linter/src/rules/prefer_big_int.rs +129 -0
  51. squawk_cli-1.2.0/linter/src/rules/prefer_bigint_over_int.rs +121 -0
  52. squawk_cli-1.2.0/linter/src/rules/prefer_bigint_over_smallint.rs +127 -0
  53. squawk_cli-1.2.0/linter/src/rules/prefer_identity.rs +117 -0
  54. squawk_cli-1.2.0/linter/src/rules/prefer_robust_stmts.rs +467 -0
  55. squawk_cli-1.2.0/linter/src/rules/prefer_text_field.rs +161 -0
  56. squawk_cli-1.2.0/linter/src/rules/prefer_timestamptz.rs +111 -0
  57. squawk_cli-1.2.0/linter/src/rules/renaming_column.rs +53 -0
  58. squawk_cli-1.2.0/linter/src/rules/renaming_table.rs +53 -0
  59. squawk_cli-1.2.0/linter/src/rules/require_concurrent_index_creation.rs +112 -0
  60. squawk_cli-1.2.0/linter/src/rules/require_concurrent_index_deletion.rs +88 -0
  61. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__add_numbers_ok.snap +23 -0
  62. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__default_arbitrary_func_err.snap +23 -0
  63. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__default_bool_ok.snap +5 -0
  64. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__default_enum_ok.snap +5 -0
  65. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__default_integer_ok.snap +5 -0
  66. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__default_jsonb_ok.snap +5 -0
  67. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__default_now_func_ok.snap +5 -0
  68. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__default_random_with_args_err.snap +23 -0
  69. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__default_str_ok.snap +5 -0
  70. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__default_uuid_err.snap +23 -0
  71. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__default_volatile_func_err.snap +23 -0
  72. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__docs_example_bad.snap +23 -0
  73. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_field_with_default__test_rules__docs_example_ok.snap +5 -0
  74. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test_rules__adding_field_that_is_not_nullable.snap +5 -0
  75. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test_rules__adding_field_that_is_not_nullable_in_version_11.snap +5 -0
  76. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test_rules__adding_field_that_is_not_nullable_without_default.snap +5 -0
  77. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_not_null_field__test_rules__set_not_null.snap +23 -0
  78. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_primary_key_constraint__test_rules__plain_primary_key-2.snap +5 -0
  79. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_primary_key_constraint__test_rules__plain_primary_key.snap +23 -0
  80. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_primary_key_constraint__test_rules__serial_primary_key.snap +23 -0
  81. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_required_field__test_rules__not_null_with_default.snap +5 -0
  82. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_required_field__test_rules__not_null_without_default.snap +23 -0
  83. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__adding_required_field__test_rules__nullable.snap +5 -0
  84. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__bad_drop_database__test_rules__ban_drop_database.snap +46 -0
  85. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test_rules__creating_table_with_char_errors.snap +62 -0
  86. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test_rules__creating_table_with_var_char_and_text_okay.snap +5 -0
  87. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__ban_char_field__test_rules__regression_with_indexing_2.snap +5 -0
  88. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__ban_concurrent_index_creation_in_transaction__test_rules__adding_index_concurrently_in_transaction-2.snap +5 -0
  89. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__ban_concurrent_index_creation_in_transaction__test_rules__adding_index_concurrently_in_transaction.snap +23 -0
  90. squawk_cli-1.2.0/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 +5 -0
  91. squawk_cli-1.2.0/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 +23 -0
  92. squawk_cli-1.2.0/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 +6 -0
  93. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__ban_drop_column__test_rules__drop_column.snap +20 -0
  94. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__ban_drop_not_null__test_rules__ban_drop_not_null.snap +20 -0
  95. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__ban_drop_table__test_rules__ban_drop_table.snap +47 -0
  96. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__changing_column_type__test_rules__changing_field_type-2.snap +40 -0
  97. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__changing_column_type__test_rules__changing_field_type.snap +23 -0
  98. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test_rules__adding_check_constraint-2.snap +5 -0
  99. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test_rules__adding_check_constraint.snap +23 -0
  100. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test_rules__adding_foreign_key-2.snap +5 -0
  101. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test_rules__adding_foreign_key.snap +23 -0
  102. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test_rules__ensure_ignored_when_new_table.snap +5 -0
  103. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test_rules__ensure_ignored_when_new_table_with_assume_in_transaction.snap +5 -0
  104. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test_rules__not_valid_validate_in_transaction.snap +12 -0
  105. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test_rules__not_valid_validate_with_assume_in_transaction.snap +12 -0
  106. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__constraint_missing_not_valid__test_rules__not_valid_validate_with_assume_in_transaction_with_explicit_commit.snap +12 -0
  107. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test_rules__adding_unique_constraint-2.snap +5 -0
  108. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test_rules__adding_unique_constraint-3.snap +5 -0
  109. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test_rules__adding_unique_constraint.snap +23 -0
  110. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test_rules__unique_constraint_inline_add_column.snap +23 -0
  111. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__disallow_unique_constraint__test_rules__unique_constraint_inline_add_column_unique.snap +23 -0
  112. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__prefer_big_int__test_rules__create_table_bad.snap +142 -0
  113. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__prefer_bigint_over_int__test_rules__create_table_bad.snap +74 -0
  114. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__prefer_bigint_over_smallint__test_rules__create_table_bad.snap +74 -0
  115. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__prefer_identity__test_rules__prefer_identity_bad.snap +108 -0
  116. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test_rules__create_index_concurrently_unnamed.snap +22 -0
  117. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test_rules__disable_row_level_security.snap +7 -0
  118. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test_rules__enable_row_level_security.snap +7 -0
  119. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__prefer_robust_stmts__test_rules__enable_row_level_security_without_exists_check.snap +7 -0
  120. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__prefer_text_field__test_rules__adding_column_non_text.snap +23 -0
  121. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__prefer_timestamptz__test_rules__alter_table.snap +40 -0
  122. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__renaming_column__test_rules__renaming_column.snap +20 -0
  123. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__renaming_table__test_rules__renaming_table.snap +20 -0
  124. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__require_concurrent_index_creation__test_rules__adding_index_non_concurrently-2.snap +5 -0
  125. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__require_concurrent_index_creation__test_rules__adding_index_non_concurrently.snap +23 -0
  126. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__require_concurrent_index_creation__test_rules__ensure_ignored_when_new_table.snap +5 -0
  127. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__require_concurrent_index_creation__test_rules__ensure_ignored_when_new_table_with_assume_in_transaction.snap +5 -0
  128. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test_rules__begin_repeated.snap +23 -0
  129. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test_rules__begin_with_assume_in_transaction.snap +23 -0
  130. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test_rules__commit_repeated.snap +23 -0
  131. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test_rules__commit_with_assume_in_transaction.snap +23 -0
  132. squawk_cli-1.2.0/linter/src/rules/snapshots/squawk_linter__rules__transaction_nesting__test_rules__rollback_with_assume_in_transaction.snap +23 -0
  133. squawk_cli-1.2.0/linter/src/rules/test_utils.rs +10 -0
  134. squawk_cli-1.2.0/linter/src/rules/transaction_nesting.rs +178 -0
  135. squawk_cli-1.2.0/linter/src/rules/utils.rs +55 -0
  136. squawk_cli-1.2.0/linter/src/snapshots/squawk_linter__test_rules__rule_names_debug_snap.snap +32 -0
  137. squawk_cli-1.2.0/linter/src/snapshots/squawk_linter__test_rules__rule_names_display_snap.snap +30 -0
  138. squawk_cli-1.2.0/linter/src/snapshots/squawk_linter__versions__test_pg_version__parse.snap +12 -0
  139. squawk_cli-1.2.0/linter/src/versions.rs +141 -0
  140. squawk_cli-1.2.0/linter/src/violations.rs +134 -0
  141. squawk_cli-1.2.0/parser/Cargo.toml +21 -0
  142. squawk_cli-1.2.0/parser/README.md +9 -0
  143. squawk_cli-1.2.0/parser/src/ast.rs +977 -0
  144. squawk_cli-1.2.0/parser/src/error.rs +52 -0
  145. squawk_cli-1.2.0/parser/src/lib.rs +10 -0
  146. squawk_cli-1.2.0/parser/src/parse.rs +1379 -0
  147. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__adding_index_non_concurrently.snap +102 -0
  148. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_column_default_with_function.snap +56 -0
  149. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_database_collation.snap +21 -0
  150. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_database_stmt.snap +131 -0
  151. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_default_privileges_stmt.snap +81 -0
  152. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_enum_stmt.snap +36 -0
  153. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_event_trigger_stmt.snap +24 -0
  154. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_extension_contents_stmt-2.snap +130 -0
  155. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_extension_contents_stmt.snap +31 -0
  156. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_foreign_data_wrapper.snap +63 -0
  157. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_foreign_server_stmt.snap +63 -0
  158. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_function_stmt.snap +430 -0
  159. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_object_depends_stmt.snap +145 -0
  160. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_op_class_stmt.snap +101 -0
  161. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_op_family_stmt.snap +864 -0
  162. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_operator_stmt.snap +281 -0
  163. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_policy_stmt-2.snap +94 -0
  164. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_policy_stmt.snap +36 -0
  165. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_publication.snap +127 -0
  166. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_role_set_stmt.snap +51 -0
  167. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_role_stmt.snap +74 -0
  168. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_sequence_stmt.snap +54 -0
  169. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_subscription_stmt.snap +71 -0
  170. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_system_stmt.snap +58 -0
  171. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_table_extension.snap +43 -0
  172. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_table_space_stmt.snap +26 -0
  173. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_ts_configuration_stmt.snap +80 -0
  174. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_ts_dictionary_stmt.snap +61 -0
  175. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__alter_user_mapping_stmt.snap +54 -0
  176. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__checkpoint.snap +17 -0
  177. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__close_portal_stmt.snap +21 -0
  178. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__cluster_stmt.snap +68 -0
  179. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__comment_on_stmt.snap +98 -0
  180. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__composite_type_stmt.snap +105 -0
  181. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_access_method_stmt.snap +33 -0
  182. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_cast_stmt.snap +134 -0
  183. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_conversion_stmt.snap +42 -0
  184. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_database_stmt.snap +131 -0
  185. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_domain_stmt.snap +165 -0
  186. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_enum_stmt.snap +50 -0
  187. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_event_trigger_stmt.snap +33 -0
  188. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_extension.snap +21 -0
  189. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_foreign_data_wrapper.snap +21 -0
  190. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_foreign_server_stmt.snap +86 -0
  191. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_foriegn_table_stmt.snap +349 -0
  192. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_function_stmt.snap +99 -0
  193. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_index_without_index_name.snap +53 -0
  194. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_op_class_stmt.snap +1157 -0
  195. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_plang_stmt.snap +42 -0
  196. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_policy_stmt.snap +53 -0
  197. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_procedure_stmt.snap +199 -0
  198. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_publication_stmt.snap +132 -0
  199. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_range_stmt.snap +93 -0
  200. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_role_stmt.snap +86 -0
  201. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_sequence_stmt.snap +54 -0
  202. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_stats_stmt.snap +70 -0
  203. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_subscription_stmt.snap +40 -0
  204. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_table_as_stmt.snap +89 -0
  205. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_transform_stmt.snap +154 -0
  206. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_trigger_stmt.snap +53 -0
  207. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_user_mapping_stmt.snap +74 -0
  208. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__create_view_stmt.snap +189 -0
  209. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__deallocate_stmt.snap +17 -0
  210. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__declare_cursor_stmt.snap +73 -0
  211. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__define_stmt-2.snap +270 -0
  212. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__define_stmt-3.snap +148 -0
  213. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__define_stmt.snap +151 -0
  214. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__discard_stmt.snap +47 -0
  215. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__do_stmt.snap +40 -0
  216. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__drop_database_stmt.snap +37 -0
  217. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__drop_extension.snap +22 -0
  218. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__drop_index.snap +204 -0
  219. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__drop_owned_stmt.snap +36 -0
  220. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__drop_role_set_stmt.snap +33 -0
  221. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__drop_subscription_stmt.snap +24 -0
  222. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__drop_user_mapping_stmt.snap +35 -0
  223. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__error_paths.snap +9 -0
  224. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__execute_stmt.snap +71 -0
  225. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__explain_stmt.snap +184 -0
  226. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__fetch_stmt.snap +27 -0
  227. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__import_foreign_schema_stmt.snap +30 -0
  228. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__json_index_operator.snap +101 -0
  229. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__listen_stmt.snap +21 -0
  230. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__load_stmt.snap +21 -0
  231. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__lock_stmt.snap +70 -0
  232. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__migration.snap +132 -0
  233. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__notify_stmt.snap +37 -0
  234. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_alter_collation_stmt.snap +24 -0
  235. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_alter_constraint_regression.snap +102 -0
  236. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_alter_domain_stmt.snap +33 -0
  237. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_alter_table_set_list.snap +67 -0
  238. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_attach_table_partition.snap +96 -0
  239. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_create_schema_stmt.snap +21 -0
  240. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_create_table_partition.snap +91 -0
  241. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_create_table_regression.snap +162 -0
  242. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_delete_stmt-2.snap +79 -0
  243. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_delete_stmt.snap +32 -0
  244. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_delete_stmt_2.snap +79 -0
  245. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_detach_table_partition.snap +60 -0
  246. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_func_call.snap +72 -0
  247. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_generated_column.snap +128 -0
  248. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_inh.snap +106 -0
  249. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_replica_identity_stmt.snap +48 -0
  250. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_set_operations_stmt-2.snap +158 -0
  251. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_set_operations_stmt.snap +158 -0
  252. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_set_operations_stmt_2.snap +158 -0
  253. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_sql_create_index.snap +55 -0
  254. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_sql_create_index_concurrently.snap +55 -0
  255. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_sql_create_unique_index_safe.snap +59 -0
  256. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parse_sql_query_json.snap +139 -0
  257. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parsing_copy_stmt.snap +38 -0
  258. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parsing_create_table.snap +560 -0
  259. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parsing_create_table_space_stmt.snap +24 -0
  260. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parsing_create_table_using_like.snap +52 -0
  261. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parsing_drop_table_space_stmt.snap +21 -0
  262. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parsing_grant_role.snap +48 -0
  263. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parsing_grant_stmt.snap +69 -0
  264. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parsing_insert_stmt.snap +89 -0
  265. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parsing_update_stmt.snap +103 -0
  266. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parsing_variable_set_stmt.snap +38 -0
  267. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__parsing_variable_show_stmt.snap +19 -0
  268. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__prepare_stmt.snap +192 -0
  269. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__reassign_owned_stmt.snap +44 -0
  270. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__refresh_material_view_stmt.snap +59 -0
  271. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__regression_update_table.snap +51 -0
  272. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__reindex_stmt.snap +94 -0
  273. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__rule_stmt.snap +131 -0
  274. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__security_label_stmt.snap +40 -0
  275. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__select_one.snap +58 -0
  276. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__select_string_literal.snap +58 -0
  277. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__set_constraints.snap +58 -0
  278. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__span_with_indent.snap +58 -0
  279. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__span_with_new_line_and_indent.snap +58 -0
  280. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__truncate_stmt.snap +105 -0
  281. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__unlisten_stmt.snap +21 -0
  282. squawk_cli-1.2.0/parser/src/snapshots/squawk_parser__parse__tests__vacuum_stmt.snap +69 -0
  283. squawk_cli-1.2.0/pyproject.toml +23 -0
@@ -0,0 +1,2240 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
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 = "ansi_term"
22
+ version = "0.12.1"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
25
+ dependencies = [
26
+ "winapi 0.3.9",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "atty"
31
+ version = "0.2.14"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
34
+ dependencies = [
35
+ "hermit-abi",
36
+ "libc",
37
+ "winapi 0.3.9",
38
+ ]
39
+
40
+ [[package]]
41
+ name = "autocfg"
42
+ version = "0.1.8"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "0dde43e75fd43e8a1bf86103336bc699aa8d17ad1be60c76c0bdfd4828e19b78"
45
+ dependencies = [
46
+ "autocfg 1.1.0",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "autocfg"
51
+ version = "1.1.0"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
54
+
55
+ [[package]]
56
+ name = "backtrace"
57
+ version = "0.3.65"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "11a17d453482a265fd5f8479f2a3f405566e6ca627837aaddb85af8b1ab8ef61"
60
+ dependencies = [
61
+ "addr2line",
62
+ "cc",
63
+ "cfg-if 1.0.0",
64
+ "libc",
65
+ "miniz_oxide",
66
+ "object",
67
+ "rustc-demangle",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "base64"
72
+ version = "0.10.1"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
75
+ dependencies = [
76
+ "byteorder",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "base64"
81
+ version = "0.12.3"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
84
+
85
+ [[package]]
86
+ name = "base64"
87
+ version = "0.13.0"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
90
+
91
+ [[package]]
92
+ name = "bindgen"
93
+ version = "0.64.0"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "c4243e6031260db77ede97ad86c27e501d646a27ab57b59a574f725d98ab1fb4"
96
+ dependencies = [
97
+ "bitflags",
98
+ "cexpr",
99
+ "clang-sys",
100
+ "lazy_static",
101
+ "lazycell",
102
+ "log",
103
+ "peeking_take_while",
104
+ "proc-macro2",
105
+ "quote",
106
+ "regex",
107
+ "rustc-hash",
108
+ "shlex",
109
+ "syn",
110
+ "which",
111
+ ]
112
+
113
+ [[package]]
114
+ name = "bitflags"
115
+ version = "1.3.2"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
118
+
119
+ [[package]]
120
+ name = "bumpalo"
121
+ version = "3.10.0"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3"
124
+
125
+ [[package]]
126
+ name = "byteorder"
127
+ version = "1.4.3"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
130
+
131
+ [[package]]
132
+ name = "bytes"
133
+ version = "0.4.12"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
136
+ dependencies = [
137
+ "byteorder",
138
+ "either",
139
+ "iovec",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "cc"
144
+ version = "1.0.99"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "96c51067fd44124faa7f870b4b1c969379ad32b2ba805aa959430ceaa384f695"
147
+
148
+ [[package]]
149
+ name = "cexpr"
150
+ version = "0.6.0"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
153
+ dependencies = [
154
+ "nom",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "cfg-if"
159
+ version = "0.1.10"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
162
+
163
+ [[package]]
164
+ name = "cfg-if"
165
+ version = "1.0.0"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
168
+
169
+ [[package]]
170
+ name = "clang-sys"
171
+ version = "1.3.3"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "5a050e2153c5be08febd6734e29298e844fdb0fa21aeddd63b4eb7baa106c69b"
174
+ dependencies = [
175
+ "glob",
176
+ "libc",
177
+ "libloading",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "clap"
182
+ version = "2.34.0"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
185
+ dependencies = [
186
+ "ansi_term",
187
+ "atty",
188
+ "bitflags",
189
+ "strsim",
190
+ "textwrap",
191
+ "unicode-width",
192
+ "vec_map",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "cloudabi"
197
+ version = "0.0.3"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
200
+ dependencies = [
201
+ "bitflags",
202
+ ]
203
+
204
+ [[package]]
205
+ name = "console"
206
+ version = "0.11.3"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "8c0994e656bba7b922d8dd1245db90672ffb701e684e45be58f20719d69abc5a"
209
+ dependencies = [
210
+ "encode_unicode",
211
+ "lazy_static",
212
+ "libc",
213
+ "regex",
214
+ "terminal_size",
215
+ "termios",
216
+ "unicode-width",
217
+ "winapi 0.3.9",
218
+ "winapi-util",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "cookie"
223
+ version = "0.12.0"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "888604f00b3db336d2af898ec3c1d5d0ddf5e6d462220f2ededc33a87ac4bbd5"
226
+ dependencies = [
227
+ "time 0.1.44",
228
+ "url 1.7.2",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "cookie_store"
233
+ version = "0.7.0"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "46750b3f362965f197996c4448e4a0935e791bf7d6631bfce9ee0af3d24c919c"
236
+ dependencies = [
237
+ "cookie",
238
+ "failure",
239
+ "idna 0.1.5",
240
+ "log",
241
+ "publicsuffix",
242
+ "serde",
243
+ "serde_json",
244
+ "time 0.1.44",
245
+ "try_from",
246
+ "url 1.7.2",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "core-foundation"
251
+ version = "0.9.3"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
254
+ dependencies = [
255
+ "core-foundation-sys",
256
+ "libc",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "core-foundation-sys"
261
+ version = "0.8.3"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
264
+
265
+ [[package]]
266
+ name = "crc32fast"
267
+ version = "1.3.2"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
270
+ dependencies = [
271
+ "cfg-if 1.0.0",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "crossbeam-deque"
276
+ version = "0.7.4"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "c20ff29ded3204c5106278a81a38f4b482636ed4fa1e6cfbeef193291beb29ed"
279
+ dependencies = [
280
+ "crossbeam-epoch",
281
+ "crossbeam-utils",
282
+ "maybe-uninit",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "crossbeam-epoch"
287
+ version = "0.8.2"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"
290
+ dependencies = [
291
+ "autocfg 1.1.0",
292
+ "cfg-if 0.1.10",
293
+ "crossbeam-utils",
294
+ "lazy_static",
295
+ "maybe-uninit",
296
+ "memoffset",
297
+ "scopeguard",
298
+ ]
299
+
300
+ [[package]]
301
+ name = "crossbeam-queue"
302
+ version = "0.2.3"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570"
305
+ dependencies = [
306
+ "cfg-if 0.1.10",
307
+ "crossbeam-utils",
308
+ "maybe-uninit",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "crossbeam-utils"
313
+ version = "0.7.2"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
316
+ dependencies = [
317
+ "autocfg 1.1.0",
318
+ "cfg-if 0.1.10",
319
+ "lazy_static",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "difference"
324
+ version = "2.0.0"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
327
+
328
+ [[package]]
329
+ name = "dtoa"
330
+ version = "0.4.8"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
333
+
334
+ [[package]]
335
+ name = "either"
336
+ version = "1.7.0"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "3f107b87b6afc2a64fd13cac55fe06d6c8859f12d4b14cbcdd2c67d0976781be"
339
+
340
+ [[package]]
341
+ name = "encode_unicode"
342
+ version = "0.3.6"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
345
+
346
+ [[package]]
347
+ name = "encoding_rs"
348
+ version = "0.8.31"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
351
+ dependencies = [
352
+ "cfg-if 1.0.0",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "failure"
357
+ version = "0.1.8"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86"
360
+ dependencies = [
361
+ "backtrace",
362
+ "failure_derive",
363
+ ]
364
+
365
+ [[package]]
366
+ name = "failure_derive"
367
+ version = "0.1.8"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4"
370
+ dependencies = [
371
+ "proc-macro2",
372
+ "quote",
373
+ "syn",
374
+ "synstructure",
375
+ ]
376
+
377
+ [[package]]
378
+ name = "fastrand"
379
+ version = "1.7.0"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf"
382
+ dependencies = [
383
+ "instant",
384
+ ]
385
+
386
+ [[package]]
387
+ name = "flate2"
388
+ version = "1.0.24"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
391
+ dependencies = [
392
+ "crc32fast",
393
+ "miniz_oxide",
394
+ ]
395
+
396
+ [[package]]
397
+ name = "fnv"
398
+ version = "1.0.7"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
401
+
402
+ [[package]]
403
+ name = "foreign-types"
404
+ version = "0.3.2"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
407
+ dependencies = [
408
+ "foreign-types-shared",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "foreign-types-shared"
413
+ version = "0.1.1"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
416
+
417
+ [[package]]
418
+ name = "form_urlencoded"
419
+ version = "1.0.1"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
422
+ dependencies = [
423
+ "matches",
424
+ "percent-encoding 2.1.0",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "fs_extra"
429
+ version = "1.3.0"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
432
+
433
+ [[package]]
434
+ name = "fuchsia-cprng"
435
+ version = "0.1.1"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
438
+
439
+ [[package]]
440
+ name = "fuchsia-zircon"
441
+ version = "0.3.3"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
444
+ dependencies = [
445
+ "bitflags",
446
+ "fuchsia-zircon-sys",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "fuchsia-zircon-sys"
451
+ version = "0.3.3"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
454
+
455
+ [[package]]
456
+ name = "futures"
457
+ version = "0.1.31"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678"
460
+
461
+ [[package]]
462
+ name = "futures-cpupool"
463
+ version = "0.1.8"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4"
466
+ dependencies = [
467
+ "futures",
468
+ "num_cpus",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "gimli"
473
+ version = "0.26.1"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "78cc372d058dcf6d5ecd98510e7fbc9e5aec4d21de70f65fea8fecebcd881bd4"
476
+
477
+ [[package]]
478
+ name = "glob"
479
+ version = "0.3.1"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
482
+
483
+ [[package]]
484
+ name = "h2"
485
+ version = "0.1.26"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462"
488
+ dependencies = [
489
+ "byteorder",
490
+ "bytes",
491
+ "fnv",
492
+ "futures",
493
+ "http",
494
+ "indexmap",
495
+ "log",
496
+ "slab",
497
+ "string",
498
+ "tokio-io",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "hashbrown"
503
+ version = "0.12.1"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3"
506
+
507
+ [[package]]
508
+ name = "heck"
509
+ version = "0.3.3"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
512
+ dependencies = [
513
+ "unicode-segmentation",
514
+ ]
515
+
516
+ [[package]]
517
+ name = "hermit-abi"
518
+ version = "0.1.19"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
521
+ dependencies = [
522
+ "libc",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "http"
527
+ version = "0.1.21"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "d6ccf5ede3a895d8856620237b2f02972c1bbc78d2965ad7fe8838d4a0ed41f0"
530
+ dependencies = [
531
+ "bytes",
532
+ "fnv",
533
+ "itoa 0.4.8",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "http-body"
538
+ version = "0.1.0"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d"
541
+ dependencies = [
542
+ "bytes",
543
+ "futures",
544
+ "http",
545
+ "tokio-buf",
546
+ ]
547
+
548
+ [[package]]
549
+ name = "httparse"
550
+ version = "1.7.1"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c"
553
+
554
+ [[package]]
555
+ name = "hyper"
556
+ version = "0.12.36"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "5c843caf6296fc1f93444735205af9ed4e109a539005abb2564ae1d6fad34c52"
559
+ dependencies = [
560
+ "bytes",
561
+ "futures",
562
+ "futures-cpupool",
563
+ "h2",
564
+ "http",
565
+ "http-body",
566
+ "httparse",
567
+ "iovec",
568
+ "itoa 0.4.8",
569
+ "log",
570
+ "net2",
571
+ "rustc_version",
572
+ "time 0.1.44",
573
+ "tokio",
574
+ "tokio-buf",
575
+ "tokio-executor",
576
+ "tokio-io",
577
+ "tokio-reactor",
578
+ "tokio-tcp",
579
+ "tokio-threadpool",
580
+ "tokio-timer",
581
+ "want",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "hyper-tls"
586
+ version = "0.3.2"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "3a800d6aa50af4b5850b2b0f659625ce9504df908e9733b635720483be26174f"
589
+ dependencies = [
590
+ "bytes",
591
+ "futures",
592
+ "hyper",
593
+ "native-tls",
594
+ "tokio-io",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "idna"
599
+ version = "0.1.5"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e"
602
+ dependencies = [
603
+ "matches",
604
+ "unicode-bidi",
605
+ "unicode-normalization",
606
+ ]
607
+
608
+ [[package]]
609
+ name = "idna"
610
+ version = "0.2.3"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
613
+ dependencies = [
614
+ "matches",
615
+ "unicode-bidi",
616
+ "unicode-normalization",
617
+ ]
618
+
619
+ [[package]]
620
+ name = "indexmap"
621
+ version = "1.9.1"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
624
+ dependencies = [
625
+ "autocfg 1.1.0",
626
+ "hashbrown",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "insta"
631
+ version = "0.16.1"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "617e921abc813f96a3b00958c079e7bf1e2db998f8a04f1546dd967373a418ee"
634
+ dependencies = [
635
+ "console",
636
+ "difference",
637
+ "lazy_static",
638
+ "serde",
639
+ "serde_json",
640
+ "serde_yaml",
641
+ ]
642
+
643
+ [[package]]
644
+ name = "instant"
645
+ version = "0.1.12"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
648
+ dependencies = [
649
+ "cfg-if 1.0.0",
650
+ ]
651
+
652
+ [[package]]
653
+ name = "iovec"
654
+ version = "0.1.4"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
657
+ dependencies = [
658
+ "libc",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "itoa"
663
+ version = "0.4.8"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
666
+
667
+ [[package]]
668
+ name = "itoa"
669
+ version = "1.0.2"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
672
+
673
+ [[package]]
674
+ name = "js-sys"
675
+ version = "0.3.58"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "c3fac17f7123a73ca62df411b1bf727ccc805daa070338fda671c86dac1bdc27"
678
+ dependencies = [
679
+ "wasm-bindgen",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "jsonwebtoken"
684
+ version = "8.1.1"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "1aa4b4af834c6cfd35d8763d359661b90f2e45d8f750a0849156c7f4671af09c"
687
+ dependencies = [
688
+ "base64 0.13.0",
689
+ "pem",
690
+ "ring",
691
+ "serde",
692
+ "serde_json",
693
+ "simple_asn1",
694
+ ]
695
+
696
+ [[package]]
697
+ name = "kernel32-sys"
698
+ version = "0.2.2"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
701
+ dependencies = [
702
+ "winapi 0.2.8",
703
+ "winapi-build",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "lazy_static"
708
+ version = "1.4.0"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
711
+
712
+ [[package]]
713
+ name = "lazycell"
714
+ version = "1.3.0"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
717
+
718
+ [[package]]
719
+ name = "libc"
720
+ version = "0.2.126"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836"
723
+
724
+ [[package]]
725
+ name = "libloading"
726
+ version = "0.7.3"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd"
729
+ dependencies = [
730
+ "cfg-if 1.0.0",
731
+ "winapi 0.3.9",
732
+ ]
733
+
734
+ [[package]]
735
+ name = "libpg_query-sys"
736
+ version = "0.4.0"
737
+ source = "git+https://github.com/chdsbd/libpg_query-sys.git?rev=f4584dcbcb8c1f3bee550477257e84a846fdd92d#f4584dcbcb8c1f3bee550477257e84a846fdd92d"
738
+ dependencies = [
739
+ "bindgen",
740
+ "cc",
741
+ "fs_extra",
742
+ "glob",
743
+ "make-cmd",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "linked-hash-map"
748
+ version = "0.5.6"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
751
+
752
+ [[package]]
753
+ name = "lock_api"
754
+ version = "0.3.4"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75"
757
+ dependencies = [
758
+ "scopeguard",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "log"
763
+ version = "0.4.17"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
766
+ dependencies = [
767
+ "cfg-if 1.0.0",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "make-cmd"
772
+ version = "0.1.0"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "a8ca8afbe8af1785e09636acb5a41e08a765f5f0340568716c18a8700ba3c0d3"
775
+
776
+ [[package]]
777
+ name = "matches"
778
+ version = "0.1.9"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
781
+
782
+ [[package]]
783
+ name = "maybe-uninit"
784
+ version = "2.0.0"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
787
+
788
+ [[package]]
789
+ name = "memchr"
790
+ version = "2.5.0"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
793
+
794
+ [[package]]
795
+ name = "memoffset"
796
+ version = "0.5.6"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "043175f069eda7b85febe4a74abbaeff828d9f8b448515d3151a14a3542811aa"
799
+ dependencies = [
800
+ "autocfg 1.1.0",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "mime"
805
+ version = "0.3.16"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
808
+
809
+ [[package]]
810
+ name = "mime_guess"
811
+ version = "2.0.4"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
814
+ dependencies = [
815
+ "mime",
816
+ "unicase",
817
+ ]
818
+
819
+ [[package]]
820
+ name = "minimal-lexical"
821
+ version = "0.2.1"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
824
+
825
+ [[package]]
826
+ name = "miniz_oxide"
827
+ version = "0.5.3"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
830
+ dependencies = [
831
+ "adler",
832
+ ]
833
+
834
+ [[package]]
835
+ name = "mio"
836
+ version = "0.6.23"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
839
+ dependencies = [
840
+ "cfg-if 0.1.10",
841
+ "fuchsia-zircon",
842
+ "fuchsia-zircon-sys",
843
+ "iovec",
844
+ "kernel32-sys",
845
+ "libc",
846
+ "log",
847
+ "miow",
848
+ "net2",
849
+ "slab",
850
+ "winapi 0.2.8",
851
+ ]
852
+
853
+ [[package]]
854
+ name = "miow"
855
+ version = "0.2.2"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
858
+ dependencies = [
859
+ "kernel32-sys",
860
+ "net2",
861
+ "winapi 0.2.8",
862
+ "ws2_32-sys",
863
+ ]
864
+
865
+ [[package]]
866
+ name = "native-tls"
867
+ version = "0.2.10"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
870
+ dependencies = [
871
+ "lazy_static",
872
+ "libc",
873
+ "log",
874
+ "openssl",
875
+ "openssl-probe",
876
+ "openssl-sys",
877
+ "schannel",
878
+ "security-framework",
879
+ "security-framework-sys",
880
+ "tempfile",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "net2"
885
+ version = "0.2.37"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
888
+ dependencies = [
889
+ "cfg-if 0.1.10",
890
+ "libc",
891
+ "winapi 0.3.9",
892
+ ]
893
+
894
+ [[package]]
895
+ name = "nom"
896
+ version = "7.1.1"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
899
+ dependencies = [
900
+ "memchr",
901
+ "minimal-lexical",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "num-bigint"
906
+ version = "0.4.3"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
909
+ dependencies = [
910
+ "autocfg 1.1.0",
911
+ "num-integer",
912
+ "num-traits",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "num-integer"
917
+ version = "0.1.45"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
920
+ dependencies = [
921
+ "autocfg 1.1.0",
922
+ "num-traits",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "num-traits"
927
+ version = "0.2.15"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
930
+ dependencies = [
931
+ "autocfg 1.1.0",
932
+ ]
933
+
934
+ [[package]]
935
+ name = "num_cpus"
936
+ version = "1.13.1"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
939
+ dependencies = [
940
+ "hermit-abi",
941
+ "libc",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "num_threads"
946
+ version = "0.1.6"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
949
+ dependencies = [
950
+ "libc",
951
+ ]
952
+
953
+ [[package]]
954
+ name = "object"
955
+ version = "0.28.4"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "e42c982f2d955fac81dd7e1d0e1426a7d702acd9c98d19ab01083a6a0328c424"
958
+ dependencies = [
959
+ "memchr",
960
+ ]
961
+
962
+ [[package]]
963
+ name = "once_cell"
964
+ version = "1.13.0"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1"
967
+
968
+ [[package]]
969
+ name = "openssl"
970
+ version = "0.10.40"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "fb81a6430ac911acb25fe5ac8f1d2af1b4ea8a4fdfda0f1ee4292af2e2d8eb0e"
973
+ dependencies = [
974
+ "bitflags",
975
+ "cfg-if 1.0.0",
976
+ "foreign-types",
977
+ "libc",
978
+ "once_cell",
979
+ "openssl-macros",
980
+ "openssl-sys",
981
+ ]
982
+
983
+ [[package]]
984
+ name = "openssl-macros"
985
+ version = "0.1.0"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
988
+ dependencies = [
989
+ "proc-macro2",
990
+ "quote",
991
+ "syn",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "openssl-probe"
996
+ version = "0.1.5"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
999
+
1000
+ [[package]]
1001
+ name = "openssl-src"
1002
+ version = "111.25.0+1.1.1t"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "3173cd3626c43e3854b1b727422a276e568d9ec5fe8cec197822cf52cfb743d6"
1005
+ dependencies = [
1006
+ "cc",
1007
+ ]
1008
+
1009
+ [[package]]
1010
+ name = "openssl-sys"
1011
+ version = "0.9.74"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "835363342df5fba8354c5b453325b110ffd54044e588c539cf2f20a8014e4cb1"
1014
+ dependencies = [
1015
+ "autocfg 1.1.0",
1016
+ "cc",
1017
+ "libc",
1018
+ "openssl-src",
1019
+ "pkg-config",
1020
+ "vcpkg",
1021
+ ]
1022
+
1023
+ [[package]]
1024
+ name = "parking_lot"
1025
+ version = "0.9.0"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252"
1028
+ dependencies = [
1029
+ "lock_api",
1030
+ "parking_lot_core",
1031
+ "rustc_version",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "parking_lot_core"
1036
+ version = "0.6.2"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b"
1039
+ dependencies = [
1040
+ "cfg-if 0.1.10",
1041
+ "cloudabi",
1042
+ "libc",
1043
+ "redox_syscall 0.1.57",
1044
+ "rustc_version",
1045
+ "smallvec",
1046
+ "winapi 0.3.9",
1047
+ ]
1048
+
1049
+ [[package]]
1050
+ name = "peeking_take_while"
1051
+ version = "0.1.2"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
1054
+
1055
+ [[package]]
1056
+ name = "pem"
1057
+ version = "1.0.2"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "e9a3b09a20e374558580a4914d3b7d89bd61b954a5a5e1dcbea98753addb1947"
1060
+ dependencies = [
1061
+ "base64 0.13.0",
1062
+ ]
1063
+
1064
+ [[package]]
1065
+ name = "percent-encoding"
1066
+ version = "1.0.1"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"
1069
+
1070
+ [[package]]
1071
+ name = "percent-encoding"
1072
+ version = "2.1.0"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
1075
+
1076
+ [[package]]
1077
+ name = "pkg-config"
1078
+ version = "0.3.25"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
1081
+
1082
+ [[package]]
1083
+ name = "proc-macro-error"
1084
+ version = "1.0.4"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
1087
+ dependencies = [
1088
+ "proc-macro-error-attr",
1089
+ "proc-macro2",
1090
+ "quote",
1091
+ "syn",
1092
+ "version_check",
1093
+ ]
1094
+
1095
+ [[package]]
1096
+ name = "proc-macro-error-attr"
1097
+ version = "1.0.4"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
1100
+ dependencies = [
1101
+ "proc-macro2",
1102
+ "quote",
1103
+ "version_check",
1104
+ ]
1105
+
1106
+ [[package]]
1107
+ name = "proc-macro2"
1108
+ version = "1.0.85"
1109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1110
+ checksum = "22244ce15aa966053a896d1accb3a6e68469b97c7f33f284b99f0d576879fc23"
1111
+ dependencies = [
1112
+ "unicode-ident",
1113
+ ]
1114
+
1115
+ [[package]]
1116
+ name = "publicsuffix"
1117
+ version = "1.5.6"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "95b4ce31ff0a27d93c8de1849cf58162283752f065a90d508f1105fa6c9a213f"
1120
+ dependencies = [
1121
+ "idna 0.2.3",
1122
+ "url 2.2.2",
1123
+ ]
1124
+
1125
+ [[package]]
1126
+ name = "quote"
1127
+ version = "1.0.36"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
1130
+ dependencies = [
1131
+ "proc-macro2",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "rand"
1136
+ version = "0.6.5"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
1139
+ dependencies = [
1140
+ "autocfg 0.1.8",
1141
+ "libc",
1142
+ "rand_chacha",
1143
+ "rand_core 0.4.2",
1144
+ "rand_hc",
1145
+ "rand_isaac",
1146
+ "rand_jitter",
1147
+ "rand_os",
1148
+ "rand_pcg",
1149
+ "rand_xorshift",
1150
+ "winapi 0.3.9",
1151
+ ]
1152
+
1153
+ [[package]]
1154
+ name = "rand_chacha"
1155
+ version = "0.1.1"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
1158
+ dependencies = [
1159
+ "autocfg 0.1.8",
1160
+ "rand_core 0.3.1",
1161
+ ]
1162
+
1163
+ [[package]]
1164
+ name = "rand_core"
1165
+ version = "0.3.1"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
1168
+ dependencies = [
1169
+ "rand_core 0.4.2",
1170
+ ]
1171
+
1172
+ [[package]]
1173
+ name = "rand_core"
1174
+ version = "0.4.2"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
1177
+
1178
+ [[package]]
1179
+ name = "rand_hc"
1180
+ version = "0.1.0"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
1183
+ dependencies = [
1184
+ "rand_core 0.3.1",
1185
+ ]
1186
+
1187
+ [[package]]
1188
+ name = "rand_isaac"
1189
+ version = "0.1.1"
1190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1191
+ checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
1192
+ dependencies = [
1193
+ "rand_core 0.3.1",
1194
+ ]
1195
+
1196
+ [[package]]
1197
+ name = "rand_jitter"
1198
+ version = "0.1.4"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
1201
+ dependencies = [
1202
+ "libc",
1203
+ "rand_core 0.4.2",
1204
+ "winapi 0.3.9",
1205
+ ]
1206
+
1207
+ [[package]]
1208
+ name = "rand_os"
1209
+ version = "0.1.3"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
1212
+ dependencies = [
1213
+ "cloudabi",
1214
+ "fuchsia-cprng",
1215
+ "libc",
1216
+ "rand_core 0.4.2",
1217
+ "rdrand",
1218
+ "winapi 0.3.9",
1219
+ ]
1220
+
1221
+ [[package]]
1222
+ name = "rand_pcg"
1223
+ version = "0.1.2"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
1226
+ dependencies = [
1227
+ "autocfg 0.1.8",
1228
+ "rand_core 0.4.2",
1229
+ ]
1230
+
1231
+ [[package]]
1232
+ name = "rand_xorshift"
1233
+ version = "0.1.1"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
1236
+ dependencies = [
1237
+ "rand_core 0.3.1",
1238
+ ]
1239
+
1240
+ [[package]]
1241
+ name = "rdrand"
1242
+ version = "0.4.0"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
1245
+ dependencies = [
1246
+ "rand_core 0.3.1",
1247
+ ]
1248
+
1249
+ [[package]]
1250
+ name = "redox_syscall"
1251
+ version = "0.1.57"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
1254
+
1255
+ [[package]]
1256
+ name = "redox_syscall"
1257
+ version = "0.2.13"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
1260
+ dependencies = [
1261
+ "bitflags",
1262
+ ]
1263
+
1264
+ [[package]]
1265
+ name = "regex"
1266
+ version = "1.6.0"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
1269
+ dependencies = [
1270
+ "regex-syntax",
1271
+ ]
1272
+
1273
+ [[package]]
1274
+ name = "regex-syntax"
1275
+ version = "0.6.27"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
1278
+
1279
+ [[package]]
1280
+ name = "remove_dir_all"
1281
+ version = "0.5.3"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
1284
+ dependencies = [
1285
+ "winapi 0.3.9",
1286
+ ]
1287
+
1288
+ [[package]]
1289
+ name = "reqwest"
1290
+ version = "0.9.24"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "f88643aea3c1343c804950d7bf983bd2067f5ab59db6d613a08e05572f2714ab"
1293
+ dependencies = [
1294
+ "base64 0.10.1",
1295
+ "bytes",
1296
+ "cookie",
1297
+ "cookie_store",
1298
+ "encoding_rs",
1299
+ "flate2",
1300
+ "futures",
1301
+ "http",
1302
+ "hyper",
1303
+ "hyper-tls",
1304
+ "log",
1305
+ "mime",
1306
+ "mime_guess",
1307
+ "native-tls",
1308
+ "serde",
1309
+ "serde_json",
1310
+ "serde_urlencoded",
1311
+ "time 0.1.44",
1312
+ "tokio",
1313
+ "tokio-executor",
1314
+ "tokio-io",
1315
+ "tokio-threadpool",
1316
+ "tokio-timer",
1317
+ "url 1.7.2",
1318
+ "uuid",
1319
+ "winreg",
1320
+ ]
1321
+
1322
+ [[package]]
1323
+ name = "ring"
1324
+ version = "0.16.20"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
1327
+ dependencies = [
1328
+ "cc",
1329
+ "libc",
1330
+ "once_cell",
1331
+ "spin",
1332
+ "untrusted",
1333
+ "web-sys",
1334
+ "winapi 0.3.9",
1335
+ ]
1336
+
1337
+ [[package]]
1338
+ name = "rustc-demangle"
1339
+ version = "0.1.21"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
1342
+
1343
+ [[package]]
1344
+ name = "rustc-hash"
1345
+ version = "1.1.0"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1348
+
1349
+ [[package]]
1350
+ name = "rustc_version"
1351
+ version = "0.2.3"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
1354
+ dependencies = [
1355
+ "semver",
1356
+ ]
1357
+
1358
+ [[package]]
1359
+ name = "ryu"
1360
+ version = "1.0.10"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695"
1363
+
1364
+ [[package]]
1365
+ name = "schannel"
1366
+ version = "0.1.20"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
1369
+ dependencies = [
1370
+ "lazy_static",
1371
+ "windows-sys",
1372
+ ]
1373
+
1374
+ [[package]]
1375
+ name = "scopeguard"
1376
+ version = "1.1.0"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
1379
+
1380
+ [[package]]
1381
+ name = "security-framework"
1382
+ version = "2.6.1"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc"
1385
+ dependencies = [
1386
+ "bitflags",
1387
+ "core-foundation",
1388
+ "core-foundation-sys",
1389
+ "libc",
1390
+ "security-framework-sys",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "security-framework-sys"
1395
+ version = "2.6.1"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
1398
+ dependencies = [
1399
+ "core-foundation-sys",
1400
+ "libc",
1401
+ ]
1402
+
1403
+ [[package]]
1404
+ name = "semver"
1405
+ version = "0.9.0"
1406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1407
+ checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
1408
+ dependencies = [
1409
+ "semver-parser",
1410
+ ]
1411
+
1412
+ [[package]]
1413
+ name = "semver-parser"
1414
+ version = "0.7.0"
1415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1416
+ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
1417
+
1418
+ [[package]]
1419
+ name = "serde"
1420
+ version = "1.0.138"
1421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1422
+ checksum = "1578c6245786b9d168c5447eeacfb96856573ca56c9d68fdcf394be134882a47"
1423
+ dependencies = [
1424
+ "serde_derive",
1425
+ ]
1426
+
1427
+ [[package]]
1428
+ name = "serde_derive"
1429
+ version = "1.0.138"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "023e9b1467aef8a10fb88f25611870ada9800ef7e22afce356bb0d2387b6f27c"
1432
+ dependencies = [
1433
+ "proc-macro2",
1434
+ "quote",
1435
+ "syn",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "serde_json"
1440
+ version = "1.0.82"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7"
1443
+ dependencies = [
1444
+ "itoa 1.0.2",
1445
+ "ryu",
1446
+ "serde",
1447
+ ]
1448
+
1449
+ [[package]]
1450
+ name = "serde_plain"
1451
+ version = "1.0.0"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "95455e7e29fada2052e72170af226fbe368a4ca33dee847875325d9fdb133858"
1454
+ dependencies = [
1455
+ "serde",
1456
+ ]
1457
+
1458
+ [[package]]
1459
+ name = "serde_repr"
1460
+ version = "0.1.8"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "a2ad84e47328a31223de7fed7a4f5087f2d6ddfe586cf3ca25b7a165bc0a5aed"
1463
+ dependencies = [
1464
+ "proc-macro2",
1465
+ "quote",
1466
+ "syn",
1467
+ ]
1468
+
1469
+ [[package]]
1470
+ name = "serde_urlencoded"
1471
+ version = "0.5.5"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "642dd69105886af2efd227f75a520ec9b44a820d65bc133a9131f7d229fd165a"
1474
+ dependencies = [
1475
+ "dtoa",
1476
+ "itoa 0.4.8",
1477
+ "serde",
1478
+ "url 1.7.2",
1479
+ ]
1480
+
1481
+ [[package]]
1482
+ name = "serde_yaml"
1483
+ version = "0.8.24"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "707d15895415db6628332b737c838b88c598522e4dc70647e59b72312924aebc"
1486
+ dependencies = [
1487
+ "indexmap",
1488
+ "ryu",
1489
+ "serde",
1490
+ "yaml-rust",
1491
+ ]
1492
+
1493
+ [[package]]
1494
+ name = "shlex"
1495
+ version = "1.1.0"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
1498
+
1499
+ [[package]]
1500
+ name = "simple_asn1"
1501
+ version = "0.6.2"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085"
1504
+ dependencies = [
1505
+ "num-bigint",
1506
+ "num-traits",
1507
+ "thiserror",
1508
+ "time 0.3.11",
1509
+ ]
1510
+
1511
+ [[package]]
1512
+ name = "simplelog"
1513
+ version = "0.12.0"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "48dfff04aade74dd495b007c831cd6f4e0cee19c344dd9dc0884c0289b70a786"
1516
+ dependencies = [
1517
+ "log",
1518
+ "termcolor",
1519
+ "time 0.3.11",
1520
+ ]
1521
+
1522
+ [[package]]
1523
+ name = "slab"
1524
+ version = "0.4.6"
1525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+ checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
1527
+
1528
+ [[package]]
1529
+ name = "smallvec"
1530
+ version = "0.6.14"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "b97fcaeba89edba30f044a10c6a3cc39df9c3f17d7cd829dd1446cab35f890e0"
1533
+ dependencies = [
1534
+ "maybe-uninit",
1535
+ ]
1536
+
1537
+ [[package]]
1538
+ name = "spin"
1539
+ version = "0.5.2"
1540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1541
+ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
1542
+
1543
+ [[package]]
1544
+ name = "squawk"
1545
+ version = "1.2.0"
1546
+ dependencies = [
1547
+ "atty",
1548
+ "base64 0.12.3",
1549
+ "console",
1550
+ "glob",
1551
+ "insta",
1552
+ "log",
1553
+ "serde",
1554
+ "serde_json",
1555
+ "simplelog",
1556
+ "squawk-github",
1557
+ "squawk-linter",
1558
+ "squawk-parser",
1559
+ "structopt",
1560
+ "tempfile",
1561
+ "toml",
1562
+ ]
1563
+
1564
+ [[package]]
1565
+ name = "squawk-github"
1566
+ version = "0.0.0"
1567
+ dependencies = [
1568
+ "jsonwebtoken",
1569
+ "log",
1570
+ "reqwest",
1571
+ "serde",
1572
+ "serde_json",
1573
+ ]
1574
+
1575
+ [[package]]
1576
+ name = "squawk-linter"
1577
+ version = "0.0.0"
1578
+ dependencies = [
1579
+ "insta",
1580
+ "lazy_static",
1581
+ "serde",
1582
+ "serde_json",
1583
+ "serde_plain",
1584
+ "squawk-parser",
1585
+ ]
1586
+
1587
+ [[package]]
1588
+ name = "squawk-parser"
1589
+ version = "0.0.0"
1590
+ dependencies = [
1591
+ "insta",
1592
+ "libpg_query-sys",
1593
+ "serde",
1594
+ "serde_json",
1595
+ "serde_repr",
1596
+ ]
1597
+
1598
+ [[package]]
1599
+ name = "string"
1600
+ version = "0.2.1"
1601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1602
+ checksum = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d"
1603
+ dependencies = [
1604
+ "bytes",
1605
+ ]
1606
+
1607
+ [[package]]
1608
+ name = "strsim"
1609
+ version = "0.8.0"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
1612
+
1613
+ [[package]]
1614
+ name = "structopt"
1615
+ version = "0.3.26"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
1618
+ dependencies = [
1619
+ "clap",
1620
+ "lazy_static",
1621
+ "structopt-derive",
1622
+ ]
1623
+
1624
+ [[package]]
1625
+ name = "structopt-derive"
1626
+ version = "0.4.18"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
1629
+ dependencies = [
1630
+ "heck",
1631
+ "proc-macro-error",
1632
+ "proc-macro2",
1633
+ "quote",
1634
+ "syn",
1635
+ ]
1636
+
1637
+ [[package]]
1638
+ name = "syn"
1639
+ version = "1.0.109"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1642
+ dependencies = [
1643
+ "proc-macro2",
1644
+ "quote",
1645
+ "unicode-ident",
1646
+ ]
1647
+
1648
+ [[package]]
1649
+ name = "synstructure"
1650
+ version = "0.12.6"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
1653
+ dependencies = [
1654
+ "proc-macro2",
1655
+ "quote",
1656
+ "syn",
1657
+ "unicode-xid",
1658
+ ]
1659
+
1660
+ [[package]]
1661
+ name = "tempfile"
1662
+ version = "3.3.0"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
1665
+ dependencies = [
1666
+ "cfg-if 1.0.0",
1667
+ "fastrand",
1668
+ "libc",
1669
+ "redox_syscall 0.2.13",
1670
+ "remove_dir_all",
1671
+ "winapi 0.3.9",
1672
+ ]
1673
+
1674
+ [[package]]
1675
+ name = "termcolor"
1676
+ version = "1.1.3"
1677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1678
+ checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
1679
+ dependencies = [
1680
+ "winapi-util",
1681
+ ]
1682
+
1683
+ [[package]]
1684
+ name = "terminal_size"
1685
+ version = "0.1.17"
1686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1687
+ checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
1688
+ dependencies = [
1689
+ "libc",
1690
+ "winapi 0.3.9",
1691
+ ]
1692
+
1693
+ [[package]]
1694
+ name = "termios"
1695
+ version = "0.3.3"
1696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1697
+ checksum = "411c5bf740737c7918b8b1fe232dca4dc9f8e754b8ad5e20966814001ed0ac6b"
1698
+ dependencies = [
1699
+ "libc",
1700
+ ]
1701
+
1702
+ [[package]]
1703
+ name = "textwrap"
1704
+ version = "0.11.0"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
1707
+ dependencies = [
1708
+ "unicode-width",
1709
+ ]
1710
+
1711
+ [[package]]
1712
+ name = "thiserror"
1713
+ version = "1.0.31"
1714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1715
+ checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a"
1716
+ dependencies = [
1717
+ "thiserror-impl",
1718
+ ]
1719
+
1720
+ [[package]]
1721
+ name = "thiserror-impl"
1722
+ version = "1.0.31"
1723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1724
+ checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a"
1725
+ dependencies = [
1726
+ "proc-macro2",
1727
+ "quote",
1728
+ "syn",
1729
+ ]
1730
+
1731
+ [[package]]
1732
+ name = "time"
1733
+ version = "0.1.44"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
1736
+ dependencies = [
1737
+ "libc",
1738
+ "wasi",
1739
+ "winapi 0.3.9",
1740
+ ]
1741
+
1742
+ [[package]]
1743
+ name = "time"
1744
+ version = "0.3.11"
1745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1746
+ checksum = "72c91f41dcb2f096c05f0873d667dceec1087ce5bcf984ec8ffb19acddbb3217"
1747
+ dependencies = [
1748
+ "itoa 1.0.2",
1749
+ "libc",
1750
+ "num_threads",
1751
+ "time-macros",
1752
+ ]
1753
+
1754
+ [[package]]
1755
+ name = "time-macros"
1756
+ version = "0.2.4"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
1759
+
1760
+ [[package]]
1761
+ name = "tinyvec"
1762
+ version = "1.6.0"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
1765
+ dependencies = [
1766
+ "tinyvec_macros",
1767
+ ]
1768
+
1769
+ [[package]]
1770
+ name = "tinyvec_macros"
1771
+ version = "0.1.0"
1772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1773
+ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
1774
+
1775
+ [[package]]
1776
+ name = "tokio"
1777
+ version = "0.1.22"
1778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1779
+ checksum = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6"
1780
+ dependencies = [
1781
+ "bytes",
1782
+ "futures",
1783
+ "mio",
1784
+ "num_cpus",
1785
+ "tokio-current-thread",
1786
+ "tokio-executor",
1787
+ "tokio-io",
1788
+ "tokio-reactor",
1789
+ "tokio-tcp",
1790
+ "tokio-threadpool",
1791
+ "tokio-timer",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "tokio-buf"
1796
+ version = "0.1.1"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46"
1799
+ dependencies = [
1800
+ "bytes",
1801
+ "either",
1802
+ "futures",
1803
+ ]
1804
+
1805
+ [[package]]
1806
+ name = "tokio-current-thread"
1807
+ version = "0.1.7"
1808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1809
+ checksum = "b1de0e32a83f131e002238d7ccde18211c0a5397f60cbfffcb112868c2e0e20e"
1810
+ dependencies = [
1811
+ "futures",
1812
+ "tokio-executor",
1813
+ ]
1814
+
1815
+ [[package]]
1816
+ name = "tokio-executor"
1817
+ version = "0.1.10"
1818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1819
+ checksum = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671"
1820
+ dependencies = [
1821
+ "crossbeam-utils",
1822
+ "futures",
1823
+ ]
1824
+
1825
+ [[package]]
1826
+ name = "tokio-io"
1827
+ version = "0.1.13"
1828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1829
+ checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674"
1830
+ dependencies = [
1831
+ "bytes",
1832
+ "futures",
1833
+ "log",
1834
+ ]
1835
+
1836
+ [[package]]
1837
+ name = "tokio-reactor"
1838
+ version = "0.1.12"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351"
1841
+ dependencies = [
1842
+ "crossbeam-utils",
1843
+ "futures",
1844
+ "lazy_static",
1845
+ "log",
1846
+ "mio",
1847
+ "num_cpus",
1848
+ "parking_lot",
1849
+ "slab",
1850
+ "tokio-executor",
1851
+ "tokio-io",
1852
+ "tokio-sync",
1853
+ ]
1854
+
1855
+ [[package]]
1856
+ name = "tokio-sync"
1857
+ version = "0.1.8"
1858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1859
+ checksum = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee"
1860
+ dependencies = [
1861
+ "fnv",
1862
+ "futures",
1863
+ ]
1864
+
1865
+ [[package]]
1866
+ name = "tokio-tcp"
1867
+ version = "0.1.4"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "98df18ed66e3b72e742f185882a9e201892407957e45fbff8da17ae7a7c51f72"
1870
+ dependencies = [
1871
+ "bytes",
1872
+ "futures",
1873
+ "iovec",
1874
+ "mio",
1875
+ "tokio-io",
1876
+ "tokio-reactor",
1877
+ ]
1878
+
1879
+ [[package]]
1880
+ name = "tokio-threadpool"
1881
+ version = "0.1.18"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "df720b6581784c118f0eb4310796b12b1d242a7eb95f716a8367855325c25f89"
1884
+ dependencies = [
1885
+ "crossbeam-deque",
1886
+ "crossbeam-queue",
1887
+ "crossbeam-utils",
1888
+ "futures",
1889
+ "lazy_static",
1890
+ "log",
1891
+ "num_cpus",
1892
+ "slab",
1893
+ "tokio-executor",
1894
+ ]
1895
+
1896
+ [[package]]
1897
+ name = "tokio-timer"
1898
+ version = "0.2.13"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "93044f2d313c95ff1cb7809ce9a7a05735b012288a888b62d4434fd58c94f296"
1901
+ dependencies = [
1902
+ "crossbeam-utils",
1903
+ "futures",
1904
+ "slab",
1905
+ "tokio-executor",
1906
+ ]
1907
+
1908
+ [[package]]
1909
+ name = "toml"
1910
+ version = "0.5.9"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
1913
+ dependencies = [
1914
+ "serde",
1915
+ ]
1916
+
1917
+ [[package]]
1918
+ name = "try-lock"
1919
+ version = "0.2.3"
1920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1921
+ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
1922
+
1923
+ [[package]]
1924
+ name = "try_from"
1925
+ version = "0.3.2"
1926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1927
+ checksum = "283d3b89e1368717881a9d51dad843cc435380d8109c9e47d38780a324698d8b"
1928
+ dependencies = [
1929
+ "cfg-if 0.1.10",
1930
+ ]
1931
+
1932
+ [[package]]
1933
+ name = "unicase"
1934
+ version = "2.6.0"
1935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1936
+ checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
1937
+ dependencies = [
1938
+ "version_check",
1939
+ ]
1940
+
1941
+ [[package]]
1942
+ name = "unicode-bidi"
1943
+ version = "0.3.8"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
1946
+
1947
+ [[package]]
1948
+ name = "unicode-ident"
1949
+ version = "1.0.1"
1950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1951
+ checksum = "5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c"
1952
+
1953
+ [[package]]
1954
+ name = "unicode-normalization"
1955
+ version = "0.1.21"
1956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1957
+ checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6"
1958
+ dependencies = [
1959
+ "tinyvec",
1960
+ ]
1961
+
1962
+ [[package]]
1963
+ name = "unicode-segmentation"
1964
+ version = "1.9.0"
1965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1966
+ checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"
1967
+
1968
+ [[package]]
1969
+ name = "unicode-width"
1970
+ version = "0.1.9"
1971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1972
+ checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
1973
+
1974
+ [[package]]
1975
+ name = "unicode-xid"
1976
+ version = "0.2.3"
1977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1978
+ checksum = "957e51f3646910546462e67d5f7599b9e4fb8acdd304b087a6494730f9eebf04"
1979
+
1980
+ [[package]]
1981
+ name = "untrusted"
1982
+ version = "0.7.1"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
1985
+
1986
+ [[package]]
1987
+ name = "url"
1988
+ version = "1.7.2"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"
1991
+ dependencies = [
1992
+ "idna 0.1.5",
1993
+ "matches",
1994
+ "percent-encoding 1.0.1",
1995
+ ]
1996
+
1997
+ [[package]]
1998
+ name = "url"
1999
+ version = "2.2.2"
2000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2001
+ checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
2002
+ dependencies = [
2003
+ "form_urlencoded",
2004
+ "idna 0.2.3",
2005
+ "matches",
2006
+ "percent-encoding 2.1.0",
2007
+ ]
2008
+
2009
+ [[package]]
2010
+ name = "uuid"
2011
+ version = "0.7.4"
2012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2013
+ checksum = "90dbc611eb48397705a6b0f6e917da23ae517e4d127123d2cf7674206627d32a"
2014
+ dependencies = [
2015
+ "rand",
2016
+ ]
2017
+
2018
+ [[package]]
2019
+ name = "vcpkg"
2020
+ version = "0.2.15"
2021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2022
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2023
+
2024
+ [[package]]
2025
+ name = "vec_map"
2026
+ version = "0.8.2"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
2029
+
2030
+ [[package]]
2031
+ name = "version_check"
2032
+ version = "0.9.4"
2033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2034
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2035
+
2036
+ [[package]]
2037
+ name = "want"
2038
+ version = "0.2.0"
2039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2040
+ checksum = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230"
2041
+ dependencies = [
2042
+ "futures",
2043
+ "log",
2044
+ "try-lock",
2045
+ ]
2046
+
2047
+ [[package]]
2048
+ name = "wasi"
2049
+ version = "0.10.0+wasi-snapshot-preview1"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2052
+
2053
+ [[package]]
2054
+ name = "wasm-bindgen"
2055
+ version = "0.2.81"
2056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2057
+ checksum = "7c53b543413a17a202f4be280a7e5c62a1c69345f5de525ee64f8cfdbc954994"
2058
+ dependencies = [
2059
+ "cfg-if 1.0.0",
2060
+ "wasm-bindgen-macro",
2061
+ ]
2062
+
2063
+ [[package]]
2064
+ name = "wasm-bindgen-backend"
2065
+ version = "0.2.81"
2066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2067
+ checksum = "5491a68ab4500fa6b4d726bd67408630c3dbe9c4fe7bda16d5c82a1fd8c7340a"
2068
+ dependencies = [
2069
+ "bumpalo",
2070
+ "lazy_static",
2071
+ "log",
2072
+ "proc-macro2",
2073
+ "quote",
2074
+ "syn",
2075
+ "wasm-bindgen-shared",
2076
+ ]
2077
+
2078
+ [[package]]
2079
+ name = "wasm-bindgen-macro"
2080
+ version = "0.2.81"
2081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2082
+ checksum = "c441e177922bc58f1e12c022624b6216378e5febc2f0533e41ba443d505b80aa"
2083
+ dependencies = [
2084
+ "quote",
2085
+ "wasm-bindgen-macro-support",
2086
+ ]
2087
+
2088
+ [[package]]
2089
+ name = "wasm-bindgen-macro-support"
2090
+ version = "0.2.81"
2091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2092
+ checksum = "7d94ac45fcf608c1f45ef53e748d35660f168490c10b23704c7779ab8f5c3048"
2093
+ dependencies = [
2094
+ "proc-macro2",
2095
+ "quote",
2096
+ "syn",
2097
+ "wasm-bindgen-backend",
2098
+ "wasm-bindgen-shared",
2099
+ ]
2100
+
2101
+ [[package]]
2102
+ name = "wasm-bindgen-shared"
2103
+ version = "0.2.81"
2104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2105
+ checksum = "6a89911bd99e5f3659ec4acf9c4d93b0a90fe4a2a11f15328472058edc5261be"
2106
+
2107
+ [[package]]
2108
+ name = "web-sys"
2109
+ version = "0.3.58"
2110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2111
+ checksum = "2fed94beee57daf8dd7d51f2b15dc2bcde92d7a72304cdf662a4371008b71b90"
2112
+ dependencies = [
2113
+ "js-sys",
2114
+ "wasm-bindgen",
2115
+ ]
2116
+
2117
+ [[package]]
2118
+ name = "which"
2119
+ version = "4.2.5"
2120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2121
+ checksum = "5c4fb54e6113b6a8772ee41c3404fb0301ac79604489467e0a9ce1f3e97c24ae"
2122
+ dependencies = [
2123
+ "either",
2124
+ "lazy_static",
2125
+ "libc",
2126
+ ]
2127
+
2128
+ [[package]]
2129
+ name = "winapi"
2130
+ version = "0.2.8"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
2133
+
2134
+ [[package]]
2135
+ name = "winapi"
2136
+ version = "0.3.9"
2137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2138
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2139
+ dependencies = [
2140
+ "winapi-i686-pc-windows-gnu",
2141
+ "winapi-x86_64-pc-windows-gnu",
2142
+ ]
2143
+
2144
+ [[package]]
2145
+ name = "winapi-build"
2146
+ version = "0.1.1"
2147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2148
+ checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
2149
+
2150
+ [[package]]
2151
+ name = "winapi-i686-pc-windows-gnu"
2152
+ version = "0.4.0"
2153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2154
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2155
+
2156
+ [[package]]
2157
+ name = "winapi-util"
2158
+ version = "0.1.5"
2159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2160
+ checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
2161
+ dependencies = [
2162
+ "winapi 0.3.9",
2163
+ ]
2164
+
2165
+ [[package]]
2166
+ name = "winapi-x86_64-pc-windows-gnu"
2167
+ version = "0.4.0"
2168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2169
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2170
+
2171
+ [[package]]
2172
+ name = "windows-sys"
2173
+ version = "0.36.1"
2174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2175
+ checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
2176
+ dependencies = [
2177
+ "windows_aarch64_msvc",
2178
+ "windows_i686_gnu",
2179
+ "windows_i686_msvc",
2180
+ "windows_x86_64_gnu",
2181
+ "windows_x86_64_msvc",
2182
+ ]
2183
+
2184
+ [[package]]
2185
+ name = "windows_aarch64_msvc"
2186
+ version = "0.36.1"
2187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2188
+ checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
2189
+
2190
+ [[package]]
2191
+ name = "windows_i686_gnu"
2192
+ version = "0.36.1"
2193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2194
+ checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
2195
+
2196
+ [[package]]
2197
+ name = "windows_i686_msvc"
2198
+ version = "0.36.1"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
2201
+
2202
+ [[package]]
2203
+ name = "windows_x86_64_gnu"
2204
+ version = "0.36.1"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
2207
+
2208
+ [[package]]
2209
+ name = "windows_x86_64_msvc"
2210
+ version = "0.36.1"
2211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2212
+ checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
2213
+
2214
+ [[package]]
2215
+ name = "winreg"
2216
+ version = "0.6.2"
2217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2218
+ checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9"
2219
+ dependencies = [
2220
+ "winapi 0.3.9",
2221
+ ]
2222
+
2223
+ [[package]]
2224
+ name = "ws2_32-sys"
2225
+ version = "0.2.1"
2226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2227
+ checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
2228
+ dependencies = [
2229
+ "winapi 0.2.8",
2230
+ "winapi-build",
2231
+ ]
2232
+
2233
+ [[package]]
2234
+ name = "yaml-rust"
2235
+ version = "0.4.5"
2236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2237
+ checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
2238
+ dependencies = [
2239
+ "linked-hash-map",
2240
+ ]