python-alpm 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of python-alpm might be problematic. Click here for more details.
- python_alpm-0.2.0/Cargo.lock +3835 -0
- python_alpm-0.2.0/Cargo.toml +66 -0
- python_alpm-0.2.0/PKG-INFO +9 -0
- python_alpm-0.2.0/alpm-common/CHANGELOG.md +40 -0
- python_alpm-0.2.0/alpm-common/Cargo.toml +25 -0
- python_alpm-0.2.0/alpm-common/README.md +21 -0
- python_alpm-0.2.0/alpm-common/locales/en-US/main.ftl +13 -0
- python_alpm-0.2.0/alpm-common/src/error.rs +71 -0
- python_alpm-0.2.0/alpm-common/src/lib.rs +10 -0
- python_alpm-0.2.0/alpm-common/src/package/input.rs +478 -0
- python_alpm-0.2.0/alpm-common/src/package/mod.rs +3 -0
- python_alpm-0.2.0/alpm-common/src/traits/metadata_file.rs +111 -0
- python_alpm-0.2.0/alpm-common/src/traits/schema.rs +61 -0
- python_alpm-0.2.0/alpm-common/src/traits.rs +4 -0
- python_alpm-0.2.0/alpm-parsers/CHANGELOG.md +74 -0
- python_alpm-0.2.0/alpm-parsers/Cargo.toml +28 -0
- python_alpm-0.2.0/alpm-parsers/README.md +58 -0
- python_alpm-0.2.0/alpm-parsers/src/custom_ini/de.rs +486 -0
- python_alpm-0.2.0/alpm-parsers/src/custom_ini/mod.rs +6 -0
- python_alpm-0.2.0/alpm-parsers/src/custom_ini/parser.rs +228 -0
- python_alpm-0.2.0/alpm-parsers/src/lib.rs +4 -0
- python_alpm-0.2.0/alpm-parsers/src/macros.rs +101 -0
- python_alpm-0.2.0/alpm-parsers/tests/integration.rs +31 -0
- python_alpm-0.2.0/alpm-parsers/tests/snapshots/integration__write_ini__case_1_missing_key.snap +9 -0
- python_alpm-0.2.0/alpm-parsers/tests/snapshots/integration__write_ini__case_2_incomplete_delimiter_1.snap +9 -0
- python_alpm-0.2.0/alpm-parsers/tests/snapshots/integration__write_ini__case_3_incomplete_delimiter_2.snap +9 -0
- python_alpm-0.2.0/alpm-parsers/tests/snapshots/integration__write_ini__case_4_missing_delimiter_2.snap +9 -0
- python_alpm-0.2.0/alpm-pkgbuild/CHANGELOG.md +36 -0
- python_alpm-0.2.0/alpm-pkgbuild/Cargo.toml +35 -0
- python_alpm-0.2.0/alpm-pkgbuild/README.md +31 -0
- python_alpm-0.2.0/alpm-pkgbuild/src/bridge/mod.rs +255 -0
- python_alpm-0.2.0/alpm-pkgbuild/src/bridge/parser.rs +656 -0
- python_alpm-0.2.0/alpm-pkgbuild/src/error.rs +101 -0
- python_alpm-0.2.0/alpm-pkgbuild/src/lib.rs +6 -0
- python_alpm-0.2.0/alpm-pkgbuild/tests/test_files/normal.pkgbuild +38 -0
- python_alpm-0.2.0/alpm-pkgbuild/tests/test_files/normal.srcinfo +45 -0
- python_alpm-0.2.0/alpm-srcinfo/ARCHITECTURE.md +67 -0
- python_alpm-0.2.0/alpm-srcinfo/CHANGELOG.md +169 -0
- python_alpm-0.2.0/alpm-srcinfo/Cargo.toml +46 -0
- python_alpm-0.2.0/alpm-srcinfo/README.md +248 -0
- python_alpm-0.2.0/alpm-srcinfo/resources/specification/SRCINFO.5.md +457 -0
- python_alpm-0.2.0/alpm-srcinfo/src/cli.rs +169 -0
- python_alpm-0.2.0/alpm-srcinfo/src/commands.rs +176 -0
- python_alpm-0.2.0/alpm-srcinfo/src/error.rs +63 -0
- python_alpm-0.2.0/alpm-srcinfo/src/lib.rs +17 -0
- python_alpm-0.2.0/alpm-srcinfo/src/main.rs +45 -0
- python_alpm-0.2.0/alpm-srcinfo/src/pkgbuild_bridge/error.rs +112 -0
- python_alpm-0.2.0/alpm-srcinfo/src/pkgbuild_bridge/mod.rs +246 -0
- python_alpm-0.2.0/alpm-srcinfo/src/pkgbuild_bridge/package.rs +436 -0
- python_alpm-0.2.0/alpm-srcinfo/src/pkgbuild_bridge/package_base.rs +455 -0
- python_alpm-0.2.0/alpm-srcinfo/src/schema.rs +179 -0
- python_alpm-0.2.0/alpm-srcinfo/src/source_info/mod.rs +236 -0
- python_alpm-0.2.0/alpm-srcinfo/src/source_info/parser.rs +1233 -0
- python_alpm-0.2.0/alpm-srcinfo/src/source_info/v1/merged.rs +374 -0
- python_alpm-0.2.0/alpm-srcinfo/src/source_info/v1/mod.rs +241 -0
- python_alpm-0.2.0/alpm-srcinfo/src/source_info/v1/package.rs +463 -0
- python_alpm-0.2.0/alpm-srcinfo/src/source_info/v1/package_base.rs +498 -0
- python_alpm-0.2.0/alpm-srcinfo/src/source_info/v1/writer.rs +339 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct/all_cleared.pkgbuild +61 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct/all_cleared.srcinfo +45 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct/all_overrides.pkgbuild +61 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct/all_overrides.srcinfo +45 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct/custom_architecture.srcinfo +6 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct/full_pkgbase.pkgbuild +193 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct/full_pkgbase.srcinfo +100 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct/package_with_any_arch.pkgbuild +12 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct/package_with_any_arch.srcinfo +7 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct/pkgbase_with_any_arch.pkgbuild +11 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct/pkgbase_with_any_arch.srcinfo +6 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct/split_package.pkgbuild +16 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct/split_package.srcinfo +8 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct.rs +95 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct_snapshots/all_cleared_merged.snap +37 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct_snapshots/all_cleared_source_info.snap +198 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct_snapshots/all_overrides_merged.snap +99 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct_snapshots/all_overrides_source_info.snap +283 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct_snapshots/custom_architecture_merged.snap +6 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct_snapshots/custom_architecture_source_info.snap +93 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct_snapshots/full_pkgbase_merged.snap +457 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct_snapshots/full_pkgbase_source_info.snap +612 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct_snapshots/package_with_any_arch_merged.snap +38 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct_snapshots/package_with_any_arch_source_info.snap +93 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct_snapshots/pkgbase_with_any_arch_merged.snap +38 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct_snapshots/pkgbase_with_any_arch_source_info.snap +91 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct_snapshots/split_package_merged.snap +67 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/correct_snapshots/split_package_source_info.snap +135 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/generate_srcinfo.bash +37 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/integration.rs +213 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/parse_error_snapshots/invalid_checksum.snap +11 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/parse_error_snapshots/invalid_pkgbase_header_delimiter.snap +12 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/parse_error_snapshots/invalid_pkver.snap +12 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/parse_error_snapshots/invalid_property_delimiter.snap +12 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/parse_error_snapshots/missing_pkgbase.snap +11 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/parse_error_snapshots/missing_pkgname.snap +11 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/parse_error_snapshots/unexpected_pkgbase_property.snap +12 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/parse_error_snapshots/unexpected_pkgname_property.snap +12 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/parse_errors/invalid_checksum.srcinfo +8 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/parse_errors/invalid_pkgbase_header_delimiter.srcinfo +4 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/parse_errors/invalid_pkver.srcinfo +6 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/parse_errors/invalid_property_delimiter.srcinfo +4 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/parse_errors/missing_pkgbase.srcinfo +4 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/parse_errors/missing_pkgname.srcinfo +6 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/parse_errors/unexpected_pkgbase_property.srcinfo +6 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/parse_errors/unexpected_pkgname_property.srcinfo +7 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/parse_errors.rs +43 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/parser_whitespaces.rs +61 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/pkgbuild_correct/all_cleared.pkgbuild +61 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/pkgbuild_correct/all_overrides.pkgbuild +65 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/pkgbuild_correct/full_pkgbase.pkgbuild +193 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/pkgbuild_correct/simple.pkgbuild +17 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/pkgbuild_correct.rs +51 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/pkgbuild_correct_bridge_output/all_cleared_bridge.snap +48 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/pkgbuild_correct_bridge_output/all_overrides_bridge.snap +48 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/pkgbuild_correct_bridge_output/full_pkgbase_bridge.snap +61 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/pkgbuild_correct_bridge_output/simple_bridge.snap +14 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/pkgbuild_correct_snapshots/all_cleared_srcinfo.snap +50 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/pkgbuild_correct_snapshots/all_overrides_srcinfo.snap +50 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/pkgbuild_correct_snapshots/full_pkgbase_srcinfo.snap +105 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/pkgbuild_correct_snapshots/simple_srcinfo.snap +14 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/pkgbuild_invalid/cleared_architecture.pkgbuild +13 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/pkgbuild_invalid/cleared_array_on_single_value.pkgbuild +14 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/pkgbuild_invalid.rs +45 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/pkgbuild_invalid_snapshots/cleared_architecture_srcinfo.snap +6 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/pkgbuild_invalid_snapshots/cleared_array_on_single_value_srcinfo.snap +6 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/unit_test_files/normal.pkgbuild +38 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/unit_test_files/normal.srcinfo +45 -0
- python_alpm-0.2.0/alpm-srcinfo/tests/writer.rs +43 -0
- python_alpm-0.2.0/alpm-types/CHANGELOG.md +483 -0
- python_alpm-0.2.0/alpm-types/Cargo.toml +50 -0
- python_alpm-0.2.0/alpm-types/README.md +26 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-architecture.7.md +149 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-comparison.7.md +88 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-db-desc.5.md +254 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-db-descv1.5.md +237 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-db-descv2.5.md +254 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-db-files.5.md +66 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-epoch.7.md +36 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-files.5.md +66 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-install-scriptlet.5.md +109 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-meta-package.7.md +33 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-package-base.7.md +112 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-package-group.7.md +52 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-package-name.7.md +23 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-package-relation.7.md +175 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-package-source-checksum.7.md +211 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-package-source.7.md +277 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-package-version.7.md +92 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-pkgrel.7.md +39 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-pkgver.7.md +320 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-repo-desc.5.md +337 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-repo-descv1.5.md +337 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-repo-descv2.5.md +337 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-repo-files.5.md +66 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-soname.7.md +162 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-sonamev1.7.md +233 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-sonamev2.7.md +162 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-source-repo.7.md +102 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm-split-package.7.md +56 -0
- python_alpm-0.2.0/alpm-types/resources/specification/alpm.7.md +396 -0
- python_alpm-0.2.0/alpm-types/src/checksum.rs +754 -0
- python_alpm-0.2.0/alpm-types/src/compression.rs +188 -0
- python_alpm-0.2.0/alpm-types/src/date.rs +52 -0
- python_alpm-0.2.0/alpm-types/src/env.rs +895 -0
- python_alpm-0.2.0/alpm-types/src/error.rs +239 -0
- python_alpm-0.2.0/alpm-types/src/file_type.rs +43 -0
- python_alpm-0.2.0/alpm-types/src/lib.rs +120 -0
- python_alpm-0.2.0/alpm-types/src/license.rs +255 -0
- python_alpm-0.2.0/alpm-types/src/name.rs +408 -0
- python_alpm-0.2.0/alpm-types/src/openpgp.rs +537 -0
- python_alpm-0.2.0/alpm-types/src/package/contents.rs +151 -0
- python_alpm-0.2.0/alpm-types/src/package/error.rs +32 -0
- python_alpm-0.2.0/alpm-types/src/package/file_name.rs +779 -0
- python_alpm-0.2.0/alpm-types/src/package/mod.rs +6 -0
- python_alpm-0.2.0/alpm-types/src/package/source.rs +11 -0
- python_alpm-0.2.0/alpm-types/src/path.rs +435 -0
- python_alpm-0.2.0/alpm-types/src/pkg.rs +279 -0
- python_alpm-0.2.0/alpm-types/src/relation.rs +1649 -0
- python_alpm-0.2.0/alpm-types/src/size.rs +30 -0
- python_alpm-0.2.0/alpm-types/src/source.rs +249 -0
- python_alpm-0.2.0/alpm-types/src/system.rs +667 -0
- python_alpm-0.2.0/alpm-types/src/url.rs +874 -0
- python_alpm-0.2.0/alpm-types/src/version/base.rs +438 -0
- python_alpm-0.2.0/alpm-types/src/version/buildtool.rs +231 -0
- python_alpm-0.2.0/alpm-types/src/version/comparison.rs +596 -0
- python_alpm-0.2.0/alpm-types/src/version/mod.rs +10 -0
- python_alpm-0.2.0/alpm-types/src/version/pkg_full.rs +549 -0
- python_alpm-0.2.0/alpm-types/src/version/pkg_generic.rs +398 -0
- python_alpm-0.2.0/alpm-types/src/version/pkg_minimal.rs +526 -0
- python_alpm-0.2.0/alpm-types/src/version/requirement.rs +356 -0
- python_alpm-0.2.0/alpm-types/src/version/schema.rs +102 -0
- python_alpm-0.2.0/alpm-types/tests/create_error_snapshots/fail_to_create_package_file_name__case_1_version_without_pkgrel.snap +6 -0
- python_alpm-0.2.0/alpm-types/tests/create_error_snapshots/fail_to_create_package_file_name__case_2_version_with_epoch_without_pkgrel.snap +6 -0
- python_alpm-0.2.0/alpm-types/tests/from_path_snapshots/package_file_name_from_path_fails__case_1_no_file_name.snap +6 -0
- python_alpm-0.2.0/alpm-types/tests/integration.rs +98 -0
- python_alpm-0.2.0/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_01_no_name.snap +9 -0
- python_alpm-0.2.0/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_02_no_name.snap +10 -0
- python_alpm-0.2.0/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_03_invalid_version.snap +10 -0
- python_alpm-0.2.0/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_04_no_version.snap +10 -0
- python_alpm-0.2.0/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_05_no_version_name_with_dashes.snap +10 -0
- python_alpm-0.2.0/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_06_invalid_architecture.snap +9 -0
- python_alpm-0.2.0/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_07_no_architecture.snap +10 -0
- python_alpm-0.2.0/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_08_no_architecture_name_with_dashes.snap +8 -0
- python_alpm-0.2.0/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_09_invalid_package_marker.snap +9 -0
- python_alpm-0.2.0/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_10_no_package_marker.snap +9 -0
- python_alpm-0.2.0/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_11_no_package_marker_name_with_dashes.snap +9 -0
- python_alpm-0.2.0/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_11_no_tar_ending.snap +9 -0
- python_alpm-0.2.0/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_12_invalid_compression.snap +8 -0
- python_alpm-0.2.0/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_12_no_package_marker_name_with_dashes.snap +9 -0
- python_alpm-0.2.0/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_13_invalid_compression.snap +10 -0
- python_alpm-0.2.0/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_13_invalid_dashes.snap +8 -0
- python_alpm-0.2.0/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_14_invalid_dashes.snap +9 -0
- python_alpm-0.2.0/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_15_invalid_dashes.snap +9 -0
- python_alpm-0.2.0/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_15_no_dashes.snap +10 -0
- python_alpm-0.2.0/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_16_no_dashes.snap +10 -0
- python_alpm-0.2.0/pyproject.toml +44 -0
- python_alpm-0.2.0/python/alpm/__init__.py +6 -0
- python_alpm-0.2.0/python/alpm/_native.pyi +4 -0
- python_alpm-0.2.0/python/alpm/alpm_srcinfo/__init__.pyi +20 -0
- python_alpm-0.2.0/python/alpm/alpm_srcinfo/error.pyi +8 -0
- python_alpm-0.2.0/python/alpm/alpm_srcinfo/schema.pyi +70 -0
- python_alpm-0.2.0/python/alpm/alpm_srcinfo/source_info/__init__.pyi +54 -0
- python_alpm-0.2.0/python/alpm/alpm_srcinfo/source_info/v1/__init__.pyi +102 -0
- python_alpm-0.2.0/python/alpm/alpm_srcinfo/source_info/v1/merged.pyi +188 -0
- python_alpm-0.2.0/python/alpm/alpm_srcinfo/source_info/v1/package.pyi +257 -0
- python_alpm-0.2.0/python/alpm/alpm_srcinfo/source_info/v1/package_base.pyi +386 -0
- python_alpm-0.2.0/python/alpm/alpm_types.pyi +1357 -0
- python_alpm-0.2.0/python/alpm/py.typed +0 -0
- python_alpm-0.2.0/python/alpm/type_aliases.py +135 -0
- python_alpm-0.2.0/python-alpm/ARCHITECTURE.md +70 -0
- python_alpm-0.2.0/python-alpm/CHANGELOG.md +73 -0
- python_alpm-0.2.0/python-alpm/Cargo.toml +27 -0
- python_alpm-0.2.0/python-alpm/README.md +96 -0
- python_alpm-0.2.0/python-alpm/cliff.toml +48 -0
- python_alpm-0.2.0/python-alpm/python/alpm/__init__.py +6 -0
- python_alpm-0.2.0/python-alpm/python/alpm/_native.pyi +4 -0
- python_alpm-0.2.0/python-alpm/python/alpm/alpm_srcinfo/__init__.pyi +20 -0
- python_alpm-0.2.0/python-alpm/python/alpm/alpm_srcinfo/error.pyi +8 -0
- python_alpm-0.2.0/python-alpm/python/alpm/alpm_srcinfo/schema.pyi +70 -0
- python_alpm-0.2.0/python-alpm/python/alpm/alpm_srcinfo/source_info/__init__.pyi +54 -0
- python_alpm-0.2.0/python-alpm/python/alpm/alpm_srcinfo/source_info/v1/__init__.pyi +102 -0
- python_alpm-0.2.0/python-alpm/python/alpm/alpm_srcinfo/source_info/v1/merged.pyi +188 -0
- python_alpm-0.2.0/python-alpm/python/alpm/alpm_srcinfo/source_info/v1/package.pyi +257 -0
- python_alpm-0.2.0/python-alpm/python/alpm/alpm_srcinfo/source_info/v1/package_base.pyi +386 -0
- python_alpm-0.2.0/python-alpm/python/alpm/alpm_types.pyi +1357 -0
- python_alpm-0.2.0/python-alpm/python/alpm/py.typed +0 -0
- python_alpm-0.2.0/python-alpm/python/alpm/type_aliases.py +135 -0
- python_alpm-0.2.0/python-alpm/src/lib.rs +28 -0
- python_alpm-0.2.0/python-alpm/src/macros.rs +107 -0
- python_alpm-0.2.0/python-alpm/src/srcinfo/error.rs +28 -0
- python_alpm-0.2.0/python-alpm/src/srcinfo/mod.rs +38 -0
- python_alpm-0.2.0/python-alpm/src/srcinfo/schema.rs +76 -0
- python_alpm-0.2.0/python-alpm/src/srcinfo/source_info/mod.rs +60 -0
- python_alpm-0.2.0/python-alpm/src/srcinfo/source_info/v1/merged.rs +255 -0
- python_alpm-0.2.0/python-alpm/src/srcinfo/source_info/v1/mod.rs +100 -0
- python_alpm-0.2.0/python-alpm/src/srcinfo/source_info/v1/package.rs +583 -0
- python_alpm-0.2.0/python-alpm/src/srcinfo/source_info/v1/package_base.rs +537 -0
- python_alpm-0.2.0/python-alpm/src/types/checksum.rs +96 -0
- python_alpm-0.2.0/python-alpm/src/types/env.rs +112 -0
- python_alpm-0.2.0/python-alpm/src/types/error.rs +22 -0
- python_alpm-0.2.0/python-alpm/src/types/license.rs +39 -0
- python_alpm-0.2.0/python-alpm/src/types/mod.rs +120 -0
- python_alpm-0.2.0/python-alpm/src/types/openpgp.rs +94 -0
- python_alpm-0.2.0/python-alpm/src/types/path.rs +29 -0
- python_alpm-0.2.0/python-alpm/src/types/relation.rs +310 -0
- python_alpm-0.2.0/python-alpm/src/types/requirement.rs +87 -0
- python_alpm-0.2.0/python-alpm/src/types/source.rs +63 -0
- python_alpm-0.2.0/python-alpm/src/types/system.rs +334 -0
- python_alpm-0.2.0/python-alpm/src/types/url.rs +294 -0
- python_alpm-0.2.0/python-alpm/src/types/version.rs +313 -0
- python_alpm-0.2.0/python-alpm/tests/conftest.py +99 -0
- python_alpm-0.2.0/python-alpm/tests/srcinfo/test_alpm_srcinfo_imports.py +42 -0
- python_alpm-0.2.0/python-alpm/tests/srcinfo/test_package.py +611 -0
- python_alpm-0.2.0/python-alpm/tests/srcinfo/test_package_base.py +605 -0
- python_alpm-0.2.0/python-alpm/tests/srcinfo/test_schema.py +116 -0
- python_alpm-0.2.0/python-alpm/tests/srcinfo/test_source_info.py +118 -0
- python_alpm-0.2.0/python-alpm/tests/srcinfo/test_source_info_v1.py +54 -0
- python_alpm-0.2.0/python-alpm/tests/test_alpm_imports.py +22 -0
- python_alpm-0.2.0/python-alpm/tests/types/test_alpm_types_imports.py +56 -0
- python_alpm-0.2.0/python-alpm/tests/types/test_checksum.py +140 -0
- python_alpm-0.2.0/python-alpm/tests/types/test_env.py +112 -0
- python_alpm-0.2.0/python-alpm/tests/types/test_license.py +47 -0
- python_alpm-0.2.0/python-alpm/tests/types/test_openpgp.py +63 -0
- python_alpm-0.2.0/python-alpm/tests/types/test_path.py +72 -0
- python_alpm-0.2.0/python-alpm/tests/types/test_relation.py +237 -0
- python_alpm-0.2.0/python-alpm/tests/types/test_requirement.py +95 -0
- python_alpm-0.2.0/python-alpm/tests/types/test_system.py +346 -0
- python_alpm-0.2.0/python-alpm/tests/types/test_url.py +51 -0
- python_alpm-0.2.0/python-alpm/tests/types/test_version.py +461 -0
- python_alpm-0.2.0/python-alpm/uv.lock +352 -0
|
@@ -0,0 +1,3835 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aho-corasick"
|
|
13
|
+
version = "1.1.4"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"memchr",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "alpm-buildinfo"
|
|
22
|
+
version = "0.4.0"
|
|
23
|
+
dependencies = [
|
|
24
|
+
"alpm-common",
|
|
25
|
+
"alpm-parsers",
|
|
26
|
+
"alpm-types",
|
|
27
|
+
"assert_cmd",
|
|
28
|
+
"clap",
|
|
29
|
+
"insta",
|
|
30
|
+
"rstest",
|
|
31
|
+
"serde",
|
|
32
|
+
"serde_json",
|
|
33
|
+
"serde_with",
|
|
34
|
+
"strum",
|
|
35
|
+
"tempfile",
|
|
36
|
+
"testresult",
|
|
37
|
+
"thiserror",
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "alpm-common"
|
|
42
|
+
version = "0.1.3"
|
|
43
|
+
dependencies = [
|
|
44
|
+
"alpm-types",
|
|
45
|
+
"fluent-i18n",
|
|
46
|
+
"rstest",
|
|
47
|
+
"tempfile",
|
|
48
|
+
"testresult",
|
|
49
|
+
"thiserror",
|
|
50
|
+
]
|
|
51
|
+
|
|
52
|
+
[[package]]
|
|
53
|
+
name = "alpm-compress"
|
|
54
|
+
version = "0.1.0"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"alpm-types",
|
|
57
|
+
"bzip2",
|
|
58
|
+
"flate2",
|
|
59
|
+
"liblzma",
|
|
60
|
+
"log",
|
|
61
|
+
"num_cpus",
|
|
62
|
+
"proptest",
|
|
63
|
+
"rstest",
|
|
64
|
+
"tar",
|
|
65
|
+
"tempfile",
|
|
66
|
+
"testresult",
|
|
67
|
+
"thiserror",
|
|
68
|
+
"zstd",
|
|
69
|
+
]
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "alpm-db"
|
|
73
|
+
version = "0.1.0"
|
|
74
|
+
|
|
75
|
+
[[package]]
|
|
76
|
+
name = "alpm-lint"
|
|
77
|
+
version = "0.1.0"
|
|
78
|
+
dependencies = [
|
|
79
|
+
"alpm-buildinfo",
|
|
80
|
+
"alpm-common",
|
|
81
|
+
"alpm-lint-config",
|
|
82
|
+
"alpm-pkgbuild",
|
|
83
|
+
"alpm-pkginfo",
|
|
84
|
+
"alpm-srcinfo",
|
|
85
|
+
"alpm-types",
|
|
86
|
+
"assert_cmd",
|
|
87
|
+
"clap",
|
|
88
|
+
"clap-verbosity",
|
|
89
|
+
"colored",
|
|
90
|
+
"documented",
|
|
91
|
+
"insta",
|
|
92
|
+
"log",
|
|
93
|
+
"rstest",
|
|
94
|
+
"serde",
|
|
95
|
+
"serde_json",
|
|
96
|
+
"simplelog",
|
|
97
|
+
"strum",
|
|
98
|
+
"tempfile",
|
|
99
|
+
"testresult",
|
|
100
|
+
"thiserror",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "alpm-lint-config"
|
|
105
|
+
version = "0.1.0"
|
|
106
|
+
dependencies = [
|
|
107
|
+
"clap",
|
|
108
|
+
"serde",
|
|
109
|
+
"strum",
|
|
110
|
+
"tempfile",
|
|
111
|
+
"testresult",
|
|
112
|
+
"thiserror",
|
|
113
|
+
"toml",
|
|
114
|
+
]
|
|
115
|
+
|
|
116
|
+
[[package]]
|
|
117
|
+
name = "alpm-mtree"
|
|
118
|
+
version = "0.2.3"
|
|
119
|
+
dependencies = [
|
|
120
|
+
"alpm-common",
|
|
121
|
+
"alpm-parsers",
|
|
122
|
+
"alpm-types",
|
|
123
|
+
"assert_cmd",
|
|
124
|
+
"clap",
|
|
125
|
+
"filetime",
|
|
126
|
+
"flate2",
|
|
127
|
+
"insta",
|
|
128
|
+
"log",
|
|
129
|
+
"rstest",
|
|
130
|
+
"serde",
|
|
131
|
+
"serde_json",
|
|
132
|
+
"simplelog",
|
|
133
|
+
"strum",
|
|
134
|
+
"tempfile",
|
|
135
|
+
"testresult",
|
|
136
|
+
"thiserror",
|
|
137
|
+
"which",
|
|
138
|
+
"winnow",
|
|
139
|
+
]
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "alpm-package"
|
|
143
|
+
version = "0.2.1"
|
|
144
|
+
dependencies = [
|
|
145
|
+
"alpm-buildinfo",
|
|
146
|
+
"alpm-common",
|
|
147
|
+
"alpm-compress",
|
|
148
|
+
"alpm-mtree",
|
|
149
|
+
"alpm-pkginfo",
|
|
150
|
+
"alpm-types",
|
|
151
|
+
"filetime",
|
|
152
|
+
"log",
|
|
153
|
+
"rstest",
|
|
154
|
+
"simplelog",
|
|
155
|
+
"tar",
|
|
156
|
+
"tempfile",
|
|
157
|
+
"testresult",
|
|
158
|
+
"thiserror",
|
|
159
|
+
]
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "alpm-parsers"
|
|
163
|
+
version = "0.3.1"
|
|
164
|
+
dependencies = [
|
|
165
|
+
"insta",
|
|
166
|
+
"rstest",
|
|
167
|
+
"serde",
|
|
168
|
+
"testresult",
|
|
169
|
+
"winnow",
|
|
170
|
+
]
|
|
171
|
+
|
|
172
|
+
[[package]]
|
|
173
|
+
name = "alpm-pkgbuild"
|
|
174
|
+
version = "0.2.1"
|
|
175
|
+
dependencies = [
|
|
176
|
+
"alpm-parsers",
|
|
177
|
+
"alpm-types",
|
|
178
|
+
"assert_cmd",
|
|
179
|
+
"insta",
|
|
180
|
+
"log",
|
|
181
|
+
"rstest",
|
|
182
|
+
"serde_json",
|
|
183
|
+
"strum",
|
|
184
|
+
"tempfile",
|
|
185
|
+
"testresult",
|
|
186
|
+
"thiserror",
|
|
187
|
+
"which",
|
|
188
|
+
"winnow",
|
|
189
|
+
]
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "alpm-pkginfo"
|
|
193
|
+
version = "0.4.0"
|
|
194
|
+
dependencies = [
|
|
195
|
+
"alpm-common",
|
|
196
|
+
"alpm-parsers",
|
|
197
|
+
"alpm-types",
|
|
198
|
+
"assert_cmd",
|
|
199
|
+
"clap",
|
|
200
|
+
"insta",
|
|
201
|
+
"pretty_assertions",
|
|
202
|
+
"rstest",
|
|
203
|
+
"serde",
|
|
204
|
+
"serde_json",
|
|
205
|
+
"serde_with",
|
|
206
|
+
"strum",
|
|
207
|
+
"tempfile",
|
|
208
|
+
"testresult",
|
|
209
|
+
"thiserror",
|
|
210
|
+
"winnow",
|
|
211
|
+
]
|
|
212
|
+
|
|
213
|
+
[[package]]
|
|
214
|
+
name = "alpm-repo"
|
|
215
|
+
version = "0.1.0"
|
|
216
|
+
|
|
217
|
+
[[package]]
|
|
218
|
+
name = "alpm-repo-db"
|
|
219
|
+
version = "0.1.0"
|
|
220
|
+
|
|
221
|
+
[[package]]
|
|
222
|
+
name = "alpm-soname"
|
|
223
|
+
version = "0.1.0"
|
|
224
|
+
dependencies = [
|
|
225
|
+
"alpm-compress",
|
|
226
|
+
"alpm-mtree",
|
|
227
|
+
"alpm-package",
|
|
228
|
+
"alpm-pkginfo",
|
|
229
|
+
"alpm-types",
|
|
230
|
+
"assert_cmd",
|
|
231
|
+
"clap",
|
|
232
|
+
"clap-verbosity",
|
|
233
|
+
"goblin",
|
|
234
|
+
"log",
|
|
235
|
+
"rstest",
|
|
236
|
+
"serde",
|
|
237
|
+
"serde_json",
|
|
238
|
+
"simplelog",
|
|
239
|
+
"strum",
|
|
240
|
+
"tempfile",
|
|
241
|
+
"testresult",
|
|
242
|
+
"thiserror",
|
|
243
|
+
]
|
|
244
|
+
|
|
245
|
+
[[package]]
|
|
246
|
+
name = "alpm-srcinfo"
|
|
247
|
+
version = "0.5.0"
|
|
248
|
+
dependencies = [
|
|
249
|
+
"alpm-common",
|
|
250
|
+
"alpm-parsers",
|
|
251
|
+
"alpm-pkgbuild",
|
|
252
|
+
"alpm-types",
|
|
253
|
+
"assert_cmd",
|
|
254
|
+
"clap",
|
|
255
|
+
"insta",
|
|
256
|
+
"pretty_assertions",
|
|
257
|
+
"rstest",
|
|
258
|
+
"serde",
|
|
259
|
+
"serde_json",
|
|
260
|
+
"strum",
|
|
261
|
+
"tempfile",
|
|
262
|
+
"testresult",
|
|
263
|
+
"thiserror",
|
|
264
|
+
"winnow",
|
|
265
|
+
]
|
|
266
|
+
|
|
267
|
+
[[package]]
|
|
268
|
+
name = "alpm-state-repo"
|
|
269
|
+
version = "0.1.0"
|
|
270
|
+
|
|
271
|
+
[[package]]
|
|
272
|
+
name = "alpm-types"
|
|
273
|
+
version = "0.9.0"
|
|
274
|
+
dependencies = [
|
|
275
|
+
"alpm-parsers",
|
|
276
|
+
"blake2",
|
|
277
|
+
"digest",
|
|
278
|
+
"email_address",
|
|
279
|
+
"insta",
|
|
280
|
+
"log",
|
|
281
|
+
"md-5",
|
|
282
|
+
"proptest",
|
|
283
|
+
"rstest",
|
|
284
|
+
"semver",
|
|
285
|
+
"serde",
|
|
286
|
+
"serde_json",
|
|
287
|
+
"sha1",
|
|
288
|
+
"sha2",
|
|
289
|
+
"simplelog",
|
|
290
|
+
"spdx",
|
|
291
|
+
"strum",
|
|
292
|
+
"testresult",
|
|
293
|
+
"thiserror",
|
|
294
|
+
"time",
|
|
295
|
+
"url",
|
|
296
|
+
"winnow",
|
|
297
|
+
]
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "android_system_properties"
|
|
301
|
+
version = "0.1.5"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
304
|
+
dependencies = [
|
|
305
|
+
"libc",
|
|
306
|
+
]
|
|
307
|
+
|
|
308
|
+
[[package]]
|
|
309
|
+
name = "anstream"
|
|
310
|
+
version = "0.3.2"
|
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
312
|
+
checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163"
|
|
313
|
+
dependencies = [
|
|
314
|
+
"anstyle",
|
|
315
|
+
"anstyle-parse",
|
|
316
|
+
"anstyle-query",
|
|
317
|
+
"anstyle-wincon 1.0.2",
|
|
318
|
+
"colorchoice",
|
|
319
|
+
"is-terminal",
|
|
320
|
+
"utf8parse",
|
|
321
|
+
]
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "anstream"
|
|
325
|
+
version = "0.6.21"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
328
|
+
dependencies = [
|
|
329
|
+
"anstyle",
|
|
330
|
+
"anstyle-parse",
|
|
331
|
+
"anstyle-query",
|
|
332
|
+
"anstyle-wincon 3.0.10",
|
|
333
|
+
"colorchoice",
|
|
334
|
+
"is_terminal_polyfill",
|
|
335
|
+
"utf8parse",
|
|
336
|
+
]
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "anstyle"
|
|
340
|
+
version = "1.0.13"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "anstyle-parse"
|
|
346
|
+
version = "0.2.7"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"utf8parse",
|
|
351
|
+
]
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "anstyle-query"
|
|
355
|
+
version = "1.1.4"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
|
|
358
|
+
dependencies = [
|
|
359
|
+
"windows-sys 0.60.2",
|
|
360
|
+
]
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "anstyle-wincon"
|
|
364
|
+
version = "1.0.2"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "c677ab05e09154296dd37acecd46420c17b9713e8366facafa8fc0885167cf4c"
|
|
367
|
+
dependencies = [
|
|
368
|
+
"anstyle",
|
|
369
|
+
"windows-sys 0.48.0",
|
|
370
|
+
]
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "anstyle-wincon"
|
|
374
|
+
version = "3.0.10"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
|
|
377
|
+
dependencies = [
|
|
378
|
+
"anstyle",
|
|
379
|
+
"once_cell_polyfill",
|
|
380
|
+
"windows-sys 0.60.2",
|
|
381
|
+
]
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "anyhow"
|
|
385
|
+
version = "1.0.100"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "assert_cmd"
|
|
391
|
+
version = "2.1.1"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "bcbb6924530aa9e0432442af08bbcafdad182db80d2e560da42a6d442535bf85"
|
|
394
|
+
dependencies = [
|
|
395
|
+
"anstyle",
|
|
396
|
+
"bstr",
|
|
397
|
+
"libc",
|
|
398
|
+
"predicates",
|
|
399
|
+
"predicates-core",
|
|
400
|
+
"predicates-tree",
|
|
401
|
+
"wait-timeout",
|
|
402
|
+
]
|
|
403
|
+
|
|
404
|
+
[[package]]
|
|
405
|
+
name = "atomic-waker"
|
|
406
|
+
version = "1.1.2"
|
|
407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
409
|
+
|
|
410
|
+
[[package]]
|
|
411
|
+
name = "autocfg"
|
|
412
|
+
version = "1.5.0"
|
|
413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
414
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "base64"
|
|
418
|
+
version = "0.22.1"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "bit-set"
|
|
424
|
+
version = "0.8.0"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
427
|
+
dependencies = [
|
|
428
|
+
"bit-vec",
|
|
429
|
+
]
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "bit-vec"
|
|
433
|
+
version = "0.8.0"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "bitflags"
|
|
439
|
+
version = "2.10.0"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "blake2"
|
|
445
|
+
version = "0.10.6"
|
|
446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
+
checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
|
|
448
|
+
dependencies = [
|
|
449
|
+
"digest",
|
|
450
|
+
]
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "block-buffer"
|
|
454
|
+
version = "0.10.4"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
457
|
+
dependencies = [
|
|
458
|
+
"generic-array",
|
|
459
|
+
]
|
|
460
|
+
|
|
461
|
+
[[package]]
|
|
462
|
+
name = "bstr"
|
|
463
|
+
version = "1.12.1"
|
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
466
|
+
dependencies = [
|
|
467
|
+
"memchr",
|
|
468
|
+
"regex-automata",
|
|
469
|
+
"serde",
|
|
470
|
+
]
|
|
471
|
+
|
|
472
|
+
[[package]]
|
|
473
|
+
name = "bumpalo"
|
|
474
|
+
version = "3.19.0"
|
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "bytes"
|
|
480
|
+
version = "1.10.1"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
483
|
+
|
|
484
|
+
[[package]]
|
|
485
|
+
name = "bzip2"
|
|
486
|
+
version = "0.6.1"
|
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
+
checksum = "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c"
|
|
489
|
+
dependencies = [
|
|
490
|
+
"libbz2-rs-sys",
|
|
491
|
+
]
|
|
492
|
+
|
|
493
|
+
[[package]]
|
|
494
|
+
name = "cc"
|
|
495
|
+
version = "1.2.43"
|
|
496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
497
|
+
checksum = "739eb0f94557554b3ca9a86d2d37bebd49c5e6d0c1d2bda35ba5bdac830befc2"
|
|
498
|
+
dependencies = [
|
|
499
|
+
"find-msvc-tools",
|
|
500
|
+
"jobserver",
|
|
501
|
+
"libc",
|
|
502
|
+
"shlex",
|
|
503
|
+
]
|
|
504
|
+
|
|
505
|
+
[[package]]
|
|
506
|
+
name = "cfg-if"
|
|
507
|
+
version = "1.0.4"
|
|
508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
510
|
+
|
|
511
|
+
[[package]]
|
|
512
|
+
name = "cfg_aliases"
|
|
513
|
+
version = "0.2.1"
|
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
516
|
+
|
|
517
|
+
[[package]]
|
|
518
|
+
name = "chrono"
|
|
519
|
+
version = "0.4.42"
|
|
520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
+
checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
|
|
522
|
+
dependencies = [
|
|
523
|
+
"iana-time-zone",
|
|
524
|
+
"num-traits",
|
|
525
|
+
"serde",
|
|
526
|
+
"windows-link",
|
|
527
|
+
]
|
|
528
|
+
|
|
529
|
+
[[package]]
|
|
530
|
+
name = "clap"
|
|
531
|
+
version = "4.5.51"
|
|
532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
533
|
+
checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5"
|
|
534
|
+
dependencies = [
|
|
535
|
+
"clap_builder",
|
|
536
|
+
"clap_derive",
|
|
537
|
+
]
|
|
538
|
+
|
|
539
|
+
[[package]]
|
|
540
|
+
name = "clap-verbosity"
|
|
541
|
+
version = "2.1.0"
|
|
542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
+
checksum = "3d7bf75a8e0407a558bd7e8e7919baa352e21fb0c1c7702a63c853f2277c4c63"
|
|
544
|
+
dependencies = [
|
|
545
|
+
"clap",
|
|
546
|
+
"log",
|
|
547
|
+
"serde",
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "clap_builder"
|
|
552
|
+
version = "4.5.51"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a"
|
|
555
|
+
dependencies = [
|
|
556
|
+
"anstream 0.6.21",
|
|
557
|
+
"anstyle",
|
|
558
|
+
"clap_lex",
|
|
559
|
+
"strsim",
|
|
560
|
+
"terminal_size",
|
|
561
|
+
]
|
|
562
|
+
|
|
563
|
+
[[package]]
|
|
564
|
+
name = "clap_derive"
|
|
565
|
+
version = "4.5.49"
|
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
568
|
+
dependencies = [
|
|
569
|
+
"heck",
|
|
570
|
+
"proc-macro2",
|
|
571
|
+
"quote",
|
|
572
|
+
"syn",
|
|
573
|
+
]
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "clap_lex"
|
|
577
|
+
version = "0.7.6"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "colorchoice"
|
|
583
|
+
version = "1.0.4"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "colored"
|
|
589
|
+
version = "3.0.0"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "fde0e0ec90c9dfb3b4b1a0891a7dcd0e2bffde2f7efed5fe7c9bb00e5bfb915e"
|
|
592
|
+
dependencies = [
|
|
593
|
+
"windows-sys 0.59.0",
|
|
594
|
+
]
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "console"
|
|
598
|
+
version = "0.15.11"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
|
601
|
+
dependencies = [
|
|
602
|
+
"encode_unicode",
|
|
603
|
+
"libc",
|
|
604
|
+
"once_cell",
|
|
605
|
+
"windows-sys 0.59.0",
|
|
606
|
+
]
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "console"
|
|
610
|
+
version = "0.16.1"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "b430743a6eb14e9764d4260d4c0d8123087d504eeb9c48f2b2a5e810dd369df4"
|
|
613
|
+
dependencies = [
|
|
614
|
+
"encode_unicode",
|
|
615
|
+
"libc",
|
|
616
|
+
"once_cell",
|
|
617
|
+
"unicode-width",
|
|
618
|
+
"windows-sys 0.61.2",
|
|
619
|
+
]
|
|
620
|
+
|
|
621
|
+
[[package]]
|
|
622
|
+
name = "convert_case"
|
|
623
|
+
version = "0.8.0"
|
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
+
checksum = "baaaa0ecca5b51987b9423ccdc971514dd8b0bb7b4060b983d3664dad3f1f89f"
|
|
626
|
+
dependencies = [
|
|
627
|
+
"unicode-segmentation",
|
|
628
|
+
]
|
|
629
|
+
|
|
630
|
+
[[package]]
|
|
631
|
+
name = "core-foundation-sys"
|
|
632
|
+
version = "0.8.7"
|
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
635
|
+
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "cpufeatures"
|
|
638
|
+
version = "0.2.17"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
641
|
+
dependencies = [
|
|
642
|
+
"libc",
|
|
643
|
+
]
|
|
644
|
+
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "crc32fast"
|
|
647
|
+
version = "1.5.0"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
650
|
+
dependencies = [
|
|
651
|
+
"cfg-if",
|
|
652
|
+
]
|
|
653
|
+
|
|
654
|
+
[[package]]
|
|
655
|
+
name = "crossbeam-deque"
|
|
656
|
+
version = "0.8.6"
|
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
659
|
+
dependencies = [
|
|
660
|
+
"crossbeam-epoch",
|
|
661
|
+
"crossbeam-utils",
|
|
662
|
+
]
|
|
663
|
+
|
|
664
|
+
[[package]]
|
|
665
|
+
name = "crossbeam-epoch"
|
|
666
|
+
version = "0.9.18"
|
|
667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
668
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
669
|
+
dependencies = [
|
|
670
|
+
"crossbeam-utils",
|
|
671
|
+
]
|
|
672
|
+
|
|
673
|
+
[[package]]
|
|
674
|
+
name = "crossbeam-utils"
|
|
675
|
+
version = "0.8.21"
|
|
676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "crypto-common"
|
|
681
|
+
version = "0.1.6"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
684
|
+
dependencies = [
|
|
685
|
+
"generic-array",
|
|
686
|
+
"typenum",
|
|
687
|
+
]
|
|
688
|
+
|
|
689
|
+
[[package]]
|
|
690
|
+
name = "darling"
|
|
691
|
+
version = "0.21.3"
|
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
+
checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
|
|
694
|
+
dependencies = [
|
|
695
|
+
"darling_core",
|
|
696
|
+
"darling_macro",
|
|
697
|
+
]
|
|
698
|
+
|
|
699
|
+
[[package]]
|
|
700
|
+
name = "darling_core"
|
|
701
|
+
version = "0.21.3"
|
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
+
checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
|
|
704
|
+
dependencies = [
|
|
705
|
+
"fnv",
|
|
706
|
+
"ident_case",
|
|
707
|
+
"proc-macro2",
|
|
708
|
+
"quote",
|
|
709
|
+
"strsim",
|
|
710
|
+
"syn",
|
|
711
|
+
]
|
|
712
|
+
|
|
713
|
+
[[package]]
|
|
714
|
+
name = "darling_macro"
|
|
715
|
+
version = "0.21.3"
|
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
+
checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
|
|
718
|
+
dependencies = [
|
|
719
|
+
"darling_core",
|
|
720
|
+
"quote",
|
|
721
|
+
"syn",
|
|
722
|
+
]
|
|
723
|
+
|
|
724
|
+
[[package]]
|
|
725
|
+
name = "deranged"
|
|
726
|
+
version = "0.5.5"
|
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
+
checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
|
|
729
|
+
dependencies = [
|
|
730
|
+
"powerfmt",
|
|
731
|
+
"serde_core",
|
|
732
|
+
]
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "dev-scripts"
|
|
736
|
+
version = "0.0.0"
|
|
737
|
+
dependencies = [
|
|
738
|
+
"alpm-buildinfo",
|
|
739
|
+
"alpm-common",
|
|
740
|
+
"alpm-mtree",
|
|
741
|
+
"alpm-pkgbuild",
|
|
742
|
+
"alpm-pkginfo",
|
|
743
|
+
"alpm-srcinfo",
|
|
744
|
+
"anyhow",
|
|
745
|
+
"assert_cmd",
|
|
746
|
+
"clap",
|
|
747
|
+
"colored",
|
|
748
|
+
"dirs",
|
|
749
|
+
"flate2",
|
|
750
|
+
"indicatif",
|
|
751
|
+
"log",
|
|
752
|
+
"proptest",
|
|
753
|
+
"rayon",
|
|
754
|
+
"reqwest",
|
|
755
|
+
"rstest",
|
|
756
|
+
"serde_json",
|
|
757
|
+
"simplelog",
|
|
758
|
+
"strum",
|
|
759
|
+
"tempfile",
|
|
760
|
+
"testresult",
|
|
761
|
+
"winnow",
|
|
762
|
+
]
|
|
763
|
+
|
|
764
|
+
[[package]]
|
|
765
|
+
name = "diff"
|
|
766
|
+
version = "0.1.13"
|
|
767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
768
|
+
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
769
|
+
|
|
770
|
+
[[package]]
|
|
771
|
+
name = "difflib"
|
|
772
|
+
version = "0.4.0"
|
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
+
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
775
|
+
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "digest"
|
|
778
|
+
version = "0.10.7"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
781
|
+
dependencies = [
|
|
782
|
+
"block-buffer",
|
|
783
|
+
"crypto-common",
|
|
784
|
+
"subtle",
|
|
785
|
+
]
|
|
786
|
+
|
|
787
|
+
[[package]]
|
|
788
|
+
name = "dirs"
|
|
789
|
+
version = "6.0.0"
|
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
+
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
|
|
792
|
+
dependencies = [
|
|
793
|
+
"dirs-sys",
|
|
794
|
+
]
|
|
795
|
+
|
|
796
|
+
[[package]]
|
|
797
|
+
name = "dirs-sys"
|
|
798
|
+
version = "0.5.0"
|
|
799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
+
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
|
801
|
+
dependencies = [
|
|
802
|
+
"libc",
|
|
803
|
+
"option-ext",
|
|
804
|
+
"redox_users",
|
|
805
|
+
"windows-sys 0.61.2",
|
|
806
|
+
]
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "displaydoc"
|
|
810
|
+
version = "0.2.5"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
813
|
+
dependencies = [
|
|
814
|
+
"proc-macro2",
|
|
815
|
+
"quote",
|
|
816
|
+
"syn",
|
|
817
|
+
]
|
|
818
|
+
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "documented"
|
|
821
|
+
version = "0.9.2"
|
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
+
checksum = "ed6b3e31251e87acd1b74911aed84071c8364fc9087972748ade2f1094ccce34"
|
|
824
|
+
dependencies = [
|
|
825
|
+
"documented-macros",
|
|
826
|
+
"phf",
|
|
827
|
+
"thiserror",
|
|
828
|
+
]
|
|
829
|
+
|
|
830
|
+
[[package]]
|
|
831
|
+
name = "documented-macros"
|
|
832
|
+
version = "0.9.2"
|
|
833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
834
|
+
checksum = "1149cf7462e5e79e17a3c05fd5b1f9055092bbfa95e04c319395c3beacc9370f"
|
|
835
|
+
dependencies = [
|
|
836
|
+
"convert_case",
|
|
837
|
+
"itertools",
|
|
838
|
+
"optfield",
|
|
839
|
+
"proc-macro2",
|
|
840
|
+
"quote",
|
|
841
|
+
"strum",
|
|
842
|
+
"syn",
|
|
843
|
+
]
|
|
844
|
+
|
|
845
|
+
[[package]]
|
|
846
|
+
name = "dyn-clone"
|
|
847
|
+
version = "1.0.20"
|
|
848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
850
|
+
|
|
851
|
+
[[package]]
|
|
852
|
+
name = "either"
|
|
853
|
+
version = "1.15.0"
|
|
854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
856
|
+
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "email_address"
|
|
859
|
+
version = "0.2.9"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "e079f19b08ca6239f47f8ba8509c11cf3ea30095831f7fed61441475edd8c449"
|
|
862
|
+
dependencies = [
|
|
863
|
+
"serde",
|
|
864
|
+
]
|
|
865
|
+
|
|
866
|
+
[[package]]
|
|
867
|
+
name = "encode_unicode"
|
|
868
|
+
version = "1.0.0"
|
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
871
|
+
|
|
872
|
+
[[package]]
|
|
873
|
+
name = "encoding_rs"
|
|
874
|
+
version = "0.8.35"
|
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
877
|
+
dependencies = [
|
|
878
|
+
"cfg-if",
|
|
879
|
+
]
|
|
880
|
+
|
|
881
|
+
[[package]]
|
|
882
|
+
name = "env_home"
|
|
883
|
+
version = "0.1.0"
|
|
884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
885
|
+
checksum = "c7f84e12ccf0a7ddc17a6c41c93326024c42920d7ee630d04950e6926645c0fe"
|
|
886
|
+
|
|
887
|
+
[[package]]
|
|
888
|
+
name = "equivalent"
|
|
889
|
+
version = "1.0.2"
|
|
890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
891
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
892
|
+
|
|
893
|
+
[[package]]
|
|
894
|
+
name = "errno"
|
|
895
|
+
version = "0.3.14"
|
|
896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
897
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
898
|
+
dependencies = [
|
|
899
|
+
"libc",
|
|
900
|
+
"windows-sys 0.61.2",
|
|
901
|
+
]
|
|
902
|
+
|
|
903
|
+
[[package]]
|
|
904
|
+
name = "fastrand"
|
|
905
|
+
version = "2.3.0"
|
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
908
|
+
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "filetime"
|
|
911
|
+
version = "0.2.26"
|
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
+
checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
|
|
914
|
+
dependencies = [
|
|
915
|
+
"cfg-if",
|
|
916
|
+
"libc",
|
|
917
|
+
"libredox",
|
|
918
|
+
"windows-sys 0.60.2",
|
|
919
|
+
]
|
|
920
|
+
|
|
921
|
+
[[package]]
|
|
922
|
+
name = "find-msvc-tools"
|
|
923
|
+
version = "0.1.4"
|
|
924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
+
checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
|
|
926
|
+
|
|
927
|
+
[[package]]
|
|
928
|
+
name = "flate2"
|
|
929
|
+
version = "1.1.5"
|
|
930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
931
|
+
checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
|
|
932
|
+
dependencies = [
|
|
933
|
+
"crc32fast",
|
|
934
|
+
"miniz_oxide",
|
|
935
|
+
]
|
|
936
|
+
|
|
937
|
+
[[package]]
|
|
938
|
+
name = "fluent-bundle"
|
|
939
|
+
version = "0.16.0"
|
|
940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
941
|
+
checksum = "01203cb8918f5711e73891b347816d932046f95f54207710bda99beaeb423bf4"
|
|
942
|
+
dependencies = [
|
|
943
|
+
"fluent-langneg",
|
|
944
|
+
"fluent-syntax",
|
|
945
|
+
"intl-memoizer",
|
|
946
|
+
"intl_pluralrules",
|
|
947
|
+
"rustc-hash",
|
|
948
|
+
"self_cell",
|
|
949
|
+
"smallvec",
|
|
950
|
+
"unic-langid",
|
|
951
|
+
]
|
|
952
|
+
|
|
953
|
+
[[package]]
|
|
954
|
+
name = "fluent-i18n"
|
|
955
|
+
version = "0.1.0"
|
|
956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
957
|
+
checksum = "8550f449bcf1c66798713df8965e3b6306d99a47a71cc5025dc9ba2bceb76e15"
|
|
958
|
+
dependencies = [
|
|
959
|
+
"fluent-templates",
|
|
960
|
+
"sys-locale",
|
|
961
|
+
"thiserror",
|
|
962
|
+
"unic-langid",
|
|
963
|
+
]
|
|
964
|
+
|
|
965
|
+
[[package]]
|
|
966
|
+
name = "fluent-langneg"
|
|
967
|
+
version = "0.13.1"
|
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
+
checksum = "7eebbe59450baee8282d71676f3bfed5689aeab00b27545e83e5f14b1195e8b0"
|
|
970
|
+
dependencies = [
|
|
971
|
+
"unic-langid",
|
|
972
|
+
]
|
|
973
|
+
|
|
974
|
+
[[package]]
|
|
975
|
+
name = "fluent-syntax"
|
|
976
|
+
version = "0.12.0"
|
|
977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
978
|
+
checksum = "54f0d287c53ffd184d04d8677f590f4ac5379785529e5e08b1c8083acdd5c198"
|
|
979
|
+
dependencies = [
|
|
980
|
+
"memchr",
|
|
981
|
+
"thiserror",
|
|
982
|
+
]
|
|
983
|
+
|
|
984
|
+
[[package]]
|
|
985
|
+
name = "fluent-template-macros"
|
|
986
|
+
version = "0.13.2"
|
|
987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
+
checksum = "9af64f01dd293b28c19df8be230979c32c944d4b6e737a31f2ead91f8d0d46b9"
|
|
989
|
+
dependencies = [
|
|
990
|
+
"flume",
|
|
991
|
+
"ignore",
|
|
992
|
+
"proc-macro2",
|
|
993
|
+
"quote",
|
|
994
|
+
"syn",
|
|
995
|
+
"unic-langid",
|
|
996
|
+
]
|
|
997
|
+
|
|
998
|
+
[[package]]
|
|
999
|
+
name = "fluent-templates"
|
|
1000
|
+
version = "0.13.2"
|
|
1001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1002
|
+
checksum = "407bcb5e8c7e4625c365b1180099b43e40fb6fd6d0ba53070229297246ba6392"
|
|
1003
|
+
dependencies = [
|
|
1004
|
+
"fluent-bundle",
|
|
1005
|
+
"fluent-langneg",
|
|
1006
|
+
"fluent-syntax",
|
|
1007
|
+
"fluent-template-macros",
|
|
1008
|
+
"flume",
|
|
1009
|
+
"ignore",
|
|
1010
|
+
"intl-memoizer",
|
|
1011
|
+
"log",
|
|
1012
|
+
"thiserror",
|
|
1013
|
+
"unic-langid",
|
|
1014
|
+
]
|
|
1015
|
+
|
|
1016
|
+
[[package]]
|
|
1017
|
+
name = "flume"
|
|
1018
|
+
version = "0.11.1"
|
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
+
checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
|
|
1021
|
+
dependencies = [
|
|
1022
|
+
"spin",
|
|
1023
|
+
]
|
|
1024
|
+
|
|
1025
|
+
[[package]]
|
|
1026
|
+
name = "fnv"
|
|
1027
|
+
version = "1.0.7"
|
|
1028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1029
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1030
|
+
|
|
1031
|
+
[[package]]
|
|
1032
|
+
name = "form_urlencoded"
|
|
1033
|
+
version = "1.2.2"
|
|
1034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1035
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
1036
|
+
dependencies = [
|
|
1037
|
+
"percent-encoding",
|
|
1038
|
+
]
|
|
1039
|
+
|
|
1040
|
+
[[package]]
|
|
1041
|
+
name = "futures-channel"
|
|
1042
|
+
version = "0.3.31"
|
|
1043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
1045
|
+
dependencies = [
|
|
1046
|
+
"futures-core",
|
|
1047
|
+
"futures-sink",
|
|
1048
|
+
]
|
|
1049
|
+
|
|
1050
|
+
[[package]]
|
|
1051
|
+
name = "futures-core"
|
|
1052
|
+
version = "0.3.31"
|
|
1053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1054
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
1055
|
+
|
|
1056
|
+
[[package]]
|
|
1057
|
+
name = "futures-io"
|
|
1058
|
+
version = "0.3.31"
|
|
1059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
1061
|
+
|
|
1062
|
+
[[package]]
|
|
1063
|
+
name = "futures-macro"
|
|
1064
|
+
version = "0.3.31"
|
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
1067
|
+
dependencies = [
|
|
1068
|
+
"proc-macro2",
|
|
1069
|
+
"quote",
|
|
1070
|
+
"syn",
|
|
1071
|
+
]
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "futures-sink"
|
|
1075
|
+
version = "0.3.31"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "futures-task"
|
|
1081
|
+
version = "0.3.31"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
1084
|
+
|
|
1085
|
+
[[package]]
|
|
1086
|
+
name = "futures-timer"
|
|
1087
|
+
version = "3.0.3"
|
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
+
checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "futures-util"
|
|
1093
|
+
version = "0.3.31"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
1096
|
+
dependencies = [
|
|
1097
|
+
"futures-core",
|
|
1098
|
+
"futures-io",
|
|
1099
|
+
"futures-macro",
|
|
1100
|
+
"futures-sink",
|
|
1101
|
+
"futures-task",
|
|
1102
|
+
"memchr",
|
|
1103
|
+
"pin-project-lite",
|
|
1104
|
+
"pin-utils",
|
|
1105
|
+
"slab",
|
|
1106
|
+
]
|
|
1107
|
+
|
|
1108
|
+
[[package]]
|
|
1109
|
+
name = "generic-array"
|
|
1110
|
+
version = "0.14.9"
|
|
1111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1112
|
+
checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
|
|
1113
|
+
dependencies = [
|
|
1114
|
+
"typenum",
|
|
1115
|
+
"version_check",
|
|
1116
|
+
]
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "getrandom"
|
|
1120
|
+
version = "0.2.16"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
1123
|
+
dependencies = [
|
|
1124
|
+
"cfg-if",
|
|
1125
|
+
"js-sys",
|
|
1126
|
+
"libc",
|
|
1127
|
+
"wasi",
|
|
1128
|
+
"wasm-bindgen",
|
|
1129
|
+
]
|
|
1130
|
+
|
|
1131
|
+
[[package]]
|
|
1132
|
+
name = "getrandom"
|
|
1133
|
+
version = "0.3.4"
|
|
1134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1135
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1136
|
+
dependencies = [
|
|
1137
|
+
"cfg-if",
|
|
1138
|
+
"js-sys",
|
|
1139
|
+
"libc",
|
|
1140
|
+
"r-efi",
|
|
1141
|
+
"wasip2",
|
|
1142
|
+
"wasm-bindgen",
|
|
1143
|
+
]
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "glob"
|
|
1147
|
+
version = "0.3.3"
|
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
1150
|
+
|
|
1151
|
+
[[package]]
|
|
1152
|
+
name = "globset"
|
|
1153
|
+
version = "0.4.18"
|
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
+
checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
|
|
1156
|
+
dependencies = [
|
|
1157
|
+
"aho-corasick",
|
|
1158
|
+
"bstr",
|
|
1159
|
+
"log",
|
|
1160
|
+
"regex-automata",
|
|
1161
|
+
"regex-syntax",
|
|
1162
|
+
]
|
|
1163
|
+
|
|
1164
|
+
[[package]]
|
|
1165
|
+
name = "goblin"
|
|
1166
|
+
version = "0.10.3"
|
|
1167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1168
|
+
checksum = "51876e3748c4a347fe65b906f2b1ae46a1e55a497b22c94c1f4f2c469ff7673a"
|
|
1169
|
+
dependencies = [
|
|
1170
|
+
"log",
|
|
1171
|
+
"plain",
|
|
1172
|
+
"scroll",
|
|
1173
|
+
]
|
|
1174
|
+
|
|
1175
|
+
[[package]]
|
|
1176
|
+
name = "h2"
|
|
1177
|
+
version = "0.4.12"
|
|
1178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1179
|
+
checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
|
|
1180
|
+
dependencies = [
|
|
1181
|
+
"atomic-waker",
|
|
1182
|
+
"bytes",
|
|
1183
|
+
"fnv",
|
|
1184
|
+
"futures-core",
|
|
1185
|
+
"futures-sink",
|
|
1186
|
+
"http",
|
|
1187
|
+
"indexmap 2.12.0",
|
|
1188
|
+
"slab",
|
|
1189
|
+
"tokio",
|
|
1190
|
+
"tokio-util",
|
|
1191
|
+
"tracing",
|
|
1192
|
+
]
|
|
1193
|
+
|
|
1194
|
+
[[package]]
|
|
1195
|
+
name = "hashbrown"
|
|
1196
|
+
version = "0.12.3"
|
|
1197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1198
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
1199
|
+
|
|
1200
|
+
[[package]]
|
|
1201
|
+
name = "hashbrown"
|
|
1202
|
+
version = "0.16.0"
|
|
1203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1204
|
+
checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
|
|
1205
|
+
|
|
1206
|
+
[[package]]
|
|
1207
|
+
name = "heck"
|
|
1208
|
+
version = "0.5.0"
|
|
1209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1210
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1211
|
+
|
|
1212
|
+
[[package]]
|
|
1213
|
+
name = "hermit-abi"
|
|
1214
|
+
version = "0.5.2"
|
|
1215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1216
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1217
|
+
|
|
1218
|
+
[[package]]
|
|
1219
|
+
name = "hex"
|
|
1220
|
+
version = "0.4.3"
|
|
1221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1223
|
+
|
|
1224
|
+
[[package]]
|
|
1225
|
+
name = "http"
|
|
1226
|
+
version = "1.3.1"
|
|
1227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1228
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
|
1229
|
+
dependencies = [
|
|
1230
|
+
"bytes",
|
|
1231
|
+
"fnv",
|
|
1232
|
+
"itoa",
|
|
1233
|
+
]
|
|
1234
|
+
|
|
1235
|
+
[[package]]
|
|
1236
|
+
name = "http-body"
|
|
1237
|
+
version = "1.0.1"
|
|
1238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1239
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1240
|
+
dependencies = [
|
|
1241
|
+
"bytes",
|
|
1242
|
+
"http",
|
|
1243
|
+
]
|
|
1244
|
+
|
|
1245
|
+
[[package]]
|
|
1246
|
+
name = "http-body-util"
|
|
1247
|
+
version = "0.1.3"
|
|
1248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
1250
|
+
dependencies = [
|
|
1251
|
+
"bytes",
|
|
1252
|
+
"futures-core",
|
|
1253
|
+
"http",
|
|
1254
|
+
"http-body",
|
|
1255
|
+
"pin-project-lite",
|
|
1256
|
+
]
|
|
1257
|
+
|
|
1258
|
+
[[package]]
|
|
1259
|
+
name = "httparse"
|
|
1260
|
+
version = "1.10.1"
|
|
1261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1262
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1263
|
+
|
|
1264
|
+
[[package]]
|
|
1265
|
+
name = "hyper"
|
|
1266
|
+
version = "1.7.0"
|
|
1267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1268
|
+
checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
|
|
1269
|
+
dependencies = [
|
|
1270
|
+
"atomic-waker",
|
|
1271
|
+
"bytes",
|
|
1272
|
+
"futures-channel",
|
|
1273
|
+
"futures-core",
|
|
1274
|
+
"h2",
|
|
1275
|
+
"http",
|
|
1276
|
+
"http-body",
|
|
1277
|
+
"httparse",
|
|
1278
|
+
"itoa",
|
|
1279
|
+
"pin-project-lite",
|
|
1280
|
+
"pin-utils",
|
|
1281
|
+
"smallvec",
|
|
1282
|
+
"tokio",
|
|
1283
|
+
"want",
|
|
1284
|
+
]
|
|
1285
|
+
|
|
1286
|
+
[[package]]
|
|
1287
|
+
name = "hyper-rustls"
|
|
1288
|
+
version = "0.27.7"
|
|
1289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1290
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
1291
|
+
dependencies = [
|
|
1292
|
+
"http",
|
|
1293
|
+
"hyper",
|
|
1294
|
+
"hyper-util",
|
|
1295
|
+
"rustls",
|
|
1296
|
+
"rustls-pki-types",
|
|
1297
|
+
"tokio",
|
|
1298
|
+
"tokio-rustls",
|
|
1299
|
+
"tower-service",
|
|
1300
|
+
"webpki-roots",
|
|
1301
|
+
]
|
|
1302
|
+
|
|
1303
|
+
[[package]]
|
|
1304
|
+
name = "hyper-util"
|
|
1305
|
+
version = "0.1.17"
|
|
1306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1307
|
+
checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8"
|
|
1308
|
+
dependencies = [
|
|
1309
|
+
"base64",
|
|
1310
|
+
"bytes",
|
|
1311
|
+
"futures-channel",
|
|
1312
|
+
"futures-core",
|
|
1313
|
+
"futures-util",
|
|
1314
|
+
"http",
|
|
1315
|
+
"http-body",
|
|
1316
|
+
"hyper",
|
|
1317
|
+
"ipnet",
|
|
1318
|
+
"libc",
|
|
1319
|
+
"percent-encoding",
|
|
1320
|
+
"pin-project-lite",
|
|
1321
|
+
"socket2",
|
|
1322
|
+
"tokio",
|
|
1323
|
+
"tower-service",
|
|
1324
|
+
"tracing",
|
|
1325
|
+
]
|
|
1326
|
+
|
|
1327
|
+
[[package]]
|
|
1328
|
+
name = "iana-time-zone"
|
|
1329
|
+
version = "0.1.64"
|
|
1330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1331
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
1332
|
+
dependencies = [
|
|
1333
|
+
"android_system_properties",
|
|
1334
|
+
"core-foundation-sys",
|
|
1335
|
+
"iana-time-zone-haiku",
|
|
1336
|
+
"js-sys",
|
|
1337
|
+
"log",
|
|
1338
|
+
"wasm-bindgen",
|
|
1339
|
+
"windows-core",
|
|
1340
|
+
]
|
|
1341
|
+
|
|
1342
|
+
[[package]]
|
|
1343
|
+
name = "iana-time-zone-haiku"
|
|
1344
|
+
version = "0.1.2"
|
|
1345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1346
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1347
|
+
dependencies = [
|
|
1348
|
+
"cc",
|
|
1349
|
+
]
|
|
1350
|
+
|
|
1351
|
+
[[package]]
|
|
1352
|
+
name = "icu_collections"
|
|
1353
|
+
version = "2.1.1"
|
|
1354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1355
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
1356
|
+
dependencies = [
|
|
1357
|
+
"displaydoc",
|
|
1358
|
+
"potential_utf",
|
|
1359
|
+
"yoke",
|
|
1360
|
+
"zerofrom",
|
|
1361
|
+
"zerovec",
|
|
1362
|
+
]
|
|
1363
|
+
|
|
1364
|
+
[[package]]
|
|
1365
|
+
name = "icu_locale_core"
|
|
1366
|
+
version = "2.1.1"
|
|
1367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
1369
|
+
dependencies = [
|
|
1370
|
+
"displaydoc",
|
|
1371
|
+
"litemap",
|
|
1372
|
+
"tinystr",
|
|
1373
|
+
"writeable",
|
|
1374
|
+
"zerovec",
|
|
1375
|
+
]
|
|
1376
|
+
|
|
1377
|
+
[[package]]
|
|
1378
|
+
name = "icu_normalizer"
|
|
1379
|
+
version = "2.1.1"
|
|
1380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1381
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
1382
|
+
dependencies = [
|
|
1383
|
+
"icu_collections",
|
|
1384
|
+
"icu_normalizer_data",
|
|
1385
|
+
"icu_properties",
|
|
1386
|
+
"icu_provider",
|
|
1387
|
+
"smallvec",
|
|
1388
|
+
"zerovec",
|
|
1389
|
+
]
|
|
1390
|
+
|
|
1391
|
+
[[package]]
|
|
1392
|
+
name = "icu_normalizer_data"
|
|
1393
|
+
version = "2.1.1"
|
|
1394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1395
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
1396
|
+
|
|
1397
|
+
[[package]]
|
|
1398
|
+
name = "icu_properties"
|
|
1399
|
+
version = "2.1.1"
|
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
+
checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99"
|
|
1402
|
+
dependencies = [
|
|
1403
|
+
"icu_collections",
|
|
1404
|
+
"icu_locale_core",
|
|
1405
|
+
"icu_properties_data",
|
|
1406
|
+
"icu_provider",
|
|
1407
|
+
"zerotrie",
|
|
1408
|
+
"zerovec",
|
|
1409
|
+
]
|
|
1410
|
+
|
|
1411
|
+
[[package]]
|
|
1412
|
+
name = "icu_properties_data"
|
|
1413
|
+
version = "2.1.1"
|
|
1414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1415
|
+
checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899"
|
|
1416
|
+
|
|
1417
|
+
[[package]]
|
|
1418
|
+
name = "icu_provider"
|
|
1419
|
+
version = "2.1.1"
|
|
1420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1421
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
1422
|
+
dependencies = [
|
|
1423
|
+
"displaydoc",
|
|
1424
|
+
"icu_locale_core",
|
|
1425
|
+
"writeable",
|
|
1426
|
+
"yoke",
|
|
1427
|
+
"zerofrom",
|
|
1428
|
+
"zerotrie",
|
|
1429
|
+
"zerovec",
|
|
1430
|
+
]
|
|
1431
|
+
|
|
1432
|
+
[[package]]
|
|
1433
|
+
name = "ident_case"
|
|
1434
|
+
version = "1.0.1"
|
|
1435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1436
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1437
|
+
|
|
1438
|
+
[[package]]
|
|
1439
|
+
name = "idna"
|
|
1440
|
+
version = "1.1.0"
|
|
1441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1442
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1443
|
+
dependencies = [
|
|
1444
|
+
"idna_adapter",
|
|
1445
|
+
"smallvec",
|
|
1446
|
+
"utf8_iter",
|
|
1447
|
+
]
|
|
1448
|
+
|
|
1449
|
+
[[package]]
|
|
1450
|
+
name = "idna_adapter"
|
|
1451
|
+
version = "1.2.1"
|
|
1452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1453
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1454
|
+
dependencies = [
|
|
1455
|
+
"icu_normalizer",
|
|
1456
|
+
"icu_properties",
|
|
1457
|
+
]
|
|
1458
|
+
|
|
1459
|
+
[[package]]
|
|
1460
|
+
name = "ignore"
|
|
1461
|
+
version = "0.4.25"
|
|
1462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1463
|
+
checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
|
|
1464
|
+
dependencies = [
|
|
1465
|
+
"crossbeam-deque",
|
|
1466
|
+
"globset",
|
|
1467
|
+
"log",
|
|
1468
|
+
"memchr",
|
|
1469
|
+
"regex-automata",
|
|
1470
|
+
"same-file",
|
|
1471
|
+
"walkdir",
|
|
1472
|
+
"winapi-util",
|
|
1473
|
+
]
|
|
1474
|
+
|
|
1475
|
+
[[package]]
|
|
1476
|
+
name = "indexmap"
|
|
1477
|
+
version = "1.9.3"
|
|
1478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1479
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
1480
|
+
dependencies = [
|
|
1481
|
+
"autocfg",
|
|
1482
|
+
"hashbrown 0.12.3",
|
|
1483
|
+
"serde",
|
|
1484
|
+
]
|
|
1485
|
+
|
|
1486
|
+
[[package]]
|
|
1487
|
+
name = "indexmap"
|
|
1488
|
+
version = "2.12.0"
|
|
1489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1490
|
+
checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
|
|
1491
|
+
dependencies = [
|
|
1492
|
+
"equivalent",
|
|
1493
|
+
"hashbrown 0.16.0",
|
|
1494
|
+
"serde",
|
|
1495
|
+
"serde_core",
|
|
1496
|
+
]
|
|
1497
|
+
|
|
1498
|
+
[[package]]
|
|
1499
|
+
name = "indicatif"
|
|
1500
|
+
version = "0.18.2"
|
|
1501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
+
checksum = "ade6dfcba0dfb62ad59e59e7241ec8912af34fd29e0e743e3db992bd278e8b65"
|
|
1503
|
+
dependencies = [
|
|
1504
|
+
"console 0.16.1",
|
|
1505
|
+
"portable-atomic",
|
|
1506
|
+
"unicode-width",
|
|
1507
|
+
"unit-prefix",
|
|
1508
|
+
"web-time",
|
|
1509
|
+
]
|
|
1510
|
+
|
|
1511
|
+
[[package]]
|
|
1512
|
+
name = "indoc"
|
|
1513
|
+
version = "2.0.7"
|
|
1514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1515
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
1516
|
+
dependencies = [
|
|
1517
|
+
"rustversion",
|
|
1518
|
+
]
|
|
1519
|
+
|
|
1520
|
+
[[package]]
|
|
1521
|
+
name = "insta"
|
|
1522
|
+
version = "1.43.2"
|
|
1523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1524
|
+
checksum = "46fdb647ebde000f43b5b53f773c30cf9b0cb4300453208713fa38b2c70935a0"
|
|
1525
|
+
dependencies = [
|
|
1526
|
+
"console 0.15.11",
|
|
1527
|
+
"once_cell",
|
|
1528
|
+
"regex",
|
|
1529
|
+
"similar",
|
|
1530
|
+
]
|
|
1531
|
+
|
|
1532
|
+
[[package]]
|
|
1533
|
+
name = "intl-memoizer"
|
|
1534
|
+
version = "0.5.3"
|
|
1535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1536
|
+
checksum = "310da2e345f5eb861e7a07ee182262e94975051db9e4223e909ba90f392f163f"
|
|
1537
|
+
dependencies = [
|
|
1538
|
+
"type-map",
|
|
1539
|
+
"unic-langid",
|
|
1540
|
+
]
|
|
1541
|
+
|
|
1542
|
+
[[package]]
|
|
1543
|
+
name = "intl_pluralrules"
|
|
1544
|
+
version = "7.0.2"
|
|
1545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1546
|
+
checksum = "078ea7b7c29a2b4df841a7f6ac8775ff6074020c6776d48491ce2268e068f972"
|
|
1547
|
+
dependencies = [
|
|
1548
|
+
"unic-langid",
|
|
1549
|
+
]
|
|
1550
|
+
|
|
1551
|
+
[[package]]
|
|
1552
|
+
name = "ipnet"
|
|
1553
|
+
version = "2.11.0"
|
|
1554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1555
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
1556
|
+
|
|
1557
|
+
[[package]]
|
|
1558
|
+
name = "iri-string"
|
|
1559
|
+
version = "0.7.8"
|
|
1560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
|
+
checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
|
|
1562
|
+
dependencies = [
|
|
1563
|
+
"memchr",
|
|
1564
|
+
"serde",
|
|
1565
|
+
]
|
|
1566
|
+
|
|
1567
|
+
[[package]]
|
|
1568
|
+
name = "is-terminal"
|
|
1569
|
+
version = "0.4.17"
|
|
1570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1571
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
1572
|
+
dependencies = [
|
|
1573
|
+
"hermit-abi",
|
|
1574
|
+
"libc",
|
|
1575
|
+
"windows-sys 0.61.2",
|
|
1576
|
+
]
|
|
1577
|
+
|
|
1578
|
+
[[package]]
|
|
1579
|
+
name = "is_terminal_polyfill"
|
|
1580
|
+
version = "1.70.2"
|
|
1581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1582
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1583
|
+
|
|
1584
|
+
[[package]]
|
|
1585
|
+
name = "itertools"
|
|
1586
|
+
version = "0.14.0"
|
|
1587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1589
|
+
dependencies = [
|
|
1590
|
+
"either",
|
|
1591
|
+
]
|
|
1592
|
+
|
|
1593
|
+
[[package]]
|
|
1594
|
+
name = "itoa"
|
|
1595
|
+
version = "1.0.15"
|
|
1596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1597
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
1598
|
+
|
|
1599
|
+
[[package]]
|
|
1600
|
+
name = "jobserver"
|
|
1601
|
+
version = "0.1.34"
|
|
1602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1603
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1604
|
+
dependencies = [
|
|
1605
|
+
"getrandom 0.3.4",
|
|
1606
|
+
"libc",
|
|
1607
|
+
]
|
|
1608
|
+
|
|
1609
|
+
[[package]]
|
|
1610
|
+
name = "js-sys"
|
|
1611
|
+
version = "0.3.82"
|
|
1612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1613
|
+
checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
|
|
1614
|
+
dependencies = [
|
|
1615
|
+
"once_cell",
|
|
1616
|
+
"wasm-bindgen",
|
|
1617
|
+
]
|
|
1618
|
+
|
|
1619
|
+
[[package]]
|
|
1620
|
+
name = "libbz2-rs-sys"
|
|
1621
|
+
version = "0.2.2"
|
|
1622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1623
|
+
checksum = "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7"
|
|
1624
|
+
|
|
1625
|
+
[[package]]
|
|
1626
|
+
name = "libc"
|
|
1627
|
+
version = "0.2.177"
|
|
1628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1629
|
+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
|
|
1630
|
+
|
|
1631
|
+
[[package]]
|
|
1632
|
+
name = "liblzma"
|
|
1633
|
+
version = "0.4.5"
|
|
1634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1635
|
+
checksum = "73c36d08cad03a3fbe2c4e7bb3a9e84c57e4ee4135ed0b065cade3d98480c648"
|
|
1636
|
+
dependencies = [
|
|
1637
|
+
"liblzma-sys",
|
|
1638
|
+
"num_cpus",
|
|
1639
|
+
]
|
|
1640
|
+
|
|
1641
|
+
[[package]]
|
|
1642
|
+
name = "liblzma-sys"
|
|
1643
|
+
version = "0.4.4"
|
|
1644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
+
checksum = "01b9596486f6d60c3bbe644c0e1be1aa6ccc472ad630fe8927b456973d7cb736"
|
|
1646
|
+
dependencies = [
|
|
1647
|
+
"cc",
|
|
1648
|
+
"libc",
|
|
1649
|
+
"pkg-config",
|
|
1650
|
+
]
|
|
1651
|
+
|
|
1652
|
+
[[package]]
|
|
1653
|
+
name = "libredox"
|
|
1654
|
+
version = "0.1.10"
|
|
1655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1656
|
+
checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
|
|
1657
|
+
dependencies = [
|
|
1658
|
+
"bitflags",
|
|
1659
|
+
"libc",
|
|
1660
|
+
"redox_syscall",
|
|
1661
|
+
]
|
|
1662
|
+
|
|
1663
|
+
[[package]]
|
|
1664
|
+
name = "linux-raw-sys"
|
|
1665
|
+
version = "0.11.0"
|
|
1666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1667
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
1668
|
+
|
|
1669
|
+
[[package]]
|
|
1670
|
+
name = "litemap"
|
|
1671
|
+
version = "0.8.1"
|
|
1672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1673
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
1674
|
+
|
|
1675
|
+
[[package]]
|
|
1676
|
+
name = "lock_api"
|
|
1677
|
+
version = "0.4.14"
|
|
1678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1679
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1680
|
+
dependencies = [
|
|
1681
|
+
"scopeguard",
|
|
1682
|
+
]
|
|
1683
|
+
|
|
1684
|
+
[[package]]
|
|
1685
|
+
name = "log"
|
|
1686
|
+
version = "0.4.28"
|
|
1687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1688
|
+
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
|
|
1689
|
+
|
|
1690
|
+
[[package]]
|
|
1691
|
+
name = "lru-slab"
|
|
1692
|
+
version = "0.1.2"
|
|
1693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1694
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1695
|
+
|
|
1696
|
+
[[package]]
|
|
1697
|
+
name = "md-5"
|
|
1698
|
+
version = "0.10.6"
|
|
1699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1700
|
+
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
|
1701
|
+
dependencies = [
|
|
1702
|
+
"cfg-if",
|
|
1703
|
+
"digest",
|
|
1704
|
+
]
|
|
1705
|
+
|
|
1706
|
+
[[package]]
|
|
1707
|
+
name = "memchr"
|
|
1708
|
+
version = "2.7.6"
|
|
1709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
1711
|
+
|
|
1712
|
+
[[package]]
|
|
1713
|
+
name = "memoffset"
|
|
1714
|
+
version = "0.9.1"
|
|
1715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1717
|
+
dependencies = [
|
|
1718
|
+
"autocfg",
|
|
1719
|
+
]
|
|
1720
|
+
|
|
1721
|
+
[[package]]
|
|
1722
|
+
name = "mime"
|
|
1723
|
+
version = "0.3.17"
|
|
1724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1725
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1726
|
+
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "miniz_oxide"
|
|
1729
|
+
version = "0.8.9"
|
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1732
|
+
dependencies = [
|
|
1733
|
+
"adler2",
|
|
1734
|
+
"simd-adler32",
|
|
1735
|
+
]
|
|
1736
|
+
|
|
1737
|
+
[[package]]
|
|
1738
|
+
name = "mio"
|
|
1739
|
+
version = "1.1.0"
|
|
1740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1741
|
+
checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873"
|
|
1742
|
+
dependencies = [
|
|
1743
|
+
"libc",
|
|
1744
|
+
"wasi",
|
|
1745
|
+
"windows-sys 0.61.2",
|
|
1746
|
+
]
|
|
1747
|
+
|
|
1748
|
+
[[package]]
|
|
1749
|
+
name = "num-conv"
|
|
1750
|
+
version = "0.1.0"
|
|
1751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
1753
|
+
|
|
1754
|
+
[[package]]
|
|
1755
|
+
name = "num-traits"
|
|
1756
|
+
version = "0.2.19"
|
|
1757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1758
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1759
|
+
dependencies = [
|
|
1760
|
+
"autocfg",
|
|
1761
|
+
]
|
|
1762
|
+
|
|
1763
|
+
[[package]]
|
|
1764
|
+
name = "num_cpus"
|
|
1765
|
+
version = "1.17.0"
|
|
1766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1767
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
1768
|
+
dependencies = [
|
|
1769
|
+
"hermit-abi",
|
|
1770
|
+
"libc",
|
|
1771
|
+
]
|
|
1772
|
+
|
|
1773
|
+
[[package]]
|
|
1774
|
+
name = "num_threads"
|
|
1775
|
+
version = "0.1.7"
|
|
1776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1777
|
+
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
|
|
1778
|
+
dependencies = [
|
|
1779
|
+
"libc",
|
|
1780
|
+
]
|
|
1781
|
+
|
|
1782
|
+
[[package]]
|
|
1783
|
+
name = "once_cell"
|
|
1784
|
+
version = "1.21.3"
|
|
1785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1786
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1787
|
+
|
|
1788
|
+
[[package]]
|
|
1789
|
+
name = "once_cell_polyfill"
|
|
1790
|
+
version = "1.70.2"
|
|
1791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1792
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1793
|
+
|
|
1794
|
+
[[package]]
|
|
1795
|
+
name = "optfield"
|
|
1796
|
+
version = "0.4.0"
|
|
1797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1798
|
+
checksum = "969ccca8ffc4fb105bd131a228107d5c9dd89d9d627edf3295cbe979156f9712"
|
|
1799
|
+
dependencies = [
|
|
1800
|
+
"proc-macro2",
|
|
1801
|
+
"quote",
|
|
1802
|
+
"syn",
|
|
1803
|
+
]
|
|
1804
|
+
|
|
1805
|
+
[[package]]
|
|
1806
|
+
name = "option-ext"
|
|
1807
|
+
version = "0.2.0"
|
|
1808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1809
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
1810
|
+
|
|
1811
|
+
[[package]]
|
|
1812
|
+
name = "percent-encoding"
|
|
1813
|
+
version = "2.3.2"
|
|
1814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1815
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1816
|
+
|
|
1817
|
+
[[package]]
|
|
1818
|
+
name = "phf"
|
|
1819
|
+
version = "0.12.1"
|
|
1820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1821
|
+
checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
|
|
1822
|
+
dependencies = [
|
|
1823
|
+
"phf_macros",
|
|
1824
|
+
"phf_shared",
|
|
1825
|
+
]
|
|
1826
|
+
|
|
1827
|
+
[[package]]
|
|
1828
|
+
name = "phf_generator"
|
|
1829
|
+
version = "0.12.1"
|
|
1830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1831
|
+
checksum = "2cbb1126afed61dd6368748dae63b1ee7dc480191c6262a3b4ff1e29d86a6c5b"
|
|
1832
|
+
dependencies = [
|
|
1833
|
+
"fastrand",
|
|
1834
|
+
"phf_shared",
|
|
1835
|
+
]
|
|
1836
|
+
|
|
1837
|
+
[[package]]
|
|
1838
|
+
name = "phf_macros"
|
|
1839
|
+
version = "0.12.1"
|
|
1840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
|
+
checksum = "d713258393a82f091ead52047ca779d37e5766226d009de21696c4e667044368"
|
|
1842
|
+
dependencies = [
|
|
1843
|
+
"phf_generator",
|
|
1844
|
+
"phf_shared",
|
|
1845
|
+
"proc-macro2",
|
|
1846
|
+
"quote",
|
|
1847
|
+
"syn",
|
|
1848
|
+
]
|
|
1849
|
+
|
|
1850
|
+
[[package]]
|
|
1851
|
+
name = "phf_shared"
|
|
1852
|
+
version = "0.12.1"
|
|
1853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1854
|
+
checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
|
|
1855
|
+
dependencies = [
|
|
1856
|
+
"siphasher",
|
|
1857
|
+
]
|
|
1858
|
+
|
|
1859
|
+
[[package]]
|
|
1860
|
+
name = "pin-project-lite"
|
|
1861
|
+
version = "0.2.16"
|
|
1862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1863
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
1864
|
+
|
|
1865
|
+
[[package]]
|
|
1866
|
+
name = "pin-utils"
|
|
1867
|
+
version = "0.1.0"
|
|
1868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1869
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1870
|
+
|
|
1871
|
+
[[package]]
|
|
1872
|
+
name = "pkg-config"
|
|
1873
|
+
version = "0.3.32"
|
|
1874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1875
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
1876
|
+
|
|
1877
|
+
[[package]]
|
|
1878
|
+
name = "plain"
|
|
1879
|
+
version = "0.2.3"
|
|
1880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1881
|
+
checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
|
|
1882
|
+
|
|
1883
|
+
[[package]]
|
|
1884
|
+
name = "portable-atomic"
|
|
1885
|
+
version = "1.11.1"
|
|
1886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1887
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
1888
|
+
|
|
1889
|
+
[[package]]
|
|
1890
|
+
name = "potential_utf"
|
|
1891
|
+
version = "0.1.4"
|
|
1892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1893
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
1894
|
+
dependencies = [
|
|
1895
|
+
"zerovec",
|
|
1896
|
+
]
|
|
1897
|
+
|
|
1898
|
+
[[package]]
|
|
1899
|
+
name = "powerfmt"
|
|
1900
|
+
version = "0.2.0"
|
|
1901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1902
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1903
|
+
|
|
1904
|
+
[[package]]
|
|
1905
|
+
name = "ppv-lite86"
|
|
1906
|
+
version = "0.2.21"
|
|
1907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1908
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1909
|
+
dependencies = [
|
|
1910
|
+
"zerocopy",
|
|
1911
|
+
]
|
|
1912
|
+
|
|
1913
|
+
[[package]]
|
|
1914
|
+
name = "predicates"
|
|
1915
|
+
version = "3.1.3"
|
|
1916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1917
|
+
checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
|
|
1918
|
+
dependencies = [
|
|
1919
|
+
"anstyle",
|
|
1920
|
+
"difflib",
|
|
1921
|
+
"predicates-core",
|
|
1922
|
+
]
|
|
1923
|
+
|
|
1924
|
+
[[package]]
|
|
1925
|
+
name = "predicates-core"
|
|
1926
|
+
version = "1.0.9"
|
|
1927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1928
|
+
checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
|
|
1929
|
+
|
|
1930
|
+
[[package]]
|
|
1931
|
+
name = "predicates-tree"
|
|
1932
|
+
version = "1.0.12"
|
|
1933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1934
|
+
checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
|
|
1935
|
+
dependencies = [
|
|
1936
|
+
"predicates-core",
|
|
1937
|
+
"termtree",
|
|
1938
|
+
]
|
|
1939
|
+
|
|
1940
|
+
[[package]]
|
|
1941
|
+
name = "pretty_assertions"
|
|
1942
|
+
version = "1.4.1"
|
|
1943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1944
|
+
checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
|
1945
|
+
dependencies = [
|
|
1946
|
+
"diff",
|
|
1947
|
+
"yansi",
|
|
1948
|
+
]
|
|
1949
|
+
|
|
1950
|
+
[[package]]
|
|
1951
|
+
name = "proc-macro-crate"
|
|
1952
|
+
version = "3.4.0"
|
|
1953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1954
|
+
checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
|
|
1955
|
+
dependencies = [
|
|
1956
|
+
"toml_edit",
|
|
1957
|
+
]
|
|
1958
|
+
|
|
1959
|
+
[[package]]
|
|
1960
|
+
name = "proc-macro-hack"
|
|
1961
|
+
version = "0.5.20+deprecated"
|
|
1962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1963
|
+
checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
|
|
1964
|
+
|
|
1965
|
+
[[package]]
|
|
1966
|
+
name = "proc-macro2"
|
|
1967
|
+
version = "1.0.103"
|
|
1968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1969
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
1970
|
+
dependencies = [
|
|
1971
|
+
"unicode-ident",
|
|
1972
|
+
]
|
|
1973
|
+
|
|
1974
|
+
[[package]]
|
|
1975
|
+
name = "proptest"
|
|
1976
|
+
version = "1.9.0"
|
|
1977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1978
|
+
checksum = "bee689443a2bd0a16ab0348b52ee43e3b2d1b1f931c8aa5c9f8de4c86fbe8c40"
|
|
1979
|
+
dependencies = [
|
|
1980
|
+
"bit-set",
|
|
1981
|
+
"bit-vec",
|
|
1982
|
+
"bitflags",
|
|
1983
|
+
"num-traits",
|
|
1984
|
+
"rand",
|
|
1985
|
+
"rand_chacha",
|
|
1986
|
+
"rand_xorshift",
|
|
1987
|
+
"regex-syntax",
|
|
1988
|
+
"rusty-fork",
|
|
1989
|
+
"tempfile",
|
|
1990
|
+
"unarray",
|
|
1991
|
+
]
|
|
1992
|
+
|
|
1993
|
+
[[package]]
|
|
1994
|
+
name = "pyo3"
|
|
1995
|
+
version = "0.27.1"
|
|
1996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1997
|
+
checksum = "37a6df7eab65fc7bee654a421404947e10a0f7085b6951bf2ea395f4659fb0cf"
|
|
1998
|
+
dependencies = [
|
|
1999
|
+
"indoc",
|
|
2000
|
+
"libc",
|
|
2001
|
+
"memoffset",
|
|
2002
|
+
"once_cell",
|
|
2003
|
+
"portable-atomic",
|
|
2004
|
+
"pyo3-build-config",
|
|
2005
|
+
"pyo3-ffi",
|
|
2006
|
+
"pyo3-macros",
|
|
2007
|
+
"unindent",
|
|
2008
|
+
]
|
|
2009
|
+
|
|
2010
|
+
[[package]]
|
|
2011
|
+
name = "pyo3-build-config"
|
|
2012
|
+
version = "0.27.1"
|
|
2013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2014
|
+
checksum = "f77d387774f6f6eec64a004eac0ed525aab7fa1966d94b42f743797b3e395afb"
|
|
2015
|
+
dependencies = [
|
|
2016
|
+
"target-lexicon",
|
|
2017
|
+
]
|
|
2018
|
+
|
|
2019
|
+
[[package]]
|
|
2020
|
+
name = "pyo3-ffi"
|
|
2021
|
+
version = "0.27.1"
|
|
2022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2023
|
+
checksum = "2dd13844a4242793e02df3e2ec093f540d948299a6a77ea9ce7afd8623f542be"
|
|
2024
|
+
dependencies = [
|
|
2025
|
+
"libc",
|
|
2026
|
+
"pyo3-build-config",
|
|
2027
|
+
]
|
|
2028
|
+
|
|
2029
|
+
[[package]]
|
|
2030
|
+
name = "pyo3-macros"
|
|
2031
|
+
version = "0.27.1"
|
|
2032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2033
|
+
checksum = "eaf8f9f1108270b90d3676b8679586385430e5c0bb78bb5f043f95499c821a71"
|
|
2034
|
+
dependencies = [
|
|
2035
|
+
"proc-macro2",
|
|
2036
|
+
"pyo3-macros-backend",
|
|
2037
|
+
"quote",
|
|
2038
|
+
"syn",
|
|
2039
|
+
]
|
|
2040
|
+
|
|
2041
|
+
[[package]]
|
|
2042
|
+
name = "pyo3-macros-backend"
|
|
2043
|
+
version = "0.27.1"
|
|
2044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2045
|
+
checksum = "70a3b2274450ba5288bc9b8c1b69ff569d1d61189d4bff38f8d22e03d17f932b"
|
|
2046
|
+
dependencies = [
|
|
2047
|
+
"heck",
|
|
2048
|
+
"proc-macro2",
|
|
2049
|
+
"pyo3-build-config",
|
|
2050
|
+
"quote",
|
|
2051
|
+
"syn",
|
|
2052
|
+
]
|
|
2053
|
+
|
|
2054
|
+
[[package]]
|
|
2055
|
+
name = "python-alpm"
|
|
2056
|
+
version = "0.2.0"
|
|
2057
|
+
dependencies = [
|
|
2058
|
+
"alpm-common",
|
|
2059
|
+
"alpm-srcinfo",
|
|
2060
|
+
"alpm-types",
|
|
2061
|
+
"pyo3",
|
|
2062
|
+
"semver",
|
|
2063
|
+
"strum",
|
|
2064
|
+
]
|
|
2065
|
+
|
|
2066
|
+
[[package]]
|
|
2067
|
+
name = "quick-error"
|
|
2068
|
+
version = "1.2.3"
|
|
2069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2070
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
2071
|
+
|
|
2072
|
+
[[package]]
|
|
2073
|
+
name = "quinn"
|
|
2074
|
+
version = "0.11.9"
|
|
2075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2076
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
2077
|
+
dependencies = [
|
|
2078
|
+
"bytes",
|
|
2079
|
+
"cfg_aliases",
|
|
2080
|
+
"pin-project-lite",
|
|
2081
|
+
"quinn-proto",
|
|
2082
|
+
"quinn-udp",
|
|
2083
|
+
"rustc-hash",
|
|
2084
|
+
"rustls",
|
|
2085
|
+
"socket2",
|
|
2086
|
+
"thiserror",
|
|
2087
|
+
"tokio",
|
|
2088
|
+
"tracing",
|
|
2089
|
+
"web-time",
|
|
2090
|
+
]
|
|
2091
|
+
|
|
2092
|
+
[[package]]
|
|
2093
|
+
name = "quinn-proto"
|
|
2094
|
+
version = "0.11.13"
|
|
2095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2096
|
+
checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
|
|
2097
|
+
dependencies = [
|
|
2098
|
+
"bytes",
|
|
2099
|
+
"getrandom 0.3.4",
|
|
2100
|
+
"lru-slab",
|
|
2101
|
+
"rand",
|
|
2102
|
+
"ring",
|
|
2103
|
+
"rustc-hash",
|
|
2104
|
+
"rustls",
|
|
2105
|
+
"rustls-pki-types",
|
|
2106
|
+
"slab",
|
|
2107
|
+
"thiserror",
|
|
2108
|
+
"tinyvec",
|
|
2109
|
+
"tracing",
|
|
2110
|
+
"web-time",
|
|
2111
|
+
]
|
|
2112
|
+
|
|
2113
|
+
[[package]]
|
|
2114
|
+
name = "quinn-udp"
|
|
2115
|
+
version = "0.5.14"
|
|
2116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2117
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
2118
|
+
dependencies = [
|
|
2119
|
+
"cfg_aliases",
|
|
2120
|
+
"libc",
|
|
2121
|
+
"once_cell",
|
|
2122
|
+
"socket2",
|
|
2123
|
+
"tracing",
|
|
2124
|
+
"windows-sys 0.60.2",
|
|
2125
|
+
]
|
|
2126
|
+
|
|
2127
|
+
[[package]]
|
|
2128
|
+
name = "quote"
|
|
2129
|
+
version = "1.0.41"
|
|
2130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2131
|
+
checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
|
|
2132
|
+
dependencies = [
|
|
2133
|
+
"proc-macro2",
|
|
2134
|
+
]
|
|
2135
|
+
|
|
2136
|
+
[[package]]
|
|
2137
|
+
name = "r-efi"
|
|
2138
|
+
version = "5.3.0"
|
|
2139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2140
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2141
|
+
|
|
2142
|
+
[[package]]
|
|
2143
|
+
name = "rand"
|
|
2144
|
+
version = "0.9.2"
|
|
2145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2146
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
2147
|
+
dependencies = [
|
|
2148
|
+
"rand_chacha",
|
|
2149
|
+
"rand_core",
|
|
2150
|
+
]
|
|
2151
|
+
|
|
2152
|
+
[[package]]
|
|
2153
|
+
name = "rand_chacha"
|
|
2154
|
+
version = "0.9.0"
|
|
2155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2156
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2157
|
+
dependencies = [
|
|
2158
|
+
"ppv-lite86",
|
|
2159
|
+
"rand_core",
|
|
2160
|
+
]
|
|
2161
|
+
|
|
2162
|
+
[[package]]
|
|
2163
|
+
name = "rand_core"
|
|
2164
|
+
version = "0.9.3"
|
|
2165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2166
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
2167
|
+
dependencies = [
|
|
2168
|
+
"getrandom 0.3.4",
|
|
2169
|
+
]
|
|
2170
|
+
|
|
2171
|
+
[[package]]
|
|
2172
|
+
name = "rand_xorshift"
|
|
2173
|
+
version = "0.4.0"
|
|
2174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2175
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
2176
|
+
dependencies = [
|
|
2177
|
+
"rand_core",
|
|
2178
|
+
]
|
|
2179
|
+
|
|
2180
|
+
[[package]]
|
|
2181
|
+
name = "rayon"
|
|
2182
|
+
version = "1.11.0"
|
|
2183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2184
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
2185
|
+
dependencies = [
|
|
2186
|
+
"either",
|
|
2187
|
+
"rayon-core",
|
|
2188
|
+
]
|
|
2189
|
+
|
|
2190
|
+
[[package]]
|
|
2191
|
+
name = "rayon-core"
|
|
2192
|
+
version = "1.13.0"
|
|
2193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2194
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
2195
|
+
dependencies = [
|
|
2196
|
+
"crossbeam-deque",
|
|
2197
|
+
"crossbeam-utils",
|
|
2198
|
+
]
|
|
2199
|
+
|
|
2200
|
+
[[package]]
|
|
2201
|
+
name = "redox_syscall"
|
|
2202
|
+
version = "0.5.18"
|
|
2203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2204
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
2205
|
+
dependencies = [
|
|
2206
|
+
"bitflags",
|
|
2207
|
+
]
|
|
2208
|
+
|
|
2209
|
+
[[package]]
|
|
2210
|
+
name = "redox_users"
|
|
2211
|
+
version = "0.5.2"
|
|
2212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2213
|
+
checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
|
|
2214
|
+
dependencies = [
|
|
2215
|
+
"getrandom 0.2.16",
|
|
2216
|
+
"libredox",
|
|
2217
|
+
"thiserror",
|
|
2218
|
+
]
|
|
2219
|
+
|
|
2220
|
+
[[package]]
|
|
2221
|
+
name = "ref-cast"
|
|
2222
|
+
version = "1.0.25"
|
|
2223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2224
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
2225
|
+
dependencies = [
|
|
2226
|
+
"ref-cast-impl",
|
|
2227
|
+
]
|
|
2228
|
+
|
|
2229
|
+
[[package]]
|
|
2230
|
+
name = "ref-cast-impl"
|
|
2231
|
+
version = "1.0.25"
|
|
2232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2233
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
2234
|
+
dependencies = [
|
|
2235
|
+
"proc-macro2",
|
|
2236
|
+
"quote",
|
|
2237
|
+
"syn",
|
|
2238
|
+
]
|
|
2239
|
+
|
|
2240
|
+
[[package]]
|
|
2241
|
+
name = "regex"
|
|
2242
|
+
version = "1.12.2"
|
|
2243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2244
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
2245
|
+
dependencies = [
|
|
2246
|
+
"aho-corasick",
|
|
2247
|
+
"memchr",
|
|
2248
|
+
"regex-automata",
|
|
2249
|
+
"regex-syntax",
|
|
2250
|
+
]
|
|
2251
|
+
|
|
2252
|
+
[[package]]
|
|
2253
|
+
name = "regex-automata"
|
|
2254
|
+
version = "0.4.13"
|
|
2255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2256
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
2257
|
+
dependencies = [
|
|
2258
|
+
"aho-corasick",
|
|
2259
|
+
"memchr",
|
|
2260
|
+
"regex-syntax",
|
|
2261
|
+
]
|
|
2262
|
+
|
|
2263
|
+
[[package]]
|
|
2264
|
+
name = "regex-syntax"
|
|
2265
|
+
version = "0.8.8"
|
|
2266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2267
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
2268
|
+
|
|
2269
|
+
[[package]]
|
|
2270
|
+
name = "relative-path"
|
|
2271
|
+
version = "1.9.3"
|
|
2272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2273
|
+
checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
|
|
2274
|
+
|
|
2275
|
+
[[package]]
|
|
2276
|
+
name = "reqwest"
|
|
2277
|
+
version = "0.12.24"
|
|
2278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2279
|
+
checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f"
|
|
2280
|
+
dependencies = [
|
|
2281
|
+
"base64",
|
|
2282
|
+
"bytes",
|
|
2283
|
+
"encoding_rs",
|
|
2284
|
+
"futures-channel",
|
|
2285
|
+
"futures-core",
|
|
2286
|
+
"futures-util",
|
|
2287
|
+
"h2",
|
|
2288
|
+
"http",
|
|
2289
|
+
"http-body",
|
|
2290
|
+
"http-body-util",
|
|
2291
|
+
"hyper",
|
|
2292
|
+
"hyper-rustls",
|
|
2293
|
+
"hyper-util",
|
|
2294
|
+
"js-sys",
|
|
2295
|
+
"log",
|
|
2296
|
+
"mime",
|
|
2297
|
+
"percent-encoding",
|
|
2298
|
+
"pin-project-lite",
|
|
2299
|
+
"quinn",
|
|
2300
|
+
"rustls",
|
|
2301
|
+
"rustls-pki-types",
|
|
2302
|
+
"serde",
|
|
2303
|
+
"serde_json",
|
|
2304
|
+
"serde_urlencoded",
|
|
2305
|
+
"sync_wrapper",
|
|
2306
|
+
"tokio",
|
|
2307
|
+
"tokio-rustls",
|
|
2308
|
+
"tower",
|
|
2309
|
+
"tower-http",
|
|
2310
|
+
"tower-service",
|
|
2311
|
+
"url",
|
|
2312
|
+
"wasm-bindgen",
|
|
2313
|
+
"wasm-bindgen-futures",
|
|
2314
|
+
"web-sys",
|
|
2315
|
+
"webpki-roots",
|
|
2316
|
+
]
|
|
2317
|
+
|
|
2318
|
+
[[package]]
|
|
2319
|
+
name = "ring"
|
|
2320
|
+
version = "0.17.14"
|
|
2321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2322
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2323
|
+
dependencies = [
|
|
2324
|
+
"cc",
|
|
2325
|
+
"cfg-if",
|
|
2326
|
+
"getrandom 0.2.16",
|
|
2327
|
+
"libc",
|
|
2328
|
+
"untrusted",
|
|
2329
|
+
"windows-sys 0.52.0",
|
|
2330
|
+
]
|
|
2331
|
+
|
|
2332
|
+
[[package]]
|
|
2333
|
+
name = "rstest"
|
|
2334
|
+
version = "0.26.1"
|
|
2335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2336
|
+
checksum = "f5a3193c063baaa2a95a33f03035c8a72b83d97a54916055ba22d35ed3839d49"
|
|
2337
|
+
dependencies = [
|
|
2338
|
+
"futures-timer",
|
|
2339
|
+
"futures-util",
|
|
2340
|
+
"rstest_macros",
|
|
2341
|
+
]
|
|
2342
|
+
|
|
2343
|
+
[[package]]
|
|
2344
|
+
name = "rstest_macros"
|
|
2345
|
+
version = "0.26.1"
|
|
2346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2347
|
+
checksum = "9c845311f0ff7951c5506121a9ad75aec44d083c31583b2ea5a30bcb0b0abba0"
|
|
2348
|
+
dependencies = [
|
|
2349
|
+
"cfg-if",
|
|
2350
|
+
"glob",
|
|
2351
|
+
"proc-macro-crate",
|
|
2352
|
+
"proc-macro2",
|
|
2353
|
+
"quote",
|
|
2354
|
+
"regex",
|
|
2355
|
+
"relative-path",
|
|
2356
|
+
"rustc_version",
|
|
2357
|
+
"syn",
|
|
2358
|
+
"unicode-ident",
|
|
2359
|
+
]
|
|
2360
|
+
|
|
2361
|
+
[[package]]
|
|
2362
|
+
name = "rustc-hash"
|
|
2363
|
+
version = "2.1.1"
|
|
2364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2365
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
2366
|
+
|
|
2367
|
+
[[package]]
|
|
2368
|
+
name = "rustc_version"
|
|
2369
|
+
version = "0.4.1"
|
|
2370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2371
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2372
|
+
dependencies = [
|
|
2373
|
+
"semver",
|
|
2374
|
+
]
|
|
2375
|
+
|
|
2376
|
+
[[package]]
|
|
2377
|
+
name = "rustix"
|
|
2378
|
+
version = "1.1.2"
|
|
2379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2380
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
2381
|
+
dependencies = [
|
|
2382
|
+
"bitflags",
|
|
2383
|
+
"errno",
|
|
2384
|
+
"libc",
|
|
2385
|
+
"linux-raw-sys",
|
|
2386
|
+
"windows-sys 0.61.2",
|
|
2387
|
+
]
|
|
2388
|
+
|
|
2389
|
+
[[package]]
|
|
2390
|
+
name = "rustls"
|
|
2391
|
+
version = "0.23.34"
|
|
2392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2393
|
+
checksum = "6a9586e9ee2b4f8fab52a0048ca7334d7024eef48e2cb9407e3497bb7cab7fa7"
|
|
2394
|
+
dependencies = [
|
|
2395
|
+
"once_cell",
|
|
2396
|
+
"ring",
|
|
2397
|
+
"rustls-pki-types",
|
|
2398
|
+
"rustls-webpki",
|
|
2399
|
+
"subtle",
|
|
2400
|
+
"zeroize",
|
|
2401
|
+
]
|
|
2402
|
+
|
|
2403
|
+
[[package]]
|
|
2404
|
+
name = "rustls-pki-types"
|
|
2405
|
+
version = "1.13.0"
|
|
2406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2407
|
+
checksum = "94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a"
|
|
2408
|
+
dependencies = [
|
|
2409
|
+
"web-time",
|
|
2410
|
+
"zeroize",
|
|
2411
|
+
]
|
|
2412
|
+
|
|
2413
|
+
[[package]]
|
|
2414
|
+
name = "rustls-webpki"
|
|
2415
|
+
version = "0.103.8"
|
|
2416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2417
|
+
checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
|
|
2418
|
+
dependencies = [
|
|
2419
|
+
"ring",
|
|
2420
|
+
"rustls-pki-types",
|
|
2421
|
+
"untrusted",
|
|
2422
|
+
]
|
|
2423
|
+
|
|
2424
|
+
[[package]]
|
|
2425
|
+
name = "rustversion"
|
|
2426
|
+
version = "1.0.22"
|
|
2427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2428
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2429
|
+
|
|
2430
|
+
[[package]]
|
|
2431
|
+
name = "rusty-fork"
|
|
2432
|
+
version = "0.3.1"
|
|
2433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2434
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
2435
|
+
dependencies = [
|
|
2436
|
+
"fnv",
|
|
2437
|
+
"quick-error",
|
|
2438
|
+
"tempfile",
|
|
2439
|
+
"wait-timeout",
|
|
2440
|
+
]
|
|
2441
|
+
|
|
2442
|
+
[[package]]
|
|
2443
|
+
name = "ryu"
|
|
2444
|
+
version = "1.0.20"
|
|
2445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2446
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
2447
|
+
|
|
2448
|
+
[[package]]
|
|
2449
|
+
name = "same-file"
|
|
2450
|
+
version = "1.0.6"
|
|
2451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2452
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2453
|
+
dependencies = [
|
|
2454
|
+
"winapi-util",
|
|
2455
|
+
]
|
|
2456
|
+
|
|
2457
|
+
[[package]]
|
|
2458
|
+
name = "schemars"
|
|
2459
|
+
version = "0.9.0"
|
|
2460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2461
|
+
checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
|
|
2462
|
+
dependencies = [
|
|
2463
|
+
"dyn-clone",
|
|
2464
|
+
"ref-cast",
|
|
2465
|
+
"serde",
|
|
2466
|
+
"serde_json",
|
|
2467
|
+
]
|
|
2468
|
+
|
|
2469
|
+
[[package]]
|
|
2470
|
+
name = "schemars"
|
|
2471
|
+
version = "1.0.4"
|
|
2472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2473
|
+
checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0"
|
|
2474
|
+
dependencies = [
|
|
2475
|
+
"dyn-clone",
|
|
2476
|
+
"ref-cast",
|
|
2477
|
+
"serde",
|
|
2478
|
+
"serde_json",
|
|
2479
|
+
]
|
|
2480
|
+
|
|
2481
|
+
[[package]]
|
|
2482
|
+
name = "scopeguard"
|
|
2483
|
+
version = "1.2.0"
|
|
2484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2485
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2486
|
+
|
|
2487
|
+
[[package]]
|
|
2488
|
+
name = "scroll"
|
|
2489
|
+
version = "0.13.0"
|
|
2490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2491
|
+
checksum = "c1257cd4248b4132760d6524d6dda4e053bc648c9070b960929bf50cfb1e7add"
|
|
2492
|
+
dependencies = [
|
|
2493
|
+
"scroll_derive",
|
|
2494
|
+
]
|
|
2495
|
+
|
|
2496
|
+
[[package]]
|
|
2497
|
+
name = "scroll_derive"
|
|
2498
|
+
version = "0.13.1"
|
|
2499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2500
|
+
checksum = "ed76efe62313ab6610570951494bdaa81568026e0318eaa55f167de70eeea67d"
|
|
2501
|
+
dependencies = [
|
|
2502
|
+
"proc-macro2",
|
|
2503
|
+
"quote",
|
|
2504
|
+
"syn",
|
|
2505
|
+
]
|
|
2506
|
+
|
|
2507
|
+
[[package]]
|
|
2508
|
+
name = "self_cell"
|
|
2509
|
+
version = "1.2.1"
|
|
2510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2511
|
+
checksum = "16c2f82143577edb4921b71ede051dac62ca3c16084e918bf7b40c96ae10eb33"
|
|
2512
|
+
|
|
2513
|
+
[[package]]
|
|
2514
|
+
name = "semver"
|
|
2515
|
+
version = "1.0.27"
|
|
2516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2517
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
2518
|
+
|
|
2519
|
+
[[package]]
|
|
2520
|
+
name = "serde"
|
|
2521
|
+
version = "1.0.228"
|
|
2522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2523
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2524
|
+
dependencies = [
|
|
2525
|
+
"serde_core",
|
|
2526
|
+
"serde_derive",
|
|
2527
|
+
]
|
|
2528
|
+
|
|
2529
|
+
[[package]]
|
|
2530
|
+
name = "serde_core"
|
|
2531
|
+
version = "1.0.228"
|
|
2532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2533
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2534
|
+
dependencies = [
|
|
2535
|
+
"serde_derive",
|
|
2536
|
+
]
|
|
2537
|
+
|
|
2538
|
+
[[package]]
|
|
2539
|
+
name = "serde_derive"
|
|
2540
|
+
version = "1.0.228"
|
|
2541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2542
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2543
|
+
dependencies = [
|
|
2544
|
+
"proc-macro2",
|
|
2545
|
+
"quote",
|
|
2546
|
+
"syn",
|
|
2547
|
+
]
|
|
2548
|
+
|
|
2549
|
+
[[package]]
|
|
2550
|
+
name = "serde_json"
|
|
2551
|
+
version = "1.0.145"
|
|
2552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2553
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
2554
|
+
dependencies = [
|
|
2555
|
+
"itoa",
|
|
2556
|
+
"memchr",
|
|
2557
|
+
"ryu",
|
|
2558
|
+
"serde",
|
|
2559
|
+
"serde_core",
|
|
2560
|
+
]
|
|
2561
|
+
|
|
2562
|
+
[[package]]
|
|
2563
|
+
name = "serde_spanned"
|
|
2564
|
+
version = "1.0.3"
|
|
2565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2566
|
+
checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392"
|
|
2567
|
+
dependencies = [
|
|
2568
|
+
"serde_core",
|
|
2569
|
+
]
|
|
2570
|
+
|
|
2571
|
+
[[package]]
|
|
2572
|
+
name = "serde_urlencoded"
|
|
2573
|
+
version = "0.7.1"
|
|
2574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2575
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
2576
|
+
dependencies = [
|
|
2577
|
+
"form_urlencoded",
|
|
2578
|
+
"itoa",
|
|
2579
|
+
"ryu",
|
|
2580
|
+
"serde",
|
|
2581
|
+
]
|
|
2582
|
+
|
|
2583
|
+
[[package]]
|
|
2584
|
+
name = "serde_with"
|
|
2585
|
+
version = "3.15.1"
|
|
2586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2587
|
+
checksum = "aa66c845eee442168b2c8134fec70ac50dc20e760769c8ba0ad1319ca1959b04"
|
|
2588
|
+
dependencies = [
|
|
2589
|
+
"base64",
|
|
2590
|
+
"chrono",
|
|
2591
|
+
"hex",
|
|
2592
|
+
"indexmap 1.9.3",
|
|
2593
|
+
"indexmap 2.12.0",
|
|
2594
|
+
"schemars 0.9.0",
|
|
2595
|
+
"schemars 1.0.4",
|
|
2596
|
+
"serde_core",
|
|
2597
|
+
"serde_json",
|
|
2598
|
+
"serde_with_macros",
|
|
2599
|
+
"time",
|
|
2600
|
+
]
|
|
2601
|
+
|
|
2602
|
+
[[package]]
|
|
2603
|
+
name = "serde_with_macros"
|
|
2604
|
+
version = "3.15.1"
|
|
2605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2606
|
+
checksum = "b91a903660542fced4e99881aa481bdbaec1634568ee02e0b8bd57c64cb38955"
|
|
2607
|
+
dependencies = [
|
|
2608
|
+
"darling",
|
|
2609
|
+
"proc-macro2",
|
|
2610
|
+
"quote",
|
|
2611
|
+
"syn",
|
|
2612
|
+
]
|
|
2613
|
+
|
|
2614
|
+
[[package]]
|
|
2615
|
+
name = "sha1"
|
|
2616
|
+
version = "0.10.6"
|
|
2617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2618
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
2619
|
+
dependencies = [
|
|
2620
|
+
"cfg-if",
|
|
2621
|
+
"cpufeatures",
|
|
2622
|
+
"digest",
|
|
2623
|
+
]
|
|
2624
|
+
|
|
2625
|
+
[[package]]
|
|
2626
|
+
name = "sha2"
|
|
2627
|
+
version = "0.10.9"
|
|
2628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2629
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
2630
|
+
dependencies = [
|
|
2631
|
+
"cfg-if",
|
|
2632
|
+
"cpufeatures",
|
|
2633
|
+
"digest",
|
|
2634
|
+
]
|
|
2635
|
+
|
|
2636
|
+
[[package]]
|
|
2637
|
+
name = "shlex"
|
|
2638
|
+
version = "1.3.0"
|
|
2639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2640
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2641
|
+
|
|
2642
|
+
[[package]]
|
|
2643
|
+
name = "simd-adler32"
|
|
2644
|
+
version = "0.3.7"
|
|
2645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2646
|
+
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
2647
|
+
|
|
2648
|
+
[[package]]
|
|
2649
|
+
name = "similar"
|
|
2650
|
+
version = "2.7.0"
|
|
2651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2652
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
2653
|
+
|
|
2654
|
+
[[package]]
|
|
2655
|
+
name = "simplelog"
|
|
2656
|
+
version = "0.12.2"
|
|
2657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2658
|
+
checksum = "16257adbfaef1ee58b1363bdc0664c9b8e1e30aed86049635fb5f147d065a9c0"
|
|
2659
|
+
dependencies = [
|
|
2660
|
+
"log",
|
|
2661
|
+
"termcolor",
|
|
2662
|
+
"time",
|
|
2663
|
+
]
|
|
2664
|
+
|
|
2665
|
+
[[package]]
|
|
2666
|
+
name = "siphasher"
|
|
2667
|
+
version = "1.0.1"
|
|
2668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2669
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
2670
|
+
|
|
2671
|
+
[[package]]
|
|
2672
|
+
name = "slab"
|
|
2673
|
+
version = "0.4.11"
|
|
2674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2675
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
2676
|
+
|
|
2677
|
+
[[package]]
|
|
2678
|
+
name = "smallvec"
|
|
2679
|
+
version = "1.15.1"
|
|
2680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2681
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2682
|
+
|
|
2683
|
+
[[package]]
|
|
2684
|
+
name = "socket2"
|
|
2685
|
+
version = "0.6.1"
|
|
2686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2687
|
+
checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
|
|
2688
|
+
dependencies = [
|
|
2689
|
+
"libc",
|
|
2690
|
+
"windows-sys 0.60.2",
|
|
2691
|
+
]
|
|
2692
|
+
|
|
2693
|
+
[[package]]
|
|
2694
|
+
name = "spdx"
|
|
2695
|
+
version = "0.12.0"
|
|
2696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2697
|
+
checksum = "41cf87c0efffc158b9dde4d6e0567a43e4383adc4c949e687a2039732db2f23a"
|
|
2698
|
+
dependencies = [
|
|
2699
|
+
"smallvec",
|
|
2700
|
+
]
|
|
2701
|
+
|
|
2702
|
+
[[package]]
|
|
2703
|
+
name = "spin"
|
|
2704
|
+
version = "0.9.8"
|
|
2705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2706
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
2707
|
+
dependencies = [
|
|
2708
|
+
"lock_api",
|
|
2709
|
+
]
|
|
2710
|
+
|
|
2711
|
+
[[package]]
|
|
2712
|
+
name = "stable_deref_trait"
|
|
2713
|
+
version = "1.2.1"
|
|
2714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2715
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2716
|
+
|
|
2717
|
+
[[package]]
|
|
2718
|
+
name = "strsim"
|
|
2719
|
+
version = "0.11.1"
|
|
2720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2721
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2722
|
+
|
|
2723
|
+
[[package]]
|
|
2724
|
+
name = "strum"
|
|
2725
|
+
version = "0.27.2"
|
|
2726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2727
|
+
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
|
2728
|
+
dependencies = [
|
|
2729
|
+
"strum_macros",
|
|
2730
|
+
]
|
|
2731
|
+
|
|
2732
|
+
[[package]]
|
|
2733
|
+
name = "strum_macros"
|
|
2734
|
+
version = "0.27.2"
|
|
2735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2736
|
+
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
|
|
2737
|
+
dependencies = [
|
|
2738
|
+
"heck",
|
|
2739
|
+
"proc-macro2",
|
|
2740
|
+
"quote",
|
|
2741
|
+
"syn",
|
|
2742
|
+
]
|
|
2743
|
+
|
|
2744
|
+
[[package]]
|
|
2745
|
+
name = "subtle"
|
|
2746
|
+
version = "2.6.1"
|
|
2747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2748
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2749
|
+
|
|
2750
|
+
[[package]]
|
|
2751
|
+
name = "syn"
|
|
2752
|
+
version = "2.0.108"
|
|
2753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2754
|
+
checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917"
|
|
2755
|
+
dependencies = [
|
|
2756
|
+
"proc-macro2",
|
|
2757
|
+
"quote",
|
|
2758
|
+
"unicode-ident",
|
|
2759
|
+
]
|
|
2760
|
+
|
|
2761
|
+
[[package]]
|
|
2762
|
+
name = "sync_wrapper"
|
|
2763
|
+
version = "1.0.2"
|
|
2764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2765
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
2766
|
+
dependencies = [
|
|
2767
|
+
"futures-core",
|
|
2768
|
+
]
|
|
2769
|
+
|
|
2770
|
+
[[package]]
|
|
2771
|
+
name = "synstructure"
|
|
2772
|
+
version = "0.13.2"
|
|
2773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2774
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2775
|
+
dependencies = [
|
|
2776
|
+
"proc-macro2",
|
|
2777
|
+
"quote",
|
|
2778
|
+
"syn",
|
|
2779
|
+
]
|
|
2780
|
+
|
|
2781
|
+
[[package]]
|
|
2782
|
+
name = "sys-locale"
|
|
2783
|
+
version = "0.3.2"
|
|
2784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2785
|
+
checksum = "8eab9a99a024a169fe8a903cf9d4a3b3601109bcc13bd9e3c6fff259138626c4"
|
|
2786
|
+
dependencies = [
|
|
2787
|
+
"libc",
|
|
2788
|
+
]
|
|
2789
|
+
|
|
2790
|
+
[[package]]
|
|
2791
|
+
name = "tar"
|
|
2792
|
+
version = "0.4.44"
|
|
2793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2794
|
+
checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
|
|
2795
|
+
dependencies = [
|
|
2796
|
+
"filetime",
|
|
2797
|
+
"libc",
|
|
2798
|
+
"xattr",
|
|
2799
|
+
]
|
|
2800
|
+
|
|
2801
|
+
[[package]]
|
|
2802
|
+
name = "target-lexicon"
|
|
2803
|
+
version = "0.13.3"
|
|
2804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2805
|
+
checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
|
|
2806
|
+
|
|
2807
|
+
[[package]]
|
|
2808
|
+
name = "tempfile"
|
|
2809
|
+
version = "3.23.0"
|
|
2810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2811
|
+
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
|
2812
|
+
dependencies = [
|
|
2813
|
+
"fastrand",
|
|
2814
|
+
"getrandom 0.3.4",
|
|
2815
|
+
"once_cell",
|
|
2816
|
+
"rustix",
|
|
2817
|
+
"windows-sys 0.61.2",
|
|
2818
|
+
]
|
|
2819
|
+
|
|
2820
|
+
[[package]]
|
|
2821
|
+
name = "termcolor"
|
|
2822
|
+
version = "1.4.1"
|
|
2823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2824
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
2825
|
+
dependencies = [
|
|
2826
|
+
"winapi-util",
|
|
2827
|
+
]
|
|
2828
|
+
|
|
2829
|
+
[[package]]
|
|
2830
|
+
name = "terminal_size"
|
|
2831
|
+
version = "0.4.3"
|
|
2832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2833
|
+
checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0"
|
|
2834
|
+
dependencies = [
|
|
2835
|
+
"rustix",
|
|
2836
|
+
"windows-sys 0.60.2",
|
|
2837
|
+
]
|
|
2838
|
+
|
|
2839
|
+
[[package]]
|
|
2840
|
+
name = "termtree"
|
|
2841
|
+
version = "0.5.1"
|
|
2842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2843
|
+
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
|
2844
|
+
|
|
2845
|
+
[[package]]
|
|
2846
|
+
name = "testresult"
|
|
2847
|
+
version = "0.4.1"
|
|
2848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2849
|
+
checksum = "614b328ff036a4ef882c61570f72918f7e9c5bee1da33f8e7f91e01daee7e56c"
|
|
2850
|
+
|
|
2851
|
+
[[package]]
|
|
2852
|
+
name = "thiserror"
|
|
2853
|
+
version = "2.0.17"
|
|
2854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2855
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
2856
|
+
dependencies = [
|
|
2857
|
+
"thiserror-impl",
|
|
2858
|
+
]
|
|
2859
|
+
|
|
2860
|
+
[[package]]
|
|
2861
|
+
name = "thiserror-impl"
|
|
2862
|
+
version = "2.0.17"
|
|
2863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2864
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
2865
|
+
dependencies = [
|
|
2866
|
+
"proc-macro2",
|
|
2867
|
+
"quote",
|
|
2868
|
+
"syn",
|
|
2869
|
+
]
|
|
2870
|
+
|
|
2871
|
+
[[package]]
|
|
2872
|
+
name = "time"
|
|
2873
|
+
version = "0.3.44"
|
|
2874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2875
|
+
checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
|
|
2876
|
+
dependencies = [
|
|
2877
|
+
"deranged",
|
|
2878
|
+
"itoa",
|
|
2879
|
+
"libc",
|
|
2880
|
+
"num-conv",
|
|
2881
|
+
"num_threads",
|
|
2882
|
+
"powerfmt",
|
|
2883
|
+
"serde",
|
|
2884
|
+
"time-core",
|
|
2885
|
+
"time-macros",
|
|
2886
|
+
]
|
|
2887
|
+
|
|
2888
|
+
[[package]]
|
|
2889
|
+
name = "time-core"
|
|
2890
|
+
version = "0.1.6"
|
|
2891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2892
|
+
checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
|
|
2893
|
+
|
|
2894
|
+
[[package]]
|
|
2895
|
+
name = "time-macros"
|
|
2896
|
+
version = "0.2.24"
|
|
2897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2898
|
+
checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
|
|
2899
|
+
dependencies = [
|
|
2900
|
+
"num-conv",
|
|
2901
|
+
"time-core",
|
|
2902
|
+
]
|
|
2903
|
+
|
|
2904
|
+
[[package]]
|
|
2905
|
+
name = "tinystr"
|
|
2906
|
+
version = "0.8.2"
|
|
2907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2908
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
2909
|
+
dependencies = [
|
|
2910
|
+
"displaydoc",
|
|
2911
|
+
"serde_core",
|
|
2912
|
+
"zerovec",
|
|
2913
|
+
]
|
|
2914
|
+
|
|
2915
|
+
[[package]]
|
|
2916
|
+
name = "tinyvec"
|
|
2917
|
+
version = "1.10.0"
|
|
2918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2919
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
2920
|
+
dependencies = [
|
|
2921
|
+
"tinyvec_macros",
|
|
2922
|
+
]
|
|
2923
|
+
|
|
2924
|
+
[[package]]
|
|
2925
|
+
name = "tinyvec_macros"
|
|
2926
|
+
version = "0.1.1"
|
|
2927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2928
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2929
|
+
|
|
2930
|
+
[[package]]
|
|
2931
|
+
name = "tokio"
|
|
2932
|
+
version = "1.48.0"
|
|
2933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2934
|
+
checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
|
|
2935
|
+
dependencies = [
|
|
2936
|
+
"bytes",
|
|
2937
|
+
"libc",
|
|
2938
|
+
"mio",
|
|
2939
|
+
"pin-project-lite",
|
|
2940
|
+
"socket2",
|
|
2941
|
+
"windows-sys 0.61.2",
|
|
2942
|
+
]
|
|
2943
|
+
|
|
2944
|
+
[[package]]
|
|
2945
|
+
name = "tokio-rustls"
|
|
2946
|
+
version = "0.26.4"
|
|
2947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2948
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
2949
|
+
dependencies = [
|
|
2950
|
+
"rustls",
|
|
2951
|
+
"tokio",
|
|
2952
|
+
]
|
|
2953
|
+
|
|
2954
|
+
[[package]]
|
|
2955
|
+
name = "tokio-util"
|
|
2956
|
+
version = "0.7.16"
|
|
2957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2958
|
+
checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
|
|
2959
|
+
dependencies = [
|
|
2960
|
+
"bytes",
|
|
2961
|
+
"futures-core",
|
|
2962
|
+
"futures-sink",
|
|
2963
|
+
"pin-project-lite",
|
|
2964
|
+
"tokio",
|
|
2965
|
+
]
|
|
2966
|
+
|
|
2967
|
+
[[package]]
|
|
2968
|
+
name = "toml"
|
|
2969
|
+
version = "0.9.8"
|
|
2970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2971
|
+
checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8"
|
|
2972
|
+
dependencies = [
|
|
2973
|
+
"indexmap 2.12.0",
|
|
2974
|
+
"serde_core",
|
|
2975
|
+
"serde_spanned",
|
|
2976
|
+
"toml_datetime",
|
|
2977
|
+
"toml_parser",
|
|
2978
|
+
"toml_writer",
|
|
2979
|
+
"winnow",
|
|
2980
|
+
]
|
|
2981
|
+
|
|
2982
|
+
[[package]]
|
|
2983
|
+
name = "toml_datetime"
|
|
2984
|
+
version = "0.7.3"
|
|
2985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2986
|
+
checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
|
|
2987
|
+
dependencies = [
|
|
2988
|
+
"serde_core",
|
|
2989
|
+
]
|
|
2990
|
+
|
|
2991
|
+
[[package]]
|
|
2992
|
+
name = "toml_edit"
|
|
2993
|
+
version = "0.23.7"
|
|
2994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2995
|
+
checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d"
|
|
2996
|
+
dependencies = [
|
|
2997
|
+
"indexmap 2.12.0",
|
|
2998
|
+
"toml_datetime",
|
|
2999
|
+
"toml_parser",
|
|
3000
|
+
"winnow",
|
|
3001
|
+
]
|
|
3002
|
+
|
|
3003
|
+
[[package]]
|
|
3004
|
+
name = "toml_parser"
|
|
3005
|
+
version = "1.0.4"
|
|
3006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3007
|
+
checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
|
|
3008
|
+
dependencies = [
|
|
3009
|
+
"winnow",
|
|
3010
|
+
]
|
|
3011
|
+
|
|
3012
|
+
[[package]]
|
|
3013
|
+
name = "toml_writer"
|
|
3014
|
+
version = "1.0.4"
|
|
3015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3016
|
+
checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2"
|
|
3017
|
+
|
|
3018
|
+
[[package]]
|
|
3019
|
+
name = "tower"
|
|
3020
|
+
version = "0.5.2"
|
|
3021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3022
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
|
3023
|
+
dependencies = [
|
|
3024
|
+
"futures-core",
|
|
3025
|
+
"futures-util",
|
|
3026
|
+
"pin-project-lite",
|
|
3027
|
+
"sync_wrapper",
|
|
3028
|
+
"tokio",
|
|
3029
|
+
"tower-layer",
|
|
3030
|
+
"tower-service",
|
|
3031
|
+
]
|
|
3032
|
+
|
|
3033
|
+
[[package]]
|
|
3034
|
+
name = "tower-http"
|
|
3035
|
+
version = "0.6.6"
|
|
3036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3037
|
+
checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
|
|
3038
|
+
dependencies = [
|
|
3039
|
+
"bitflags",
|
|
3040
|
+
"bytes",
|
|
3041
|
+
"futures-util",
|
|
3042
|
+
"http",
|
|
3043
|
+
"http-body",
|
|
3044
|
+
"iri-string",
|
|
3045
|
+
"pin-project-lite",
|
|
3046
|
+
"tower",
|
|
3047
|
+
"tower-layer",
|
|
3048
|
+
"tower-service",
|
|
3049
|
+
]
|
|
3050
|
+
|
|
3051
|
+
[[package]]
|
|
3052
|
+
name = "tower-layer"
|
|
3053
|
+
version = "0.3.3"
|
|
3054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3055
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
3056
|
+
|
|
3057
|
+
[[package]]
|
|
3058
|
+
name = "tower-service"
|
|
3059
|
+
version = "0.3.3"
|
|
3060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3061
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
3062
|
+
|
|
3063
|
+
[[package]]
|
|
3064
|
+
name = "tracing"
|
|
3065
|
+
version = "0.1.41"
|
|
3066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3067
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
3068
|
+
dependencies = [
|
|
3069
|
+
"pin-project-lite",
|
|
3070
|
+
"tracing-core",
|
|
3071
|
+
]
|
|
3072
|
+
|
|
3073
|
+
[[package]]
|
|
3074
|
+
name = "tracing-core"
|
|
3075
|
+
version = "0.1.34"
|
|
3076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3077
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
|
3078
|
+
dependencies = [
|
|
3079
|
+
"once_cell",
|
|
3080
|
+
]
|
|
3081
|
+
|
|
3082
|
+
[[package]]
|
|
3083
|
+
name = "try-lock"
|
|
3084
|
+
version = "0.2.5"
|
|
3085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3086
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
3087
|
+
|
|
3088
|
+
[[package]]
|
|
3089
|
+
name = "type-map"
|
|
3090
|
+
version = "0.5.1"
|
|
3091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3092
|
+
checksum = "cb30dbbd9036155e74adad6812e9898d03ec374946234fbcebd5dfc7b9187b90"
|
|
3093
|
+
dependencies = [
|
|
3094
|
+
"rustc-hash",
|
|
3095
|
+
]
|
|
3096
|
+
|
|
3097
|
+
[[package]]
|
|
3098
|
+
name = "typenum"
|
|
3099
|
+
version = "1.19.0"
|
|
3100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3101
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
3102
|
+
|
|
3103
|
+
[[package]]
|
|
3104
|
+
name = "unarray"
|
|
3105
|
+
version = "0.1.4"
|
|
3106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3107
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
3108
|
+
|
|
3109
|
+
[[package]]
|
|
3110
|
+
name = "unic-langid"
|
|
3111
|
+
version = "0.9.6"
|
|
3112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3113
|
+
checksum = "a28ba52c9b05311f4f6e62d5d9d46f094bd6e84cb8df7b3ef952748d752a7d05"
|
|
3114
|
+
dependencies = [
|
|
3115
|
+
"unic-langid-impl",
|
|
3116
|
+
"unic-langid-macros",
|
|
3117
|
+
]
|
|
3118
|
+
|
|
3119
|
+
[[package]]
|
|
3120
|
+
name = "unic-langid-impl"
|
|
3121
|
+
version = "0.9.6"
|
|
3122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3123
|
+
checksum = "dce1bf08044d4b7a94028c93786f8566047edc11110595914de93362559bc658"
|
|
3124
|
+
dependencies = [
|
|
3125
|
+
"tinystr",
|
|
3126
|
+
]
|
|
3127
|
+
|
|
3128
|
+
[[package]]
|
|
3129
|
+
name = "unic-langid-macros"
|
|
3130
|
+
version = "0.9.6"
|
|
3131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3132
|
+
checksum = "d5957eb82e346d7add14182a3315a7e298f04e1ba4baac36f7f0dbfedba5fc25"
|
|
3133
|
+
dependencies = [
|
|
3134
|
+
"proc-macro-hack",
|
|
3135
|
+
"tinystr",
|
|
3136
|
+
"unic-langid-impl",
|
|
3137
|
+
"unic-langid-macros-impl",
|
|
3138
|
+
]
|
|
3139
|
+
|
|
3140
|
+
[[package]]
|
|
3141
|
+
name = "unic-langid-macros-impl"
|
|
3142
|
+
version = "0.9.6"
|
|
3143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3144
|
+
checksum = "a1249a628de3ad34b821ecb1001355bca3940bcb2f88558f1a8bd82e977f75b5"
|
|
3145
|
+
dependencies = [
|
|
3146
|
+
"proc-macro-hack",
|
|
3147
|
+
"quote",
|
|
3148
|
+
"syn",
|
|
3149
|
+
"unic-langid-impl",
|
|
3150
|
+
]
|
|
3151
|
+
|
|
3152
|
+
[[package]]
|
|
3153
|
+
name = "unicode-ident"
|
|
3154
|
+
version = "1.0.22"
|
|
3155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3156
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
3157
|
+
|
|
3158
|
+
[[package]]
|
|
3159
|
+
name = "unicode-segmentation"
|
|
3160
|
+
version = "1.12.0"
|
|
3161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3162
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
3163
|
+
|
|
3164
|
+
[[package]]
|
|
3165
|
+
name = "unicode-width"
|
|
3166
|
+
version = "0.2.2"
|
|
3167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3168
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
3169
|
+
|
|
3170
|
+
[[package]]
|
|
3171
|
+
name = "unindent"
|
|
3172
|
+
version = "0.2.4"
|
|
3173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3174
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
3175
|
+
|
|
3176
|
+
[[package]]
|
|
3177
|
+
name = "unit-prefix"
|
|
3178
|
+
version = "0.5.1"
|
|
3179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3180
|
+
checksum = "323402cff2dd658f39ca17c789b502021b3f18707c91cdf22e3838e1b4023817"
|
|
3181
|
+
|
|
3182
|
+
[[package]]
|
|
3183
|
+
name = "untrusted"
|
|
3184
|
+
version = "0.9.0"
|
|
3185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3186
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
3187
|
+
|
|
3188
|
+
[[package]]
|
|
3189
|
+
name = "url"
|
|
3190
|
+
version = "2.5.7"
|
|
3191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3192
|
+
checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
|
|
3193
|
+
dependencies = [
|
|
3194
|
+
"form_urlencoded",
|
|
3195
|
+
"idna",
|
|
3196
|
+
"percent-encoding",
|
|
3197
|
+
"serde",
|
|
3198
|
+
]
|
|
3199
|
+
|
|
3200
|
+
[[package]]
|
|
3201
|
+
name = "utf8_iter"
|
|
3202
|
+
version = "1.0.4"
|
|
3203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3204
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3205
|
+
|
|
3206
|
+
[[package]]
|
|
3207
|
+
name = "utf8parse"
|
|
3208
|
+
version = "0.2.2"
|
|
3209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3210
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
3211
|
+
|
|
3212
|
+
[[package]]
|
|
3213
|
+
name = "version_check"
|
|
3214
|
+
version = "0.9.5"
|
|
3215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3216
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3217
|
+
|
|
3218
|
+
[[package]]
|
|
3219
|
+
name = "wait-timeout"
|
|
3220
|
+
version = "0.2.1"
|
|
3221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3222
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
3223
|
+
dependencies = [
|
|
3224
|
+
"libc",
|
|
3225
|
+
]
|
|
3226
|
+
|
|
3227
|
+
[[package]]
|
|
3228
|
+
name = "walkdir"
|
|
3229
|
+
version = "2.5.0"
|
|
3230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3231
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3232
|
+
dependencies = [
|
|
3233
|
+
"same-file",
|
|
3234
|
+
"winapi-util",
|
|
3235
|
+
]
|
|
3236
|
+
|
|
3237
|
+
[[package]]
|
|
3238
|
+
name = "want"
|
|
3239
|
+
version = "0.3.1"
|
|
3240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3241
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
3242
|
+
dependencies = [
|
|
3243
|
+
"try-lock",
|
|
3244
|
+
]
|
|
3245
|
+
|
|
3246
|
+
[[package]]
|
|
3247
|
+
name = "wasi"
|
|
3248
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3250
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3251
|
+
|
|
3252
|
+
[[package]]
|
|
3253
|
+
name = "wasip2"
|
|
3254
|
+
version = "1.0.1+wasi-0.2.4"
|
|
3255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3256
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
3257
|
+
dependencies = [
|
|
3258
|
+
"wit-bindgen",
|
|
3259
|
+
]
|
|
3260
|
+
|
|
3261
|
+
[[package]]
|
|
3262
|
+
name = "wasm-bindgen"
|
|
3263
|
+
version = "0.2.105"
|
|
3264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3265
|
+
checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
|
|
3266
|
+
dependencies = [
|
|
3267
|
+
"cfg-if",
|
|
3268
|
+
"once_cell",
|
|
3269
|
+
"rustversion",
|
|
3270
|
+
"wasm-bindgen-macro",
|
|
3271
|
+
"wasm-bindgen-shared",
|
|
3272
|
+
]
|
|
3273
|
+
|
|
3274
|
+
[[package]]
|
|
3275
|
+
name = "wasm-bindgen-futures"
|
|
3276
|
+
version = "0.4.55"
|
|
3277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3278
|
+
checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0"
|
|
3279
|
+
dependencies = [
|
|
3280
|
+
"cfg-if",
|
|
3281
|
+
"js-sys",
|
|
3282
|
+
"once_cell",
|
|
3283
|
+
"wasm-bindgen",
|
|
3284
|
+
"web-sys",
|
|
3285
|
+
]
|
|
3286
|
+
|
|
3287
|
+
[[package]]
|
|
3288
|
+
name = "wasm-bindgen-macro"
|
|
3289
|
+
version = "0.2.105"
|
|
3290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3291
|
+
checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
|
|
3292
|
+
dependencies = [
|
|
3293
|
+
"quote",
|
|
3294
|
+
"wasm-bindgen-macro-support",
|
|
3295
|
+
]
|
|
3296
|
+
|
|
3297
|
+
[[package]]
|
|
3298
|
+
name = "wasm-bindgen-macro-support"
|
|
3299
|
+
version = "0.2.105"
|
|
3300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3301
|
+
checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
|
|
3302
|
+
dependencies = [
|
|
3303
|
+
"bumpalo",
|
|
3304
|
+
"proc-macro2",
|
|
3305
|
+
"quote",
|
|
3306
|
+
"syn",
|
|
3307
|
+
"wasm-bindgen-shared",
|
|
3308
|
+
]
|
|
3309
|
+
|
|
3310
|
+
[[package]]
|
|
3311
|
+
name = "wasm-bindgen-shared"
|
|
3312
|
+
version = "0.2.105"
|
|
3313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3314
|
+
checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
|
|
3315
|
+
dependencies = [
|
|
3316
|
+
"unicode-ident",
|
|
3317
|
+
]
|
|
3318
|
+
|
|
3319
|
+
[[package]]
|
|
3320
|
+
name = "web-sys"
|
|
3321
|
+
version = "0.3.82"
|
|
3322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3323
|
+
checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
|
|
3324
|
+
dependencies = [
|
|
3325
|
+
"js-sys",
|
|
3326
|
+
"wasm-bindgen",
|
|
3327
|
+
]
|
|
3328
|
+
|
|
3329
|
+
[[package]]
|
|
3330
|
+
name = "web-time"
|
|
3331
|
+
version = "1.1.0"
|
|
3332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3333
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
3334
|
+
dependencies = [
|
|
3335
|
+
"js-sys",
|
|
3336
|
+
"wasm-bindgen",
|
|
3337
|
+
]
|
|
3338
|
+
|
|
3339
|
+
[[package]]
|
|
3340
|
+
name = "webpki-roots"
|
|
3341
|
+
version = "1.0.3"
|
|
3342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3343
|
+
checksum = "32b130c0d2d49f8b6889abc456e795e82525204f27c42cf767cf0d7734e089b8"
|
|
3344
|
+
dependencies = [
|
|
3345
|
+
"rustls-pki-types",
|
|
3346
|
+
]
|
|
3347
|
+
|
|
3348
|
+
[[package]]
|
|
3349
|
+
name = "which"
|
|
3350
|
+
version = "8.0.0"
|
|
3351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3352
|
+
checksum = "d3fabb953106c3c8eea8306e4393700d7657561cb43122571b172bbfb7c7ba1d"
|
|
3353
|
+
dependencies = [
|
|
3354
|
+
"env_home",
|
|
3355
|
+
"rustix",
|
|
3356
|
+
"winsafe",
|
|
3357
|
+
]
|
|
3358
|
+
|
|
3359
|
+
[[package]]
|
|
3360
|
+
name = "winapi-util"
|
|
3361
|
+
version = "0.1.11"
|
|
3362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3363
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
3364
|
+
dependencies = [
|
|
3365
|
+
"windows-sys 0.61.2",
|
|
3366
|
+
]
|
|
3367
|
+
|
|
3368
|
+
[[package]]
|
|
3369
|
+
name = "windows-core"
|
|
3370
|
+
version = "0.62.2"
|
|
3371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3372
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
3373
|
+
dependencies = [
|
|
3374
|
+
"windows-implement",
|
|
3375
|
+
"windows-interface",
|
|
3376
|
+
"windows-link",
|
|
3377
|
+
"windows-result",
|
|
3378
|
+
"windows-strings",
|
|
3379
|
+
]
|
|
3380
|
+
|
|
3381
|
+
[[package]]
|
|
3382
|
+
name = "windows-implement"
|
|
3383
|
+
version = "0.60.2"
|
|
3384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3385
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
3386
|
+
dependencies = [
|
|
3387
|
+
"proc-macro2",
|
|
3388
|
+
"quote",
|
|
3389
|
+
"syn",
|
|
3390
|
+
]
|
|
3391
|
+
|
|
3392
|
+
[[package]]
|
|
3393
|
+
name = "windows-interface"
|
|
3394
|
+
version = "0.59.3"
|
|
3395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3396
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
3397
|
+
dependencies = [
|
|
3398
|
+
"proc-macro2",
|
|
3399
|
+
"quote",
|
|
3400
|
+
"syn",
|
|
3401
|
+
]
|
|
3402
|
+
|
|
3403
|
+
[[package]]
|
|
3404
|
+
name = "windows-link"
|
|
3405
|
+
version = "0.2.1"
|
|
3406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3407
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3408
|
+
|
|
3409
|
+
[[package]]
|
|
3410
|
+
name = "windows-result"
|
|
3411
|
+
version = "0.4.1"
|
|
3412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3413
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
3414
|
+
dependencies = [
|
|
3415
|
+
"windows-link",
|
|
3416
|
+
]
|
|
3417
|
+
|
|
3418
|
+
[[package]]
|
|
3419
|
+
name = "windows-strings"
|
|
3420
|
+
version = "0.5.1"
|
|
3421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3422
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
3423
|
+
dependencies = [
|
|
3424
|
+
"windows-link",
|
|
3425
|
+
]
|
|
3426
|
+
|
|
3427
|
+
[[package]]
|
|
3428
|
+
name = "windows-sys"
|
|
3429
|
+
version = "0.48.0"
|
|
3430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3431
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
3432
|
+
dependencies = [
|
|
3433
|
+
"windows-targets 0.48.5",
|
|
3434
|
+
]
|
|
3435
|
+
|
|
3436
|
+
[[package]]
|
|
3437
|
+
name = "windows-sys"
|
|
3438
|
+
version = "0.52.0"
|
|
3439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3440
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3441
|
+
dependencies = [
|
|
3442
|
+
"windows-targets 0.52.6",
|
|
3443
|
+
]
|
|
3444
|
+
|
|
3445
|
+
[[package]]
|
|
3446
|
+
name = "windows-sys"
|
|
3447
|
+
version = "0.59.0"
|
|
3448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3449
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3450
|
+
dependencies = [
|
|
3451
|
+
"windows-targets 0.52.6",
|
|
3452
|
+
]
|
|
3453
|
+
|
|
3454
|
+
[[package]]
|
|
3455
|
+
name = "windows-sys"
|
|
3456
|
+
version = "0.60.2"
|
|
3457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3458
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
3459
|
+
dependencies = [
|
|
3460
|
+
"windows-targets 0.53.5",
|
|
3461
|
+
]
|
|
3462
|
+
|
|
3463
|
+
[[package]]
|
|
3464
|
+
name = "windows-sys"
|
|
3465
|
+
version = "0.61.2"
|
|
3466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3467
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
3468
|
+
dependencies = [
|
|
3469
|
+
"windows-link",
|
|
3470
|
+
]
|
|
3471
|
+
|
|
3472
|
+
[[package]]
|
|
3473
|
+
name = "windows-targets"
|
|
3474
|
+
version = "0.48.5"
|
|
3475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3476
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
3477
|
+
dependencies = [
|
|
3478
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
3479
|
+
"windows_aarch64_msvc 0.48.5",
|
|
3480
|
+
"windows_i686_gnu 0.48.5",
|
|
3481
|
+
"windows_i686_msvc 0.48.5",
|
|
3482
|
+
"windows_x86_64_gnu 0.48.5",
|
|
3483
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
3484
|
+
"windows_x86_64_msvc 0.48.5",
|
|
3485
|
+
]
|
|
3486
|
+
|
|
3487
|
+
[[package]]
|
|
3488
|
+
name = "windows-targets"
|
|
3489
|
+
version = "0.52.6"
|
|
3490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3491
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3492
|
+
dependencies = [
|
|
3493
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
3494
|
+
"windows_aarch64_msvc 0.52.6",
|
|
3495
|
+
"windows_i686_gnu 0.52.6",
|
|
3496
|
+
"windows_i686_gnullvm 0.52.6",
|
|
3497
|
+
"windows_i686_msvc 0.52.6",
|
|
3498
|
+
"windows_x86_64_gnu 0.52.6",
|
|
3499
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
3500
|
+
"windows_x86_64_msvc 0.52.6",
|
|
3501
|
+
]
|
|
3502
|
+
|
|
3503
|
+
[[package]]
|
|
3504
|
+
name = "windows-targets"
|
|
3505
|
+
version = "0.53.5"
|
|
3506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3507
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
3508
|
+
dependencies = [
|
|
3509
|
+
"windows-link",
|
|
3510
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
3511
|
+
"windows_aarch64_msvc 0.53.1",
|
|
3512
|
+
"windows_i686_gnu 0.53.1",
|
|
3513
|
+
"windows_i686_gnullvm 0.53.1",
|
|
3514
|
+
"windows_i686_msvc 0.53.1",
|
|
3515
|
+
"windows_x86_64_gnu 0.53.1",
|
|
3516
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
3517
|
+
"windows_x86_64_msvc 0.53.1",
|
|
3518
|
+
]
|
|
3519
|
+
|
|
3520
|
+
[[package]]
|
|
3521
|
+
name = "windows_aarch64_gnullvm"
|
|
3522
|
+
version = "0.48.5"
|
|
3523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3524
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
3525
|
+
|
|
3526
|
+
[[package]]
|
|
3527
|
+
name = "windows_aarch64_gnullvm"
|
|
3528
|
+
version = "0.52.6"
|
|
3529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3530
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3531
|
+
|
|
3532
|
+
[[package]]
|
|
3533
|
+
name = "windows_aarch64_gnullvm"
|
|
3534
|
+
version = "0.53.1"
|
|
3535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3536
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
3537
|
+
|
|
3538
|
+
[[package]]
|
|
3539
|
+
name = "windows_aarch64_msvc"
|
|
3540
|
+
version = "0.48.5"
|
|
3541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3542
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
3543
|
+
|
|
3544
|
+
[[package]]
|
|
3545
|
+
name = "windows_aarch64_msvc"
|
|
3546
|
+
version = "0.52.6"
|
|
3547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3548
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3549
|
+
|
|
3550
|
+
[[package]]
|
|
3551
|
+
name = "windows_aarch64_msvc"
|
|
3552
|
+
version = "0.53.1"
|
|
3553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3554
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
3555
|
+
|
|
3556
|
+
[[package]]
|
|
3557
|
+
name = "windows_i686_gnu"
|
|
3558
|
+
version = "0.48.5"
|
|
3559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3560
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
3561
|
+
|
|
3562
|
+
[[package]]
|
|
3563
|
+
name = "windows_i686_gnu"
|
|
3564
|
+
version = "0.52.6"
|
|
3565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3566
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3567
|
+
|
|
3568
|
+
[[package]]
|
|
3569
|
+
name = "windows_i686_gnu"
|
|
3570
|
+
version = "0.53.1"
|
|
3571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3572
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
3573
|
+
|
|
3574
|
+
[[package]]
|
|
3575
|
+
name = "windows_i686_gnullvm"
|
|
3576
|
+
version = "0.52.6"
|
|
3577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3578
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3579
|
+
|
|
3580
|
+
[[package]]
|
|
3581
|
+
name = "windows_i686_gnullvm"
|
|
3582
|
+
version = "0.53.1"
|
|
3583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3584
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
3585
|
+
|
|
3586
|
+
[[package]]
|
|
3587
|
+
name = "windows_i686_msvc"
|
|
3588
|
+
version = "0.48.5"
|
|
3589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3590
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
3591
|
+
|
|
3592
|
+
[[package]]
|
|
3593
|
+
name = "windows_i686_msvc"
|
|
3594
|
+
version = "0.52.6"
|
|
3595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3596
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3597
|
+
|
|
3598
|
+
[[package]]
|
|
3599
|
+
name = "windows_i686_msvc"
|
|
3600
|
+
version = "0.53.1"
|
|
3601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3602
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
3603
|
+
|
|
3604
|
+
[[package]]
|
|
3605
|
+
name = "windows_x86_64_gnu"
|
|
3606
|
+
version = "0.48.5"
|
|
3607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3608
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
3609
|
+
|
|
3610
|
+
[[package]]
|
|
3611
|
+
name = "windows_x86_64_gnu"
|
|
3612
|
+
version = "0.52.6"
|
|
3613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3614
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3615
|
+
|
|
3616
|
+
[[package]]
|
|
3617
|
+
name = "windows_x86_64_gnu"
|
|
3618
|
+
version = "0.53.1"
|
|
3619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3620
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
3621
|
+
|
|
3622
|
+
[[package]]
|
|
3623
|
+
name = "windows_x86_64_gnullvm"
|
|
3624
|
+
version = "0.48.5"
|
|
3625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3626
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
3627
|
+
|
|
3628
|
+
[[package]]
|
|
3629
|
+
name = "windows_x86_64_gnullvm"
|
|
3630
|
+
version = "0.52.6"
|
|
3631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3632
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3633
|
+
|
|
3634
|
+
[[package]]
|
|
3635
|
+
name = "windows_x86_64_gnullvm"
|
|
3636
|
+
version = "0.53.1"
|
|
3637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3638
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
3639
|
+
|
|
3640
|
+
[[package]]
|
|
3641
|
+
name = "windows_x86_64_msvc"
|
|
3642
|
+
version = "0.48.5"
|
|
3643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3644
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
3645
|
+
|
|
3646
|
+
[[package]]
|
|
3647
|
+
name = "windows_x86_64_msvc"
|
|
3648
|
+
version = "0.52.6"
|
|
3649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3650
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3651
|
+
|
|
3652
|
+
[[package]]
|
|
3653
|
+
name = "windows_x86_64_msvc"
|
|
3654
|
+
version = "0.53.1"
|
|
3655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3656
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
3657
|
+
|
|
3658
|
+
[[package]]
|
|
3659
|
+
name = "winnow"
|
|
3660
|
+
version = "0.7.13"
|
|
3661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3662
|
+
checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
|
|
3663
|
+
dependencies = [
|
|
3664
|
+
"anstream 0.3.2",
|
|
3665
|
+
"anstyle",
|
|
3666
|
+
"is_terminal_polyfill",
|
|
3667
|
+
"memchr",
|
|
3668
|
+
"terminal_size",
|
|
3669
|
+
]
|
|
3670
|
+
|
|
3671
|
+
[[package]]
|
|
3672
|
+
name = "winsafe"
|
|
3673
|
+
version = "0.0.19"
|
|
3674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3675
|
+
checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904"
|
|
3676
|
+
|
|
3677
|
+
[[package]]
|
|
3678
|
+
name = "wit-bindgen"
|
|
3679
|
+
version = "0.46.0"
|
|
3680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3681
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
3682
|
+
|
|
3683
|
+
[[package]]
|
|
3684
|
+
name = "writeable"
|
|
3685
|
+
version = "0.6.2"
|
|
3686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3687
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
3688
|
+
|
|
3689
|
+
[[package]]
|
|
3690
|
+
name = "xattr"
|
|
3691
|
+
version = "1.6.1"
|
|
3692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3693
|
+
checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
|
|
3694
|
+
dependencies = [
|
|
3695
|
+
"libc",
|
|
3696
|
+
"rustix",
|
|
3697
|
+
]
|
|
3698
|
+
|
|
3699
|
+
[[package]]
|
|
3700
|
+
name = "yansi"
|
|
3701
|
+
version = "1.0.1"
|
|
3702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3703
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
3704
|
+
|
|
3705
|
+
[[package]]
|
|
3706
|
+
name = "yoke"
|
|
3707
|
+
version = "0.8.1"
|
|
3708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3709
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
3710
|
+
dependencies = [
|
|
3711
|
+
"stable_deref_trait",
|
|
3712
|
+
"yoke-derive",
|
|
3713
|
+
"zerofrom",
|
|
3714
|
+
]
|
|
3715
|
+
|
|
3716
|
+
[[package]]
|
|
3717
|
+
name = "yoke-derive"
|
|
3718
|
+
version = "0.8.1"
|
|
3719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3720
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
3721
|
+
dependencies = [
|
|
3722
|
+
"proc-macro2",
|
|
3723
|
+
"quote",
|
|
3724
|
+
"syn",
|
|
3725
|
+
"synstructure",
|
|
3726
|
+
]
|
|
3727
|
+
|
|
3728
|
+
[[package]]
|
|
3729
|
+
name = "zerocopy"
|
|
3730
|
+
version = "0.8.27"
|
|
3731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3732
|
+
checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
|
|
3733
|
+
dependencies = [
|
|
3734
|
+
"zerocopy-derive",
|
|
3735
|
+
]
|
|
3736
|
+
|
|
3737
|
+
[[package]]
|
|
3738
|
+
name = "zerocopy-derive"
|
|
3739
|
+
version = "0.8.27"
|
|
3740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3741
|
+
checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
|
|
3742
|
+
dependencies = [
|
|
3743
|
+
"proc-macro2",
|
|
3744
|
+
"quote",
|
|
3745
|
+
"syn",
|
|
3746
|
+
]
|
|
3747
|
+
|
|
3748
|
+
[[package]]
|
|
3749
|
+
name = "zerofrom"
|
|
3750
|
+
version = "0.1.6"
|
|
3751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3752
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
3753
|
+
dependencies = [
|
|
3754
|
+
"zerofrom-derive",
|
|
3755
|
+
]
|
|
3756
|
+
|
|
3757
|
+
[[package]]
|
|
3758
|
+
name = "zerofrom-derive"
|
|
3759
|
+
version = "0.1.6"
|
|
3760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3761
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
3762
|
+
dependencies = [
|
|
3763
|
+
"proc-macro2",
|
|
3764
|
+
"quote",
|
|
3765
|
+
"syn",
|
|
3766
|
+
"synstructure",
|
|
3767
|
+
]
|
|
3768
|
+
|
|
3769
|
+
[[package]]
|
|
3770
|
+
name = "zeroize"
|
|
3771
|
+
version = "1.8.2"
|
|
3772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3773
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
3774
|
+
|
|
3775
|
+
[[package]]
|
|
3776
|
+
name = "zerotrie"
|
|
3777
|
+
version = "0.2.3"
|
|
3778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3779
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
3780
|
+
dependencies = [
|
|
3781
|
+
"displaydoc",
|
|
3782
|
+
"yoke",
|
|
3783
|
+
"zerofrom",
|
|
3784
|
+
]
|
|
3785
|
+
|
|
3786
|
+
[[package]]
|
|
3787
|
+
name = "zerovec"
|
|
3788
|
+
version = "0.11.5"
|
|
3789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3790
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
3791
|
+
dependencies = [
|
|
3792
|
+
"serde",
|
|
3793
|
+
"yoke",
|
|
3794
|
+
"zerofrom",
|
|
3795
|
+
"zerovec-derive",
|
|
3796
|
+
]
|
|
3797
|
+
|
|
3798
|
+
[[package]]
|
|
3799
|
+
name = "zerovec-derive"
|
|
3800
|
+
version = "0.11.2"
|
|
3801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3802
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
3803
|
+
dependencies = [
|
|
3804
|
+
"proc-macro2",
|
|
3805
|
+
"quote",
|
|
3806
|
+
"syn",
|
|
3807
|
+
]
|
|
3808
|
+
|
|
3809
|
+
[[package]]
|
|
3810
|
+
name = "zstd"
|
|
3811
|
+
version = "0.13.3"
|
|
3812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3813
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
3814
|
+
dependencies = [
|
|
3815
|
+
"zstd-safe",
|
|
3816
|
+
]
|
|
3817
|
+
|
|
3818
|
+
[[package]]
|
|
3819
|
+
name = "zstd-safe"
|
|
3820
|
+
version = "7.2.4"
|
|
3821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3822
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
3823
|
+
dependencies = [
|
|
3824
|
+
"zstd-sys",
|
|
3825
|
+
]
|
|
3826
|
+
|
|
3827
|
+
[[package]]
|
|
3828
|
+
name = "zstd-sys"
|
|
3829
|
+
version = "2.0.16+zstd.1.5.7"
|
|
3830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3831
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
3832
|
+
dependencies = [
|
|
3833
|
+
"cc",
|
|
3834
|
+
"pkg-config",
|
|
3835
|
+
]
|