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