python-alpm 0.2.1__tar.gz → 0.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (301) hide show
  1. {python_alpm-0.2.1 → python_alpm-0.4.0}/Cargo.lock +1536 -285
  2. {python_alpm-0.2.1 → python_alpm-0.4.0}/Cargo.toml +14 -12
  3. {python_alpm-0.2.1 → python_alpm-0.4.0}/PKG-INFO +5 -4
  4. {python_alpm-0.2.1/python-alpm → python_alpm-0.4.0}/README.md +4 -3
  5. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-common/CHANGELOG.md +13 -0
  6. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-common/Cargo.toml +1 -1
  7. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-common/src/package/input.rs +18 -6
  8. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-parsers/CHANGELOG.md +12 -0
  9. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-parsers/Cargo.toml +1 -1
  10. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-parsers/tests/integration.rs +1 -1
  11. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-pkgbuild/CHANGELOG.md +20 -0
  12. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-pkgbuild/Cargo.toml +2 -1
  13. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-pkgbuild/README.md +0 -2
  14. python_alpm-0.4.0/alpm-pkgbuild/locales/en-US/error.ftl +45 -0
  15. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-pkgbuild/src/bridge/mod.rs +17 -32
  16. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-pkgbuild/src/error.rs +42 -32
  17. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-pkgbuild/src/lib.rs +2 -0
  18. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/CHANGELOG.md +28 -0
  19. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/Cargo.toml +2 -1
  20. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/README.md +1 -1
  21. python_alpm-0.4.0/alpm-srcinfo/locales/en-US/error.ftl +32 -0
  22. python_alpm-0.4.0/alpm-srcinfo/locales/en-US/pkgbuild-bridge-error.ftl +22 -0
  23. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/resources/specification/SRCINFO.5.md +3 -3
  24. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/src/commands.rs +3 -2
  25. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/src/error.rs +29 -13
  26. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/src/lib.rs +2 -0
  27. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/src/main.rs +2 -0
  28. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/src/pkgbuild_bridge/error.rs +27 -17
  29. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/src/pkgbuild_bridge/package_base.rs +10 -0
  30. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/src/schema.rs +12 -9
  31. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/src/source_info/mod.rs +18 -10
  32. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/src/source_info/parser.rs +20 -9
  33. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/src/source_info/v1/merged.rs +11 -5
  34. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/src/source_info/v1/mod.rs +15 -4
  35. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/src/source_info/v1/package_base.rs +19 -5
  36. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/src/source_info/v1/writer.rs +6 -0
  37. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct.rs +6 -9
  38. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct_snapshots/all_cleared_source_info.snap +4 -2
  39. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct_snapshots/all_overrides_source_info.snap +4 -2
  40. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct_snapshots/custom_architecture_source_info.snap +2 -1
  41. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct_snapshots/full_pkgbase_merged.snap +12 -6
  42. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct_snapshots/full_pkgbase_source_info.snap +6 -3
  43. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct_snapshots/package_with_any_arch_source_info.snap +2 -1
  44. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct_snapshots/pkgbase_with_any_arch_source_info.snap +2 -1
  45. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct_snapshots/split_package_source_info.snap +2 -1
  46. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/generate_srcinfo.bash +0 -0
  47. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/parse_error_snapshots/invalid_checksum.snap +1 -1
  48. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/parse_error_snapshots/invalid_pkver.snap +4 -4
  49. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/parse_error_snapshots/invalid_property_delimiter.snap +1 -1
  50. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/parse_error_snapshots/unexpected_pkgbase_property.snap +2 -2
  51. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/parse_error_snapshots/unexpected_pkgname_property.snap +1 -1
  52. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/parse_errors/invalid_pkver.srcinfo +1 -1
  53. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/parse_errors.rs +1 -1
  54. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/pkgbuild_invalid.rs +2 -4
  55. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/writer.rs +2 -3
  56. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/CHANGELOG.md +58 -0
  57. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/Cargo.toml +7 -3
  58. python_alpm-0.4.0/alpm-types/locales/en-US/error.ftl +60 -0
  59. python_alpm-0.4.0/alpm-types/locales/en-US/package-error.ftl +3 -0
  60. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/resources/specification/alpm-package-relation.7.md +1 -1
  61. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/resources/specification/alpm-package-source-checksum.7.md +9 -0
  62. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/resources/specification/alpm-pkgver.7.md +2 -2
  63. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/resources/specification/alpm.7.md +23 -12
  64. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/checksum.rs +239 -40
  65. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/env.rs +40 -1
  66. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/error.rs +62 -34
  67. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/lib.rs +17 -4
  68. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/name.rs +1 -1
  69. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/openpgp.rs +174 -19
  70. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/package/error.rs +6 -4
  71. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/package/file_name.rs +3 -7
  72. python_alpm-0.4.0/alpm-types/src/package/installation.rs +66 -0
  73. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/package/mod.rs +2 -0
  74. python_alpm-0.4.0/alpm-types/src/package/validation.rs +70 -0
  75. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/path.rs +121 -26
  76. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/pkg.rs +139 -15
  77. python_alpm-0.4.0/alpm-types/src/relation/base.rs +623 -0
  78. python_alpm-0.4.0/alpm-types/src/relation/composite.rs +253 -0
  79. python_alpm-0.4.0/alpm-types/src/relation/mod.rs +9 -0
  80. python_alpm-0.2.1/alpm-types/src/relation.rs → python_alpm-0.4.0/alpm-types/src/relation/soname.rs +49 -763
  81. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/version/base.rs +26 -33
  82. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/version/buildtool.rs +1 -1
  83. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/version/pkg_generic.rs +10 -2
  84. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/version/pkg_minimal.rs +19 -14
  85. python_alpm-0.4.0/alpm-types/src/version/requirement.rs +649 -0
  86. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/integration.rs +3 -6
  87. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_13_invalid_compression.snap +1 -1
  88. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_14_invalid_dashes.snap +2 -2
  89. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_15_invalid_dashes.snap +2 -2
  90. {python_alpm-0.2.1 → python_alpm-0.4.0}/pyproject.toml +1 -1
  91. {python_alpm-0.2.1/python-alpm → python_alpm-0.4.0}/python/alpm/alpm_srcinfo/source_info/v1/package.pyi +9 -9
  92. {python_alpm-0.2.1/python-alpm → python_alpm-0.4.0}/python/alpm/alpm_srcinfo/source_info/v1/package_base.pyi +24 -7
  93. {python_alpm-0.2.1/python-alpm → python_alpm-0.4.0}/python/alpm/alpm_types.pyi +88 -10
  94. {python_alpm-0.2.1/python-alpm → python_alpm-0.4.0}/python/alpm/type_aliases.py +13 -2
  95. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/CHANGELOG.md +32 -0
  96. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/Cargo.toml +1 -1
  97. {python_alpm-0.2.1 → python_alpm-0.4.0/python-alpm}/README.md +4 -3
  98. {python_alpm-0.2.1 → python_alpm-0.4.0/python-alpm}/python/alpm/alpm_srcinfo/source_info/v1/package.pyi +9 -9
  99. {python_alpm-0.2.1 → python_alpm-0.4.0/python-alpm}/python/alpm/alpm_srcinfo/source_info/v1/package_base.pyi +24 -7
  100. {python_alpm-0.2.1 → python_alpm-0.4.0/python-alpm}/python/alpm/alpm_types.pyi +88 -10
  101. {python_alpm-0.2.1 → python_alpm-0.4.0/python-alpm}/python/alpm/type_aliases.py +13 -2
  102. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/srcinfo/source_info/v1/package.rs +8 -8
  103. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/srcinfo/source_info/v1/package_base.rs +28 -7
  104. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/types/checksum.rs +5 -0
  105. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/types/mod.rs +9 -1
  106. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/types/path.rs +5 -5
  107. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/types/relation.rs +93 -15
  108. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/types/system.rs +25 -6
  109. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/tests/srcinfo/test_package.py +7 -7
  110. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/tests/srcinfo/test_package_base.py +15 -4
  111. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/tests/test_alpm_imports.py +1 -0
  112. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/tests/types/test_alpm_types_imports.py +5 -1
  113. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/tests/types/test_path.py +14 -14
  114. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/tests/types/test_relation.py +13 -0
  115. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/tests/types/test_system.py +5 -3
  116. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/tests/types/test_version.py +0 -30
  117. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/uv.lock +25 -25
  118. python_alpm-0.2.1/alpm-types/resources/specification/alpm-db-desc.5.md +0 -254
  119. python_alpm-0.2.1/alpm-types/resources/specification/alpm-db-descv1.5.md +0 -237
  120. python_alpm-0.2.1/alpm-types/resources/specification/alpm-db-descv2.5.md +0 -254
  121. python_alpm-0.2.1/alpm-types/resources/specification/alpm-db-files.5.md +0 -66
  122. python_alpm-0.2.1/alpm-types/resources/specification/alpm-files.5.md +0 -66
  123. python_alpm-0.2.1/alpm-types/resources/specification/alpm-repo-desc.5.md +0 -337
  124. python_alpm-0.2.1/alpm-types/resources/specification/alpm-repo-descv1.5.md +0 -337
  125. python_alpm-0.2.1/alpm-types/resources/specification/alpm-repo-descv2.5.md +0 -337
  126. python_alpm-0.2.1/alpm-types/resources/specification/alpm-repo-files.5.md +0 -66
  127. python_alpm-0.2.1/alpm-types/src/version/requirement.rs +0 -356
  128. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-common/README.md +0 -0
  129. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-common/locales/en-US/main.ftl +0 -0
  130. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-common/src/error.rs +0 -0
  131. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-common/src/lib.rs +0 -0
  132. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-common/src/package/mod.rs +0 -0
  133. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-common/src/traits/metadata_file.rs +0 -0
  134. python_alpm-0.2.1/alpm-common/src/traits.rs → python_alpm-0.4.0/alpm-common/src/traits/mod.rs +0 -0
  135. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-common/src/traits/schema.rs +0 -0
  136. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-parsers/README.md +0 -0
  137. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-parsers/src/custom_ini/de.rs +1 -1
  138. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-parsers/src/custom_ini/mod.rs +0 -0
  139. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-parsers/src/custom_ini/parser.rs +0 -0
  140. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-parsers/src/lib.rs +0 -0
  141. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-parsers/src/macros.rs +0 -0
  142. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-parsers/tests/snapshots/integration__write_ini__case_1_missing_key.snap +0 -0
  143. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-parsers/tests/snapshots/integration__write_ini__case_2_incomplete_delimiter_1.snap +0 -0
  144. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-parsers/tests/snapshots/integration__write_ini__case_3_incomplete_delimiter_2.snap +0 -0
  145. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-parsers/tests/snapshots/integration__write_ini__case_4_missing_delimiter_2.snap +0 -0
  146. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-pkgbuild/src/bridge/parser.rs +0 -0
  147. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-pkgbuild/tests/test_files/normal.pkgbuild +0 -0
  148. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-pkgbuild/tests/test_files/normal.srcinfo +0 -0
  149. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/ARCHITECTURE.md +0 -0
  150. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/src/cli.rs +0 -0
  151. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/src/pkgbuild_bridge/mod.rs +0 -0
  152. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/src/pkgbuild_bridge/package.rs +0 -0
  153. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/src/source_info/v1/package.rs +0 -0
  154. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct/all_cleared.pkgbuild +0 -0
  155. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct/all_cleared.srcinfo +0 -0
  156. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct/all_overrides.pkgbuild +0 -0
  157. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct/all_overrides.srcinfo +0 -0
  158. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct/custom_architecture.srcinfo +0 -0
  159. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct/full_pkgbase.pkgbuild +0 -0
  160. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct/full_pkgbase.srcinfo +0 -0
  161. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct/package_with_any_arch.pkgbuild +0 -0
  162. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct/package_with_any_arch.srcinfo +0 -0
  163. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct/pkgbase_with_any_arch.pkgbuild +0 -0
  164. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct/pkgbase_with_any_arch.srcinfo +0 -0
  165. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct/split_package.pkgbuild +0 -0
  166. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct/split_package.srcinfo +0 -0
  167. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct_snapshots/all_cleared_merged.snap +0 -0
  168. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct_snapshots/all_overrides_merged.snap +0 -0
  169. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct_snapshots/custom_architecture_merged.snap +0 -0
  170. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct_snapshots/package_with_any_arch_merged.snap +0 -0
  171. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct_snapshots/pkgbase_with_any_arch_merged.snap +0 -0
  172. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/correct_snapshots/split_package_merged.snap +0 -0
  173. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/integration.rs +0 -0
  174. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/parse_error_snapshots/invalid_pkgbase_header_delimiter.snap +0 -0
  175. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/parse_error_snapshots/missing_pkgbase.snap +0 -0
  176. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/parse_error_snapshots/missing_pkgname.snap +0 -0
  177. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/parse_errors/invalid_checksum.srcinfo +0 -0
  178. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/parse_errors/invalid_pkgbase_header_delimiter.srcinfo +0 -0
  179. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/parse_errors/invalid_property_delimiter.srcinfo +0 -0
  180. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/parse_errors/missing_pkgbase.srcinfo +0 -0
  181. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/parse_errors/missing_pkgname.srcinfo +0 -0
  182. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/parse_errors/unexpected_pkgbase_property.srcinfo +0 -0
  183. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/parse_errors/unexpected_pkgname_property.srcinfo +0 -0
  184. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/parser_whitespaces.rs +0 -0
  185. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/pkgbuild_correct/all_cleared.pkgbuild +0 -0
  186. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/pkgbuild_correct/all_overrides.pkgbuild +0 -0
  187. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/pkgbuild_correct/full_pkgbase.pkgbuild +0 -0
  188. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/pkgbuild_correct/simple.pkgbuild +0 -0
  189. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/pkgbuild_correct.rs +0 -0
  190. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/pkgbuild_correct_bridge_output/all_cleared_bridge.snap +0 -0
  191. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/pkgbuild_correct_bridge_output/all_overrides_bridge.snap +0 -0
  192. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/pkgbuild_correct_bridge_output/full_pkgbase_bridge.snap +0 -0
  193. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/pkgbuild_correct_bridge_output/simple_bridge.snap +0 -0
  194. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/pkgbuild_correct_snapshots/all_cleared_srcinfo.snap +0 -0
  195. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/pkgbuild_correct_snapshots/all_overrides_srcinfo.snap +0 -0
  196. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/pkgbuild_correct_snapshots/full_pkgbase_srcinfo.snap +0 -0
  197. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/pkgbuild_correct_snapshots/simple_srcinfo.snap +0 -0
  198. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/pkgbuild_invalid/cleared_architecture.pkgbuild +0 -0
  199. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/pkgbuild_invalid/cleared_array_on_single_value.pkgbuild +0 -0
  200. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/pkgbuild_invalid_snapshots/cleared_architecture_srcinfo.snap +0 -0
  201. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/pkgbuild_invalid_snapshots/cleared_array_on_single_value_srcinfo.snap +0 -0
  202. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/unit_test_files/normal.pkgbuild +0 -0
  203. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-srcinfo/tests/unit_test_files/normal.srcinfo +0 -0
  204. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/README.md +0 -0
  205. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/resources/specification/alpm-architecture.7.md +0 -0
  206. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/resources/specification/alpm-comparison.7.md +0 -0
  207. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/resources/specification/alpm-epoch.7.md +0 -0
  208. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/resources/specification/alpm-install-scriptlet.5.md +0 -0
  209. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/resources/specification/alpm-meta-package.7.md +0 -0
  210. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/resources/specification/alpm-package-base.7.md +0 -0
  211. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/resources/specification/alpm-package-group.7.md +0 -0
  212. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/resources/specification/alpm-package-name.7.md +0 -0
  213. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/resources/specification/alpm-package-source.7.md +0 -0
  214. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/resources/specification/alpm-package-version.7.md +0 -0
  215. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/resources/specification/alpm-pkgrel.7.md +0 -0
  216. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/resources/specification/alpm-soname.7.md +0 -0
  217. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/resources/specification/alpm-sonamev1.7.md +0 -0
  218. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/resources/specification/alpm-sonamev2.7.md +0 -0
  219. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/resources/specification/alpm-source-repo.7.md +0 -0
  220. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/resources/specification/alpm-split-package.7.md +0 -0
  221. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/compression.rs +0 -0
  222. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/date.rs +0 -0
  223. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/file_type.rs +0 -0
  224. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/license.rs +0 -0
  225. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/package/contents.rs +0 -0
  226. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/package/source.rs +0 -0
  227. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/size.rs +0 -0
  228. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/source.rs +0 -0
  229. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/system.rs +0 -0
  230. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/url.rs +0 -0
  231. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/version/comparison.rs +0 -0
  232. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/version/mod.rs +0 -0
  233. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/version/pkg_full.rs +0 -0
  234. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/src/version/schema.rs +0 -0
  235. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/create_error_snapshots/fail_to_create_package_file_name__case_1_version_without_pkgrel.snap +0 -0
  236. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/create_error_snapshots/fail_to_create_package_file_name__case_2_version_with_epoch_without_pkgrel.snap +0 -0
  237. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/from_path_snapshots/package_file_name_from_path_fails__case_1_no_file_name.snap +0 -0
  238. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_01_no_name.snap +0 -0
  239. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_02_no_name.snap +0 -0
  240. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_03_invalid_version.snap +0 -0
  241. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_04_no_version.snap +0 -0
  242. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_05_no_version_name_with_dashes.snap +0 -0
  243. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_06_invalid_architecture.snap +0 -0
  244. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_07_no_architecture.snap +0 -0
  245. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_08_no_architecture_name_with_dashes.snap +0 -0
  246. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_09_invalid_package_marker.snap +0 -0
  247. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_10_no_package_marker.snap +0 -0
  248. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_11_no_package_marker_name_with_dashes.snap +0 -0
  249. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_11_no_tar_ending.snap +0 -0
  250. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_12_invalid_compression.snap +0 -0
  251. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_12_no_package_marker_name_with_dashes.snap +0 -0
  252. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_13_invalid_dashes.snap +0 -0
  253. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_15_no_dashes.snap +0 -0
  254. {python_alpm-0.2.1 → python_alpm-0.4.0}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_16_no_dashes.snap +0 -0
  255. {python_alpm-0.2.1 → python_alpm-0.4.0}/python/alpm/__init__.py +0 -0
  256. {python_alpm-0.2.1 → python_alpm-0.4.0}/python/alpm/_native.pyi +0 -0
  257. {python_alpm-0.2.1 → python_alpm-0.4.0}/python/alpm/alpm_srcinfo/__init__.pyi +0 -0
  258. {python_alpm-0.2.1 → python_alpm-0.4.0}/python/alpm/alpm_srcinfo/error.pyi +0 -0
  259. {python_alpm-0.2.1 → python_alpm-0.4.0}/python/alpm/alpm_srcinfo/schema.pyi +0 -0
  260. {python_alpm-0.2.1 → python_alpm-0.4.0}/python/alpm/alpm_srcinfo/source_info/__init__.pyi +0 -0
  261. {python_alpm-0.2.1 → python_alpm-0.4.0}/python/alpm/alpm_srcinfo/source_info/v1/__init__.pyi +0 -0
  262. {python_alpm-0.2.1 → python_alpm-0.4.0}/python/alpm/alpm_srcinfo/source_info/v1/merged.pyi +0 -0
  263. {python_alpm-0.2.1 → python_alpm-0.4.0}/python/alpm/py.typed +0 -0
  264. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/ARCHITECTURE.md +0 -0
  265. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/cliff.toml +0 -0
  266. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/python/alpm/__init__.py +0 -0
  267. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/python/alpm/_native.pyi +0 -0
  268. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/python/alpm/alpm_srcinfo/__init__.pyi +0 -0
  269. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/python/alpm/alpm_srcinfo/error.pyi +0 -0
  270. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/python/alpm/alpm_srcinfo/schema.pyi +0 -0
  271. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/python/alpm/alpm_srcinfo/source_info/__init__.pyi +0 -0
  272. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/python/alpm/alpm_srcinfo/source_info/v1/__init__.pyi +0 -0
  273. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/python/alpm/alpm_srcinfo/source_info/v1/merged.pyi +0 -0
  274. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/python/alpm/py.typed +0 -0
  275. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/lib.rs +0 -0
  276. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/macros.rs +0 -0
  277. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/srcinfo/error.rs +0 -0
  278. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/srcinfo/mod.rs +0 -0
  279. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/srcinfo/schema.rs +0 -0
  280. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/srcinfo/source_info/mod.rs +0 -0
  281. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/srcinfo/source_info/v1/merged.rs +0 -0
  282. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/srcinfo/source_info/v1/mod.rs +0 -0
  283. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/types/env.rs +0 -0
  284. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/types/error.rs +0 -0
  285. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/types/license.rs +0 -0
  286. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/types/openpgp.rs +0 -0
  287. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/types/requirement.rs +0 -0
  288. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/types/source.rs +0 -0
  289. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/types/url.rs +0 -0
  290. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/src/types/version.rs +0 -0
  291. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/tests/conftest.py +0 -0
  292. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/tests/srcinfo/test_alpm_srcinfo_imports.py +0 -0
  293. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/tests/srcinfo/test_schema.py +0 -0
  294. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/tests/srcinfo/test_source_info.py +0 -0
  295. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/tests/srcinfo/test_source_info_v1.py +0 -0
  296. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/tests/types/test_checksum.py +0 -0
  297. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/tests/types/test_env.py +0 -0
  298. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/tests/types/test_license.py +0 -0
  299. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/tests/types/test_openpgp.py +0 -0
  300. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/tests/types/test_requirement.py +0 -0
  301. {python_alpm-0.2.1 → python_alpm-0.4.0}/python-alpm/tests/types/test_url.py +0 -0
@@ -8,6 +8,51 @@ version = "2.0.1"
8
8
  source = "registry+https://github.com/rust-lang/crates.io-index"
9
9
  checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
10
 
11
+ [[package]]
12
+ name = "aead"
13
+ version = "0.5.2"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
16
+ dependencies = [
17
+ "bytes",
18
+ "crypto-common",
19
+ "generic-array",
20
+ ]
21
+
22
+ [[package]]
23
+ name = "aes"
24
+ version = "0.8.4"
25
+ source = "registry+https://github.com/rust-lang/crates.io-index"
26
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
27
+ dependencies = [
28
+ "cfg-if",
29
+ "cipher",
30
+ "cpufeatures",
31
+ ]
32
+
33
+ [[package]]
34
+ name = "aes-gcm"
35
+ version = "0.10.3"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
38
+ dependencies = [
39
+ "aead",
40
+ "aes",
41
+ "cipher",
42
+ "ctr",
43
+ "ghash",
44
+ "subtle",
45
+ ]
46
+
47
+ [[package]]
48
+ name = "aes-kw"
49
+ version = "0.2.1"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "69fa2b352dcefb5f7f3a5fb840e02665d311d878955380515e4fd50095dd3d8c"
52
+ dependencies = [
53
+ "aes",
54
+ ]
55
+
11
56
  [[package]]
12
57
  name = "aho-corasick"
13
58
  version = "1.1.4"
@@ -19,17 +64,19 @@ dependencies = [
19
64
 
20
65
  [[package]]
21
66
  name = "alpm-buildinfo"
22
- version = "0.4.0"
67
+ version = "0.5.1"
23
68
  dependencies = [
24
69
  "alpm-common",
25
70
  "alpm-parsers",
26
71
  "alpm-types",
27
72
  "assert_cmd",
28
73
  "clap",
74
+ "fluent-i18n",
29
75
  "insta",
30
76
  "rstest",
31
77
  "serde",
32
78
  "serde_json",
79
+ "serde_more",
33
80
  "serde_with",
34
81
  "strum",
35
82
  "tempfile",
@@ -39,7 +86,7 @@ dependencies = [
39
86
 
40
87
  [[package]]
41
88
  name = "alpm-common"
42
- version = "0.1.3"
89
+ version = "0.2.1"
43
90
  dependencies = [
44
91
  "alpm-types",
45
92
  "fluent-i18n",
@@ -51,11 +98,12 @@ dependencies = [
51
98
 
52
99
  [[package]]
53
100
  name = "alpm-compress"
54
- version = "0.1.0"
101
+ version = "0.1.2"
55
102
  dependencies = [
56
103
  "alpm-types",
57
104
  "bzip2",
58
105
  "flate2",
106
+ "fluent-i18n",
59
107
  "liblzma",
60
108
  "log",
61
109
  "num_cpus",
@@ -70,11 +118,30 @@ dependencies = [
70
118
 
71
119
  [[package]]
72
120
  name = "alpm-db"
73
- version = "0.1.0"
121
+ version = "0.2.0"
122
+ dependencies = [
123
+ "alpm-common",
124
+ "alpm-parsers",
125
+ "alpm-types",
126
+ "assert_cmd",
127
+ "clap",
128
+ "fluent-i18n",
129
+ "insta",
130
+ "pretty_assertions",
131
+ "rstest",
132
+ "serde",
133
+ "serde_json",
134
+ "serde_with",
135
+ "strum",
136
+ "tempfile",
137
+ "testresult",
138
+ "thiserror",
139
+ "winnow",
140
+ ]
74
141
 
75
142
  [[package]]
76
143
  name = "alpm-lint"
77
- version = "0.1.1"
144
+ version = "0.3.0"
78
145
  dependencies = [
79
146
  "alpm-buildinfo",
80
147
  "alpm-common",
@@ -85,7 +152,7 @@ dependencies = [
85
152
  "alpm-types",
86
153
  "assert_cmd",
87
154
  "clap",
88
- "clap-verbosity",
155
+ "clap-verbosity-flag",
89
156
  "colored",
90
157
  "documented",
91
158
  "insta",
@@ -102,9 +169,10 @@ dependencies = [
102
169
 
103
170
  [[package]]
104
171
  name = "alpm-lint-config"
105
- version = "0.1.0"
172
+ version = "0.1.1"
106
173
  dependencies = [
107
174
  "clap",
175
+ "fluent-i18n",
108
176
  "serde",
109
177
  "strum",
110
178
  "tempfile",
@@ -115,7 +183,7 @@ dependencies = [
115
183
 
116
184
  [[package]]
117
185
  name = "alpm-mtree"
118
- version = "0.2.3"
186
+ version = "0.3.1"
119
187
  dependencies = [
120
188
  "alpm-common",
121
189
  "alpm-parsers",
@@ -124,6 +192,7 @@ dependencies = [
124
192
  "clap",
125
193
  "filetime",
126
194
  "flate2",
195
+ "fluent-i18n",
127
196
  "insta",
128
197
  "log",
129
198
  "rstest",
@@ -140,7 +209,7 @@ dependencies = [
140
209
 
141
210
  [[package]]
142
211
  name = "alpm-package"
143
- version = "0.3.0"
212
+ version = "0.4.1"
144
213
  dependencies = [
145
214
  "alpm-buildinfo",
146
215
  "alpm-common",
@@ -149,6 +218,7 @@ dependencies = [
149
218
  "alpm-pkginfo",
150
219
  "alpm-types",
151
220
  "filetime",
221
+ "fluent-i18n",
152
222
  "log",
153
223
  "rstest",
154
224
  "simplelog",
@@ -160,7 +230,7 @@ dependencies = [
160
230
 
161
231
  [[package]]
162
232
  name = "alpm-parsers"
163
- version = "0.3.1"
233
+ version = "0.4.1"
164
234
  dependencies = [
165
235
  "insta",
166
236
  "rstest",
@@ -171,11 +241,12 @@ dependencies = [
171
241
 
172
242
  [[package]]
173
243
  name = "alpm-pkgbuild"
174
- version = "0.2.1"
244
+ version = "0.2.3"
175
245
  dependencies = [
176
246
  "alpm-parsers",
177
247
  "alpm-types",
178
248
  "assert_cmd",
249
+ "fluent-i18n",
179
250
  "insta",
180
251
  "log",
181
252
  "rstest",
@@ -190,13 +261,14 @@ dependencies = [
190
261
 
191
262
  [[package]]
192
263
  name = "alpm-pkginfo"
193
- version = "0.4.0"
264
+ version = "0.6.0"
194
265
  dependencies = [
195
266
  "alpm-common",
196
267
  "alpm-parsers",
197
268
  "alpm-types",
198
269
  "assert_cmd",
199
270
  "clap",
271
+ "fluent-i18n",
200
272
  "insta",
201
273
  "pretty_assertions",
202
274
  "rstest",
@@ -207,7 +279,6 @@ dependencies = [
207
279
  "tempfile",
208
280
  "testresult",
209
281
  "thiserror",
210
- "winnow",
211
282
  ]
212
283
 
213
284
  [[package]]
@@ -217,10 +288,28 @@ version = "0.1.0"
217
288
  [[package]]
218
289
  name = "alpm-repo-db"
219
290
  version = "0.1.0"
291
+ dependencies = [
292
+ "alpm-common",
293
+ "alpm-parsers",
294
+ "alpm-types",
295
+ "assert_cmd",
296
+ "clap",
297
+ "fluent-i18n",
298
+ "insta",
299
+ "pretty_assertions",
300
+ "rstest",
301
+ "serde",
302
+ "serde_json",
303
+ "strum",
304
+ "tempfile",
305
+ "testresult",
306
+ "thiserror",
307
+ "winnow",
308
+ ]
220
309
 
221
310
  [[package]]
222
311
  name = "alpm-soname"
223
- version = "0.2.0"
312
+ version = "0.4.0"
224
313
  dependencies = [
225
314
  "alpm-compress",
226
315
  "alpm-mtree",
@@ -229,7 +318,8 @@ dependencies = [
229
318
  "alpm-types",
230
319
  "assert_cmd",
231
320
  "clap",
232
- "clap-verbosity",
321
+ "clap-verbosity-flag",
322
+ "fluent-i18n",
233
323
  "goblin",
234
324
  "log",
235
325
  "rstest",
@@ -244,7 +334,7 @@ dependencies = [
244
334
 
245
335
  [[package]]
246
336
  name = "alpm-srcinfo"
247
- version = "0.5.0"
337
+ version = "0.6.1"
248
338
  dependencies = [
249
339
  "alpm-common",
250
340
  "alpm-parsers",
@@ -252,6 +342,7 @@ dependencies = [
252
342
  "alpm-types",
253
343
  "assert_cmd",
254
344
  "clap",
345
+ "fluent-i18n",
255
346
  "insta",
256
347
  "pretty_assertions",
257
348
  "rstest",
@@ -270,12 +361,15 @@ version = "0.1.0"
270
361
 
271
362
  [[package]]
272
363
  name = "alpm-types"
273
- version = "0.9.0"
364
+ version = "0.11.0"
274
365
  dependencies = [
275
366
  "alpm-parsers",
367
+ "base64",
276
368
  "blake2",
369
+ "crc-fast",
277
370
  "digest",
278
371
  "email_address",
372
+ "fluent-i18n",
279
373
  "insta",
280
374
  "log",
281
375
  "md-5",
@@ -284,6 +378,7 @@ dependencies = [
284
378
  "semver",
285
379
  "serde",
286
380
  "serde_json",
381
+ "serde_with",
287
382
  "sha1",
288
383
  "sha2",
289
384
  "simplelog",
@@ -305,21 +400,6 @@ dependencies = [
305
400
  "libc",
306
401
  ]
307
402
 
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
403
  [[package]]
324
404
  name = "anstream"
325
405
  version = "0.6.21"
@@ -329,7 +409,7 @@ dependencies = [
329
409
  "anstyle",
330
410
  "anstyle-parse",
331
411
  "anstyle-query",
332
- "anstyle-wincon 3.0.10",
412
+ "anstyle-wincon",
333
413
  "colorchoice",
334
414
  "is_terminal_polyfill",
335
415
  "utf8parse",
@@ -352,40 +432,37 @@ dependencies = [
352
432
 
353
433
  [[package]]
354
434
  name = "anstyle-query"
355
- version = "1.1.4"
435
+ version = "1.1.5"
356
436
  source = "registry+https://github.com/rust-lang/crates.io-index"
357
- checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
437
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
358
438
  dependencies = [
359
- "windows-sys 0.60.2",
439
+ "windows-sys 0.61.2",
360
440
  ]
361
441
 
362
442
  [[package]]
363
443
  name = "anstyle-wincon"
364
- version = "1.0.2"
444
+ version = "3.0.11"
365
445
  source = "registry+https://github.com/rust-lang/crates.io-index"
366
- checksum = "c677ab05e09154296dd37acecd46420c17b9713e8366facafa8fc0885167cf4c"
446
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
367
447
  dependencies = [
368
448
  "anstyle",
369
- "windows-sys 0.48.0",
449
+ "once_cell_polyfill",
450
+ "windows-sys 0.61.2",
370
451
  ]
371
452
 
372
453
  [[package]]
373
- name = "anstyle-wincon"
374
- version = "3.0.10"
454
+ name = "argon2"
455
+ version = "0.5.3"
375
456
  source = "registry+https://github.com/rust-lang/crates.io-index"
376
- checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
457
+ checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072"
377
458
  dependencies = [
378
- "anstyle",
379
- "once_cell_polyfill",
380
- "windows-sys 0.60.2",
459
+ "base64ct",
460
+ "blake2",
461
+ "cpufeatures",
462
+ "password-hash",
463
+ "zeroize",
381
464
  ]
382
465
 
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
466
  [[package]]
390
467
  name = "assert_cmd"
391
468
  version = "2.1.1"
@@ -413,12 +490,24 @@ version = "1.5.0"
413
490
  source = "registry+https://github.com/rust-lang/crates.io-index"
414
491
  checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
415
492
 
493
+ [[package]]
494
+ name = "base16ct"
495
+ version = "0.2.0"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
498
+
416
499
  [[package]]
417
500
  name = "base64"
418
501
  version = "0.22.1"
419
502
  source = "registry+https://github.com/rust-lang/crates.io-index"
420
503
  checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
421
504
 
505
+ [[package]]
506
+ name = "base64ct"
507
+ version = "1.8.1"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "0e050f626429857a27ddccb31e0aca21356bfa709c04041aefddac081a8f068a"
510
+
422
511
  [[package]]
423
512
  name = "bit-set"
424
513
  version = "0.8.0"
@@ -434,12 +523,45 @@ version = "0.8.0"
434
523
  source = "registry+https://github.com/rust-lang/crates.io-index"
435
524
  checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
436
525
 
526
+ [[package]]
527
+ name = "bitfields"
528
+ version = "1.0.2"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "d866f92dc1574aa8da443eacb06ad8fbe4056dbc1b7c3aae508cbccd46c7e706"
531
+ dependencies = [
532
+ "bitfields-impl",
533
+ ]
534
+
535
+ [[package]]
536
+ name = "bitfields-impl"
537
+ version = "1.0.2"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "c09459e6af3016ea58af8332e31d5da117d33a621bad7019355eefccc4a567d4"
540
+ dependencies = [
541
+ "proc-macro2",
542
+ "quote",
543
+ "syn",
544
+ "thiserror",
545
+ ]
546
+
437
547
  [[package]]
438
548
  name = "bitflags"
439
549
  version = "2.10.0"
440
550
  source = "registry+https://github.com/rust-lang/crates.io-index"
441
551
  checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
442
552
 
553
+ [[package]]
554
+ name = "bitvec"
555
+ version = "1.0.1"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
558
+ dependencies = [
559
+ "funty",
560
+ "radium",
561
+ "tap",
562
+ "wyz",
563
+ ]
564
+
443
565
  [[package]]
444
566
  name = "blake2"
445
567
  version = "0.10.6"
@@ -458,6 +580,25 @@ dependencies = [
458
580
  "generic-array",
459
581
  ]
460
582
 
583
+ [[package]]
584
+ name = "block-padding"
585
+ version = "0.3.3"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
588
+ dependencies = [
589
+ "generic-array",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "blowfish"
594
+ version = "0.9.1"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7"
597
+ dependencies = [
598
+ "byteorder",
599
+ "cipher",
600
+ ]
601
+
461
602
  [[package]]
462
603
  name = "bstr"
463
604
  version = "1.12.1"
@@ -469,17 +610,32 @@ dependencies = [
469
610
  "serde",
470
611
  ]
471
612
 
613
+ [[package]]
614
+ name = "buffer-redux"
615
+ version = "1.1.0"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "431a9cc8d7efa49bc326729264537f5e60affce816c66edf434350778c9f4f54"
618
+ dependencies = [
619
+ "memchr",
620
+ ]
621
+
472
622
  [[package]]
473
623
  name = "bumpalo"
474
- version = "3.19.0"
624
+ version = "3.19.1"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
627
+
628
+ [[package]]
629
+ name = "byteorder"
630
+ version = "1.5.0"
475
631
  source = "registry+https://github.com/rust-lang/crates.io-index"
476
- checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
632
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
477
633
 
478
634
  [[package]]
479
635
  name = "bytes"
480
- version = "1.10.1"
636
+ version = "1.11.0"
481
637
  source = "registry+https://github.com/rust-lang/crates.io-index"
482
- checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
638
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
483
639
 
484
640
  [[package]]
485
641
  name = "bzip2"
@@ -490,11 +646,30 @@ dependencies = [
490
646
  "libbz2-rs-sys",
491
647
  ]
492
648
 
649
+ [[package]]
650
+ name = "camellia"
651
+ version = "0.1.0"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "3264e2574e9ef2b53ce6f536dea83a69ac0bc600b762d1523ff83fe07230ce30"
654
+ dependencies = [
655
+ "byteorder",
656
+ "cipher",
657
+ ]
658
+
659
+ [[package]]
660
+ name = "cast5"
661
+ version = "0.11.1"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "26b07d673db1ccf000e90f54b819db9e75a8348d6eb056e9b8ab53231b7a9911"
664
+ dependencies = [
665
+ "cipher",
666
+ ]
667
+
493
668
  [[package]]
494
669
  name = "cc"
495
- version = "1.2.44"
670
+ version = "1.2.49"
496
671
  source = "registry+https://github.com/rust-lang/crates.io-index"
497
- checksum = "37521ac7aabe3d13122dc382493e20c9416f299d2ccd5b3a5340a2570cdeb0f3"
672
+ checksum = "90583009037521a116abf44494efecd645ba48b6622457080f080b85544e2215"
498
673
  dependencies = [
499
674
  "find-msvc-tools",
500
675
  "jobserver",
@@ -502,6 +677,15 @@ dependencies = [
502
677
  "shlex",
503
678
  ]
504
679
 
680
+ [[package]]
681
+ name = "cfb-mode"
682
+ version = "0.8.2"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "738b8d467867f80a71351933f70461f5b56f24d5c93e0cf216e59229c968d330"
685
+ dependencies = [
686
+ "cipher",
687
+ ]
688
+
505
689
  [[package]]
506
690
  name = "cfg-if"
507
691
  version = "1.0.4"
@@ -521,39 +705,50 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
521
705
  checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
522
706
  dependencies = [
523
707
  "iana-time-zone",
708
+ "js-sys",
524
709
  "num-traits",
525
710
  "serde",
711
+ "wasm-bindgen",
526
712
  "windows-link",
527
713
  ]
528
714
 
715
+ [[package]]
716
+ name = "cipher"
717
+ version = "0.4.4"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
720
+ dependencies = [
721
+ "crypto-common",
722
+ "inout",
723
+ ]
724
+
529
725
  [[package]]
530
726
  name = "clap"
531
- version = "4.5.51"
727
+ version = "4.5.53"
532
728
  source = "registry+https://github.com/rust-lang/crates.io-index"
533
- checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5"
729
+ checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
534
730
  dependencies = [
535
731
  "clap_builder",
536
732
  "clap_derive",
537
733
  ]
538
734
 
539
735
  [[package]]
540
- name = "clap-verbosity"
541
- version = "2.1.0"
736
+ name = "clap-verbosity-flag"
737
+ version = "3.0.4"
542
738
  source = "registry+https://github.com/rust-lang/crates.io-index"
543
- checksum = "3d7bf75a8e0407a558bd7e8e7919baa352e21fb0c1c7702a63c853f2277c4c63"
739
+ checksum = "9d92b1fab272fe943881b77cc6e920d6543e5b1bfadbd5ed81c7c5a755742394"
544
740
  dependencies = [
545
741
  "clap",
546
742
  "log",
547
- "serde",
548
743
  ]
549
744
 
550
745
  [[package]]
551
746
  name = "clap_builder"
552
- version = "4.5.51"
747
+ version = "4.5.53"
553
748
  source = "registry+https://github.com/rust-lang/crates.io-index"
554
- checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a"
749
+ checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
555
750
  dependencies = [
556
- "anstream 0.6.21",
751
+ "anstream",
557
752
  "anstyle",
558
753
  "clap_lex",
559
754
  "strsim",
@@ -578,6 +773,17 @@ version = "0.7.6"
578
773
  source = "registry+https://github.com/rust-lang/crates.io-index"
579
774
  checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
580
775
 
776
+ [[package]]
777
+ name = "cmac"
778
+ version = "0.7.2"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "8543454e3c3f5126effff9cd44d562af4e31fb8ce1cc0d3dcd8f084515dbc1aa"
781
+ dependencies = [
782
+ "cipher",
783
+ "dbl",
784
+ "digest",
785
+ ]
786
+
581
787
  [[package]]
582
788
  name = "colorchoice"
583
789
  version = "1.0.4"
@@ -607,9 +813,9 @@ dependencies = [
607
813
 
608
814
  [[package]]
609
815
  name = "console"
610
- version = "0.16.1"
816
+ version = "0.16.2"
611
817
  source = "registry+https://github.com/rust-lang/crates.io-index"
612
- checksum = "b430743a6eb14e9764d4260d4c0d8123087d504eeb9c48f2b2a5e810dd369df4"
818
+ checksum = "03e45a4a8926227e4197636ba97a9fc9b00477e9f4bd711395687c5f0734bec4"
613
819
  dependencies = [
614
820
  "encode_unicode",
615
821
  "libc",
@@ -618,6 +824,12 @@ dependencies = [
618
824
  "windows-sys 0.61.2",
619
825
  ]
620
826
 
827
+ [[package]]
828
+ name = "const-oid"
829
+ version = "0.9.6"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
832
+
621
833
  [[package]]
622
834
  name = "convert_case"
623
835
  version = "0.8.0"
@@ -627,6 +839,15 @@ dependencies = [
627
839
  "unicode-segmentation",
628
840
  ]
629
841
 
842
+ [[package]]
843
+ name = "convert_case"
844
+ version = "0.10.0"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
847
+ dependencies = [
848
+ "unicode-segmentation",
849
+ ]
850
+
630
851
  [[package]]
631
852
  name = "core-foundation-sys"
632
853
  version = "0.8.7"
@@ -642,6 +863,39 @@ dependencies = [
642
863
  "libc",
643
864
  ]
644
865
 
866
+ [[package]]
867
+ name = "crc"
868
+ version = "3.4.0"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
871
+ dependencies = [
872
+ "crc-catalog",
873
+ ]
874
+
875
+ [[package]]
876
+ name = "crc-catalog"
877
+ version = "2.4.0"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
880
+
881
+ [[package]]
882
+ name = "crc-fast"
883
+ version = "1.8.1"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "2c15e7f62c7d6e256e6d0fc3fc1ef395348e4bc395dcf14d6990da0e5aa6e8b0"
886
+ dependencies = [
887
+ "crc",
888
+ "digest",
889
+ "rustversion",
890
+ "spin 0.10.0",
891
+ ]
892
+
893
+ [[package]]
894
+ name = "crc24"
895
+ version = "0.1.6"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "fd121741cf3eb82c08dd3023eb55bf2665e5f60ec20f89760cf836ae4562e6a0"
898
+
645
899
  [[package]]
646
900
  name = "crc32fast"
647
901
  version = "1.5.0"
@@ -676,24 +930,114 @@ version = "0.8.21"
676
930
  source = "registry+https://github.com/rust-lang/crates.io-index"
677
931
  checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
678
932
 
933
+ [[package]]
934
+ name = "crypto-bigint"
935
+ version = "0.5.5"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
938
+ dependencies = [
939
+ "generic-array",
940
+ "rand_core 0.6.4",
941
+ "subtle",
942
+ "zeroize",
943
+ ]
944
+
679
945
  [[package]]
680
946
  name = "crypto-common"
681
- version = "0.1.6"
947
+ version = "0.1.7"
682
948
  source = "registry+https://github.com/rust-lang/crates.io-index"
683
- checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
949
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
684
950
  dependencies = [
685
951
  "generic-array",
952
+ "rand_core 0.6.4",
686
953
  "typenum",
687
954
  ]
688
955
 
956
+ [[package]]
957
+ name = "ctr"
958
+ version = "0.9.2"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
961
+ dependencies = [
962
+ "cipher",
963
+ ]
964
+
965
+ [[package]]
966
+ name = "curve25519-dalek"
967
+ version = "4.1.3"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
970
+ dependencies = [
971
+ "cfg-if",
972
+ "cpufeatures",
973
+ "curve25519-dalek-derive",
974
+ "digest",
975
+ "fiat-crypto",
976
+ "rustc_version",
977
+ "subtle",
978
+ "zeroize",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "curve25519-dalek-derive"
983
+ version = "0.1.1"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
986
+ dependencies = [
987
+ "proc-macro2",
988
+ "quote",
989
+ "syn",
990
+ ]
991
+
992
+ [[package]]
993
+ name = "cx448"
994
+ version = "0.1.1"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "b4c0cf476284b03eb6c10e78787b21c7abb7d7d43cb2f02532ba6b831ed892fa"
997
+ dependencies = [
998
+ "crypto-bigint",
999
+ "elliptic-curve",
1000
+ "pkcs8",
1001
+ "rand_core 0.6.4",
1002
+ "serdect 0.3.0",
1003
+ "sha3",
1004
+ "signature",
1005
+ "subtle",
1006
+ "zeroize",
1007
+ ]
1008
+
1009
+ [[package]]
1010
+ name = "darling"
1011
+ version = "0.20.11"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
1014
+ dependencies = [
1015
+ "darling_core 0.20.11",
1016
+ "darling_macro 0.20.11",
1017
+ ]
1018
+
689
1019
  [[package]]
690
1020
  name = "darling"
691
1021
  version = "0.21.3"
692
1022
  source = "registry+https://github.com/rust-lang/crates.io-index"
693
1023
  checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
694
1024
  dependencies = [
695
- "darling_core",
696
- "darling_macro",
1025
+ "darling_core 0.21.3",
1026
+ "darling_macro 0.21.3",
1027
+ ]
1028
+
1029
+ [[package]]
1030
+ name = "darling_core"
1031
+ version = "0.20.11"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
1034
+ dependencies = [
1035
+ "fnv",
1036
+ "ident_case",
1037
+ "proc-macro2",
1038
+ "quote",
1039
+ "strsim",
1040
+ "syn",
697
1041
  ]
698
1042
 
699
1043
  [[package]]
@@ -710,17 +1054,48 @@ dependencies = [
710
1054
  "syn",
711
1055
  ]
712
1056
 
1057
+ [[package]]
1058
+ name = "darling_macro"
1059
+ version = "0.20.11"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
1062
+ dependencies = [
1063
+ "darling_core 0.20.11",
1064
+ "quote",
1065
+ "syn",
1066
+ ]
1067
+
713
1068
  [[package]]
714
1069
  name = "darling_macro"
715
1070
  version = "0.21.3"
716
1071
  source = "registry+https://github.com/rust-lang/crates.io-index"
717
1072
  checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
718
1073
  dependencies = [
719
- "darling_core",
1074
+ "darling_core 0.21.3",
720
1075
  "quote",
721
1076
  "syn",
722
1077
  ]
723
1078
 
1079
+ [[package]]
1080
+ name = "dbl"
1081
+ version = "0.3.2"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "bd2735a791158376708f9347fe8faba9667589d82427ef3aed6794a8981de3d9"
1084
+ dependencies = [
1085
+ "generic-array",
1086
+ ]
1087
+
1088
+ [[package]]
1089
+ name = "der"
1090
+ version = "0.7.10"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
1093
+ dependencies = [
1094
+ "const-oid",
1095
+ "pem-rfc7468",
1096
+ "zeroize",
1097
+ ]
1098
+
724
1099
  [[package]]
725
1100
  name = "deranged"
726
1101
  version = "0.5.5"
@@ -731,6 +1106,69 @@ dependencies = [
731
1106
  "serde_core",
732
1107
  ]
733
1108
 
1109
+ [[package]]
1110
+ name = "derive_builder"
1111
+ version = "0.20.2"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
1114
+ dependencies = [
1115
+ "derive_builder_macro",
1116
+ ]
1117
+
1118
+ [[package]]
1119
+ name = "derive_builder_core"
1120
+ version = "0.20.2"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
1123
+ dependencies = [
1124
+ "darling 0.20.11",
1125
+ "proc-macro2",
1126
+ "quote",
1127
+ "syn",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "derive_builder_macro"
1132
+ version = "0.20.2"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
1135
+ dependencies = [
1136
+ "derive_builder_core",
1137
+ "syn",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "derive_more"
1142
+ version = "2.1.0"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "10b768e943bed7bf2cab53df09f4bc34bfd217cdb57d971e769874c9a6710618"
1145
+ dependencies = [
1146
+ "derive_more-impl",
1147
+ ]
1148
+
1149
+ [[package]]
1150
+ name = "derive_more-impl"
1151
+ version = "2.1.0"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "6d286bfdaf75e988b4a78e013ecd79c581e06399ab53fbacd2d916c2f904f30b"
1154
+ dependencies = [
1155
+ "convert_case 0.10.0",
1156
+ "proc-macro2",
1157
+ "quote",
1158
+ "rustc_version",
1159
+ "syn",
1160
+ "unicode-xid",
1161
+ ]
1162
+
1163
+ [[package]]
1164
+ name = "des"
1165
+ version = "0.8.1"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "ffdd80ce8ce993de27e9f063a444a4d53ce8e8db4c1f00cc03af5ad5a9867a1e"
1168
+ dependencies = [
1169
+ "cipher",
1170
+ ]
1171
+
734
1172
  [[package]]
735
1173
  name = "dev-scripts"
736
1174
  version = "0.0.0"
@@ -738,12 +1176,12 @@ dependencies = [
738
1176
  "alpm-buildinfo",
739
1177
  "alpm-common",
740
1178
  "alpm-mtree",
741
- "alpm-pkgbuild",
742
1179
  "alpm-pkginfo",
743
1180
  "alpm-srcinfo",
744
- "anyhow",
1181
+ "alpm-types",
745
1182
  "assert_cmd",
746
1183
  "clap",
1184
+ "clap-verbosity-flag",
747
1185
  "colored",
748
1186
  "dirs",
749
1187
  "flate2",
@@ -758,6 +1196,8 @@ dependencies = [
758
1196
  "strum",
759
1197
  "tempfile",
760
1198
  "testresult",
1199
+ "thiserror",
1200
+ "voa",
761
1201
  "winnow",
762
1202
  ]
763
1203
 
@@ -780,10 +1220,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
780
1220
  checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
781
1221
  dependencies = [
782
1222
  "block-buffer",
1223
+ "const-oid",
783
1224
  "crypto-common",
784
1225
  "subtle",
785
1226
  ]
786
1227
 
1228
+ [[package]]
1229
+ name = "directories"
1230
+ version = "6.0.0"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "16f5094c54661b38d03bd7e50df373292118db60b585c08a411c6d840017fe7d"
1233
+ dependencies = [
1234
+ "dirs-sys",
1235
+ ]
1236
+
787
1237
  [[package]]
788
1238
  name = "dirs"
789
1239
  version = "6.0.0"
@@ -833,7 +1283,7 @@ version = "0.9.2"
833
1283
  source = "registry+https://github.com/rust-lang/crates.io-index"
834
1284
  checksum = "1149cf7462e5e79e17a3c05fd5b1f9055092bbfa95e04c319395c3beacc9370f"
835
1285
  dependencies = [
836
- "convert_case",
1286
+ "convert_case 0.8.0",
837
1287
  "itertools",
838
1288
  "optfield",
839
1289
  "proc-macro2",
@@ -842,18 +1292,111 @@ dependencies = [
842
1292
  "syn",
843
1293
  ]
844
1294
 
1295
+ [[package]]
1296
+ name = "dsa"
1297
+ version = "0.6.3"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "48bc224a9084ad760195584ce5abb3c2c34a225fa312a128ad245a6b412b7689"
1300
+ dependencies = [
1301
+ "digest",
1302
+ "num-bigint-dig",
1303
+ "num-traits",
1304
+ "pkcs8",
1305
+ "rfc6979",
1306
+ "sha2",
1307
+ "signature",
1308
+ "zeroize",
1309
+ ]
1310
+
845
1311
  [[package]]
846
1312
  name = "dyn-clone"
847
1313
  version = "1.0.20"
848
1314
  source = "registry+https://github.com/rust-lang/crates.io-index"
849
1315
  checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
850
1316
 
1317
+ [[package]]
1318
+ name = "eax"
1319
+ version = "0.5.0"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "9954fabd903b82b9d7a68f65f97dc96dd9ad368e40ccc907a7c19d53e6bfac28"
1322
+ dependencies = [
1323
+ "aead",
1324
+ "cipher",
1325
+ "cmac",
1326
+ "ctr",
1327
+ "subtle",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "ecdsa"
1332
+ version = "0.16.9"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
1335
+ dependencies = [
1336
+ "der",
1337
+ "digest",
1338
+ "elliptic-curve",
1339
+ "rfc6979",
1340
+ "signature",
1341
+ "spki",
1342
+ ]
1343
+
1344
+ [[package]]
1345
+ name = "ed25519"
1346
+ version = "2.2.3"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
1349
+ dependencies = [
1350
+ "pkcs8",
1351
+ "signature",
1352
+ ]
1353
+
1354
+ [[package]]
1355
+ name = "ed25519-dalek"
1356
+ version = "2.2.0"
1357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1358
+ checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
1359
+ dependencies = [
1360
+ "curve25519-dalek",
1361
+ "ed25519",
1362
+ "rand_core 0.6.4",
1363
+ "serde",
1364
+ "sha2",
1365
+ "subtle",
1366
+ "zeroize",
1367
+ ]
1368
+
851
1369
  [[package]]
852
1370
  name = "either"
853
1371
  version = "1.15.0"
854
1372
  source = "registry+https://github.com/rust-lang/crates.io-index"
855
1373
  checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
856
1374
 
1375
+ [[package]]
1376
+ name = "elliptic-curve"
1377
+ version = "0.13.8"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
1380
+ dependencies = [
1381
+ "base16ct",
1382
+ "base64ct",
1383
+ "crypto-bigint",
1384
+ "digest",
1385
+ "ff",
1386
+ "generic-array",
1387
+ "group",
1388
+ "hkdf",
1389
+ "pem-rfc7468",
1390
+ "pkcs8",
1391
+ "rand_core 0.6.4",
1392
+ "sec1",
1393
+ "serde_json",
1394
+ "serdect 0.2.0",
1395
+ "subtle",
1396
+ "tap",
1397
+ "zeroize",
1398
+ ]
1399
+
857
1400
  [[package]]
858
1401
  name = "email_address"
859
1402
  version = "0.2.9"
@@ -878,12 +1421,35 @@ dependencies = [
878
1421
  "cfg-if",
879
1422
  ]
880
1423
 
1424
+ [[package]]
1425
+ name = "env_filter"
1426
+ version = "0.1.4"
1427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1428
+ checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
1429
+ dependencies = [
1430
+ "log",
1431
+ "regex",
1432
+ ]
1433
+
881
1434
  [[package]]
882
1435
  name = "env_home"
883
1436
  version = "0.1.0"
884
1437
  source = "registry+https://github.com/rust-lang/crates.io-index"
885
1438
  checksum = "c7f84e12ccf0a7ddc17a6c41c93326024c42920d7ee630d04950e6926645c0fe"
886
1439
 
1440
+ [[package]]
1441
+ name = "env_logger"
1442
+ version = "0.11.8"
1443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1444
+ checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
1445
+ dependencies = [
1446
+ "anstream",
1447
+ "anstyle",
1448
+ "env_filter",
1449
+ "jiff",
1450
+ "log",
1451
+ ]
1452
+
887
1453
  [[package]]
888
1454
  name = "equivalent"
889
1455
  version = "1.0.2"
@@ -906,6 +1472,23 @@ version = "2.3.0"
906
1472
  source = "registry+https://github.com/rust-lang/crates.io-index"
907
1473
  checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
908
1474
 
1475
+ [[package]]
1476
+ name = "ff"
1477
+ version = "0.13.1"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
1480
+ dependencies = [
1481
+ "bitvec",
1482
+ "rand_core 0.6.4",
1483
+ "subtle",
1484
+ ]
1485
+
1486
+ [[package]]
1487
+ name = "fiat-crypto"
1488
+ version = "0.2.9"
1489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1490
+ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
1491
+
909
1492
  [[package]]
910
1493
  name = "filetime"
911
1494
  version = "0.2.26"
@@ -920,9 +1503,9 @@ dependencies = [
920
1503
 
921
1504
  [[package]]
922
1505
  name = "find-msvc-tools"
923
- version = "0.1.4"
1506
+ version = "0.1.5"
924
1507
  source = "registry+https://github.com/rust-lang/crates.io-index"
925
- checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
1508
+ checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
926
1509
 
927
1510
  [[package]]
928
1511
  name = "flate2"
@@ -931,6 +1514,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
931
1514
  checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
932
1515
  dependencies = [
933
1516
  "crc32fast",
1517
+ "libz-rs-sys",
934
1518
  "miniz_oxide",
935
1519
  ]
936
1520
 
@@ -1019,7 +1603,7 @@ version = "0.11.1"
1019
1603
  source = "registry+https://github.com/rust-lang/crates.io-index"
1020
1604
  checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
1021
1605
  dependencies = [
1022
- "spin",
1606
+ "spin 0.9.8",
1023
1607
  ]
1024
1608
 
1025
1609
  [[package]]
@@ -1037,6 +1621,12 @@ dependencies = [
1037
1621
  "percent-encoding",
1038
1622
  ]
1039
1623
 
1624
+ [[package]]
1625
+ name = "funty"
1626
+ version = "2.0.0"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
1629
+
1040
1630
  [[package]]
1041
1631
  name = "futures-channel"
1042
1632
  version = "0.3.31"
@@ -1107,12 +1697,13 @@ dependencies = [
1107
1697
 
1108
1698
  [[package]]
1109
1699
  name = "generic-array"
1110
- version = "0.14.9"
1700
+ version = "0.14.7"
1111
1701
  source = "registry+https://github.com/rust-lang/crates.io-index"
1112
- checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
1702
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1113
1703
  dependencies = [
1114
1704
  "typenum",
1115
1705
  "version_check",
1706
+ "zeroize",
1116
1707
  ]
1117
1708
 
1118
1709
  [[package]]
@@ -1142,6 +1733,16 @@ dependencies = [
1142
1733
  "wasm-bindgen",
1143
1734
  ]
1144
1735
 
1736
+ [[package]]
1737
+ name = "ghash"
1738
+ version = "0.5.1"
1739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1740
+ checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
1741
+ dependencies = [
1742
+ "opaque-debug",
1743
+ "polyval",
1744
+ ]
1745
+
1145
1746
  [[package]]
1146
1747
  name = "glob"
1147
1748
  version = "0.3.3"
@@ -1163,15 +1764,26 @@ dependencies = [
1163
1764
 
1164
1765
  [[package]]
1165
1766
  name = "goblin"
1166
- version = "0.10.3"
1767
+ version = "0.10.4"
1167
1768
  source = "registry+https://github.com/rust-lang/crates.io-index"
1168
- checksum = "51876e3748c4a347fe65b906f2b1ae46a1e55a497b22c94c1f4f2c469ff7673a"
1769
+ checksum = "4db6758c546e6f81f265638c980e5e84dfbda80cfd8e89e02f83454c8e8124bd"
1169
1770
  dependencies = [
1170
1771
  "log",
1171
1772
  "plain",
1172
1773
  "scroll",
1173
1774
  ]
1174
1775
 
1776
+ [[package]]
1777
+ name = "group"
1778
+ version = "0.13.0"
1779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1780
+ checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
1781
+ dependencies = [
1782
+ "ff",
1783
+ "rand_core 0.6.4",
1784
+ "subtle",
1785
+ ]
1786
+
1175
1787
  [[package]]
1176
1788
  name = "h2"
1177
1789
  version = "0.4.12"
@@ -1184,7 +1796,7 @@ dependencies = [
1184
1796
  "futures-core",
1185
1797
  "futures-sink",
1186
1798
  "http",
1187
- "indexmap 2.12.0",
1799
+ "indexmap 2.12.1",
1188
1800
  "slab",
1189
1801
  "tokio",
1190
1802
  "tokio-util",
@@ -1199,9 +1811,9 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1199
1811
 
1200
1812
  [[package]]
1201
1813
  name = "hashbrown"
1202
- version = "0.16.0"
1814
+ version = "0.16.1"
1203
1815
  source = "registry+https://github.com/rust-lang/crates.io-index"
1204
- checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
1816
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1205
1817
 
1206
1818
  [[package]]
1207
1819
  name = "heck"
@@ -1213,22 +1825,39 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1213
1825
  name = "hermit-abi"
1214
1826
  version = "0.5.2"
1215
1827
  source = "registry+https://github.com/rust-lang/crates.io-index"
1216
- checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1828
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1829
+
1830
+ [[package]]
1831
+ name = "hex"
1832
+ version = "0.4.3"
1833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1834
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1835
+
1836
+ [[package]]
1837
+ name = "hkdf"
1838
+ version = "0.12.4"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
1841
+ dependencies = [
1842
+ "hmac",
1843
+ ]
1217
1844
 
1218
1845
  [[package]]
1219
- name = "hex"
1220
- version = "0.4.3"
1846
+ name = "hmac"
1847
+ version = "0.12.1"
1221
1848
  source = "registry+https://github.com/rust-lang/crates.io-index"
1222
- checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1849
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1850
+ dependencies = [
1851
+ "digest",
1852
+ ]
1223
1853
 
1224
1854
  [[package]]
1225
1855
  name = "http"
1226
- version = "1.3.1"
1856
+ version = "1.4.0"
1227
1857
  source = "registry+https://github.com/rust-lang/crates.io-index"
1228
- checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
1858
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1229
1859
  dependencies = [
1230
1860
  "bytes",
1231
- "fnv",
1232
1861
  "itoa",
1233
1862
  ]
1234
1863
 
@@ -1263,9 +1892,9 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1263
1892
 
1264
1893
  [[package]]
1265
1894
  name = "hyper"
1266
- version = "1.7.0"
1895
+ version = "1.8.1"
1267
1896
  source = "registry+https://github.com/rust-lang/crates.io-index"
1268
- checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
1897
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1269
1898
  dependencies = [
1270
1899
  "atomic-waker",
1271
1900
  "bytes",
@@ -1302,9 +1931,9 @@ dependencies = [
1302
1931
 
1303
1932
  [[package]]
1304
1933
  name = "hyper-util"
1305
- version = "0.1.17"
1934
+ version = "0.1.19"
1306
1935
  source = "registry+https://github.com/rust-lang/crates.io-index"
1307
- checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8"
1936
+ checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
1308
1937
  dependencies = [
1309
1938
  "base64",
1310
1939
  "bytes",
@@ -1396,9 +2025,9 @@ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1396
2025
 
1397
2026
  [[package]]
1398
2027
  name = "icu_properties"
1399
- version = "2.1.1"
2028
+ version = "2.1.2"
1400
2029
  source = "registry+https://github.com/rust-lang/crates.io-index"
1401
- checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99"
2030
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1402
2031
  dependencies = [
1403
2032
  "icu_collections",
1404
2033
  "icu_locale_core",
@@ -1410,9 +2039,9 @@ dependencies = [
1410
2039
 
1411
2040
  [[package]]
1412
2041
  name = "icu_properties_data"
1413
- version = "2.1.1"
2042
+ version = "2.1.2"
1414
2043
  source = "registry+https://github.com/rust-lang/crates.io-index"
1415
- checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899"
2044
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1416
2045
 
1417
2046
  [[package]]
1418
2047
  name = "icu_provider"
@@ -1429,6 +2058,15 @@ dependencies = [
1429
2058
  "zerovec",
1430
2059
  ]
1431
2060
 
2061
+ [[package]]
2062
+ name = "idea"
2063
+ version = "0.5.1"
2064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2065
+ checksum = "075557004419d7f2031b8bb7f44bb43e55a83ca7b63076a8fb8fe75753836477"
2066
+ dependencies = [
2067
+ "cipher",
2068
+ ]
2069
+
1432
2070
  [[package]]
1433
2071
  name = "ident_case"
1434
2072
  version = "1.0.1"
@@ -1485,23 +2123,23 @@ dependencies = [
1485
2123
 
1486
2124
  [[package]]
1487
2125
  name = "indexmap"
1488
- version = "2.12.0"
2126
+ version = "2.12.1"
1489
2127
  source = "registry+https://github.com/rust-lang/crates.io-index"
1490
- checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
2128
+ checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
1491
2129
  dependencies = [
1492
2130
  "equivalent",
1493
- "hashbrown 0.16.0",
2131
+ "hashbrown 0.16.1",
1494
2132
  "serde",
1495
2133
  "serde_core",
1496
2134
  ]
1497
2135
 
1498
2136
  [[package]]
1499
2137
  name = "indicatif"
1500
- version = "0.18.2"
2138
+ version = "0.18.3"
1501
2139
  source = "registry+https://github.com/rust-lang/crates.io-index"
1502
- checksum = "ade6dfcba0dfb62ad59e59e7241ec8912af34fd29e0e743e3db992bd278e8b65"
2140
+ checksum = "9375e112e4b463ec1b1c6c011953545c65a30164fbab5b581df32b3abf0dcb88"
1503
2141
  dependencies = [
1504
- "console 0.16.1",
2142
+ "console 0.16.2",
1505
2143
  "portable-atomic",
1506
2144
  "unicode-width",
1507
2145
  "unit-prefix",
@@ -1517,11 +2155,20 @@ dependencies = [
1517
2155
  "rustversion",
1518
2156
  ]
1519
2157
 
2158
+ [[package]]
2159
+ name = "inout"
2160
+ version = "0.1.4"
2161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2162
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
2163
+ dependencies = [
2164
+ "generic-array",
2165
+ ]
2166
+
1520
2167
  [[package]]
1521
2168
  name = "insta"
1522
- version = "1.43.2"
2169
+ version = "1.44.3"
1523
2170
  source = "registry+https://github.com/rust-lang/crates.io-index"
1524
- checksum = "46fdb647ebde000f43b5b53f773c30cf9b0cb4300453208713fa38b2c70935a0"
2171
+ checksum = "b5c943d4415edd8153251b6f197de5eb1640e56d84e8d9159bea190421c73698"
1525
2172
  dependencies = [
1526
2173
  "console 0.15.11",
1527
2174
  "once_cell",
@@ -1556,25 +2203,14 @@ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1556
2203
 
1557
2204
  [[package]]
1558
2205
  name = "iri-string"
1559
- version = "0.7.8"
2206
+ version = "0.7.9"
1560
2207
  source = "registry+https://github.com/rust-lang/crates.io-index"
1561
- checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
2208
+ checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397"
1562
2209
  dependencies = [
1563
2210
  "memchr",
1564
2211
  "serde",
1565
2212
  ]
1566
2213
 
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
2214
  [[package]]
1579
2215
  name = "is_terminal_polyfill"
1580
2216
  version = "1.70.2"
@@ -1596,6 +2232,30 @@ version = "1.0.15"
1596
2232
  source = "registry+https://github.com/rust-lang/crates.io-index"
1597
2233
  checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1598
2234
 
2235
+ [[package]]
2236
+ name = "jiff"
2237
+ version = "0.2.16"
2238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2239
+ checksum = "49cce2b81f2098e7e3efc35bc2e0a6b7abec9d34128283d7a26fa8f32a6dbb35"
2240
+ dependencies = [
2241
+ "jiff-static",
2242
+ "log",
2243
+ "portable-atomic",
2244
+ "portable-atomic-util",
2245
+ "serde_core",
2246
+ ]
2247
+
2248
+ [[package]]
2249
+ name = "jiff-static"
2250
+ version = "0.2.16"
2251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2252
+ checksum = "980af8b43c3ad5d8d349ace167ec8170839f753a42d233ba19e08afe1850fa69"
2253
+ dependencies = [
2254
+ "proc-macro2",
2255
+ "quote",
2256
+ "syn",
2257
+ ]
2258
+
1599
2259
  [[package]]
1600
2260
  name = "jobserver"
1601
2261
  version = "0.1.34"
@@ -1608,14 +2268,46 @@ dependencies = [
1608
2268
 
1609
2269
  [[package]]
1610
2270
  name = "js-sys"
1611
- version = "0.3.82"
2271
+ version = "0.3.83"
1612
2272
  source = "registry+https://github.com/rust-lang/crates.io-index"
1613
- checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
2273
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
1614
2274
  dependencies = [
1615
2275
  "once_cell",
1616
2276
  "wasm-bindgen",
1617
2277
  ]
1618
2278
 
2279
+ [[package]]
2280
+ name = "k256"
2281
+ version = "0.13.4"
2282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2283
+ checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b"
2284
+ dependencies = [
2285
+ "cfg-if",
2286
+ "ecdsa",
2287
+ "elliptic-curve",
2288
+ "once_cell",
2289
+ "sha2",
2290
+ "signature",
2291
+ ]
2292
+
2293
+ [[package]]
2294
+ name = "keccak"
2295
+ version = "0.1.5"
2296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2297
+ checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654"
2298
+ dependencies = [
2299
+ "cpufeatures",
2300
+ ]
2301
+
2302
+ [[package]]
2303
+ name = "lazy_static"
2304
+ version = "1.5.0"
2305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2306
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
2307
+ dependencies = [
2308
+ "spin 0.9.8",
2309
+ ]
2310
+
1619
2311
  [[package]]
1620
2312
  name = "libbz2-rs-sys"
1621
2313
  version = "0.2.2"
@@ -1624,9 +2316,9 @@ checksum = "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7"
1624
2316
 
1625
2317
  [[package]]
1626
2318
  name = "libc"
1627
- version = "0.2.177"
2319
+ version = "0.2.178"
1628
2320
  source = "registry+https://github.com/rust-lang/crates.io-index"
1629
- checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
2321
+ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
1630
2322
 
1631
2323
  [[package]]
1632
2324
  name = "liblzma"
@@ -1649,17 +2341,32 @@ dependencies = [
1649
2341
  "pkg-config",
1650
2342
  ]
1651
2343
 
2344
+ [[package]]
2345
+ name = "libm"
2346
+ version = "0.2.15"
2347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2348
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
2349
+
1652
2350
  [[package]]
1653
2351
  name = "libredox"
1654
- version = "0.1.10"
2352
+ version = "0.1.11"
1655
2353
  source = "registry+https://github.com/rust-lang/crates.io-index"
1656
- checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
2354
+ checksum = "df15f6eac291ed1cf25865b1ee60399f57e7c227e7f51bdbd4c5270396a9ed50"
1657
2355
  dependencies = [
1658
2356
  "bitflags",
1659
2357
  "libc",
1660
2358
  "redox_syscall",
1661
2359
  ]
1662
2360
 
2361
+ [[package]]
2362
+ name = "libz-rs-sys"
2363
+ version = "0.5.4"
2364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2365
+ checksum = "15413ef615ad868d4d65dce091cb233b229419c7c0c4bcaa746c0901c49ff39c"
2366
+ dependencies = [
2367
+ "zlib-rs",
2368
+ ]
2369
+
1663
2370
  [[package]]
1664
2371
  name = "linux-raw-sys"
1665
2372
  version = "0.11.0"
@@ -1683,9 +2390,9 @@ dependencies = [
1683
2390
 
1684
2391
  [[package]]
1685
2392
  name = "log"
1686
- version = "0.4.28"
2393
+ version = "0.4.29"
1687
2394
  source = "registry+https://github.com/rust-lang/crates.io-index"
1688
- checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
2395
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1689
2396
 
1690
2397
  [[package]]
1691
2398
  name = "lru-slab"
@@ -1736,21 +2443,67 @@ dependencies = [
1736
2443
 
1737
2444
  [[package]]
1738
2445
  name = "mio"
1739
- version = "1.1.0"
2446
+ version = "1.1.1"
1740
2447
  source = "registry+https://github.com/rust-lang/crates.io-index"
1741
- checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873"
2448
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1742
2449
  dependencies = [
1743
2450
  "libc",
1744
2451
  "wasi",
1745
2452
  "windows-sys 0.61.2",
1746
2453
  ]
1747
2454
 
2455
+ [[package]]
2456
+ name = "nom"
2457
+ version = "8.0.0"
2458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2459
+ checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
2460
+ dependencies = [
2461
+ "memchr",
2462
+ ]
2463
+
2464
+ [[package]]
2465
+ name = "num-bigint-dig"
2466
+ version = "0.8.6"
2467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2468
+ checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
2469
+ dependencies = [
2470
+ "lazy_static",
2471
+ "libm",
2472
+ "num-integer",
2473
+ "num-iter",
2474
+ "num-traits",
2475
+ "rand 0.8.5",
2476
+ "serde",
2477
+ "smallvec",
2478
+ "zeroize",
2479
+ ]
2480
+
1748
2481
  [[package]]
1749
2482
  name = "num-conv"
1750
2483
  version = "0.1.0"
1751
2484
  source = "registry+https://github.com/rust-lang/crates.io-index"
1752
2485
  checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1753
2486
 
2487
+ [[package]]
2488
+ name = "num-integer"
2489
+ version = "0.1.46"
2490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2491
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2492
+ dependencies = [
2493
+ "num-traits",
2494
+ ]
2495
+
2496
+ [[package]]
2497
+ name = "num-iter"
2498
+ version = "0.1.45"
2499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2500
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
2501
+ dependencies = [
2502
+ "autocfg",
2503
+ "num-integer",
2504
+ "num-traits",
2505
+ ]
2506
+
1754
2507
  [[package]]
1755
2508
  name = "num-traits"
1756
2509
  version = "0.2.19"
@@ -1758,6 +2511,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
2511
  checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1759
2512
  dependencies = [
1760
2513
  "autocfg",
2514
+ "libm",
1761
2515
  ]
1762
2516
 
1763
2517
  [[package]]
@@ -1770,6 +2524,28 @@ dependencies = [
1770
2524
  "libc",
1771
2525
  ]
1772
2526
 
2527
+ [[package]]
2528
+ name = "num_enum"
2529
+ version = "0.7.5"
2530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2531
+ checksum = "b1207a7e20ad57b847bbddc6776b968420d38292bbfe2089accff5e19e82454c"
2532
+ dependencies = [
2533
+ "num_enum_derive",
2534
+ "rustversion",
2535
+ ]
2536
+
2537
+ [[package]]
2538
+ name = "num_enum_derive"
2539
+ version = "0.7.5"
2540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2541
+ checksum = "ff32365de1b6743cb203b710788263c44a03de03802daf96092f2da4fe6ba4d7"
2542
+ dependencies = [
2543
+ "proc-macro-crate",
2544
+ "proc-macro2",
2545
+ "quote",
2546
+ "syn",
2547
+ ]
2548
+
1773
2549
  [[package]]
1774
2550
  name = "num_threads"
1775
2551
  version = "0.1.7"
@@ -1779,6 +2555,18 @@ dependencies = [
1779
2555
  "libc",
1780
2556
  ]
1781
2557
 
2558
+ [[package]]
2559
+ name = "ocb3"
2560
+ version = "0.1.0"
2561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2562
+ checksum = "c196e0276c471c843dd5777e7543a36a298a4be942a2a688d8111cd43390dedb"
2563
+ dependencies = [
2564
+ "aead",
2565
+ "cipher",
2566
+ "ctr",
2567
+ "subtle",
2568
+ ]
2569
+
1782
2570
  [[package]]
1783
2571
  name = "once_cell"
1784
2572
  version = "1.21.3"
@@ -1791,6 +2579,12 @@ version = "1.70.2"
1791
2579
  source = "registry+https://github.com/rust-lang/crates.io-index"
1792
2580
  checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1793
2581
 
2582
+ [[package]]
2583
+ name = "opaque-debug"
2584
+ version = "0.3.1"
2585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2586
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
2587
+
1794
2588
  [[package]]
1795
2589
  name = "optfield"
1796
2590
  version = "0.4.0"
@@ -1808,12 +2602,140 @@ version = "0.2.0"
1808
2602
  source = "registry+https://github.com/rust-lang/crates.io-index"
1809
2603
  checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1810
2604
 
2605
+ [[package]]
2606
+ name = "p256"
2607
+ version = "0.13.2"
2608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2609
+ checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
2610
+ dependencies = [
2611
+ "ecdsa",
2612
+ "elliptic-curve",
2613
+ "primeorder",
2614
+ "sha2",
2615
+ ]
2616
+
2617
+ [[package]]
2618
+ name = "p384"
2619
+ version = "0.13.1"
2620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2621
+ checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
2622
+ dependencies = [
2623
+ "ecdsa",
2624
+ "elliptic-curve",
2625
+ "primeorder",
2626
+ "sha2",
2627
+ ]
2628
+
2629
+ [[package]]
2630
+ name = "p521"
2631
+ version = "0.13.3"
2632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2633
+ checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2"
2634
+ dependencies = [
2635
+ "base16ct",
2636
+ "ecdsa",
2637
+ "elliptic-curve",
2638
+ "primeorder",
2639
+ "rand_core 0.6.4",
2640
+ "sha2",
2641
+ ]
2642
+
2643
+ [[package]]
2644
+ name = "password-hash"
2645
+ version = "0.5.0"
2646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2647
+ checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
2648
+ dependencies = [
2649
+ "base64ct",
2650
+ "rand_core 0.6.4",
2651
+ "subtle",
2652
+ ]
2653
+
2654
+ [[package]]
2655
+ name = "pem-rfc7468"
2656
+ version = "0.7.0"
2657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2658
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
2659
+ dependencies = [
2660
+ "base64ct",
2661
+ ]
2662
+
1811
2663
  [[package]]
1812
2664
  name = "percent-encoding"
1813
2665
  version = "2.3.2"
1814
2666
  source = "registry+https://github.com/rust-lang/crates.io-index"
1815
2667
  checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1816
2668
 
2669
+ [[package]]
2670
+ name = "pgp"
2671
+ version = "0.18.0"
2672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2673
+ checksum = "66d4a27a4d5cfd4e185ddd3eff94dee0f611c4c3e776422254237c54c336c160"
2674
+ dependencies = [
2675
+ "aead",
2676
+ "aes",
2677
+ "aes-gcm",
2678
+ "aes-kw",
2679
+ "argon2",
2680
+ "base64",
2681
+ "bitfields",
2682
+ "block-padding",
2683
+ "blowfish",
2684
+ "buffer-redux",
2685
+ "byteorder",
2686
+ "bytes",
2687
+ "bzip2",
2688
+ "camellia",
2689
+ "cast5",
2690
+ "cfb-mode",
2691
+ "chrono",
2692
+ "cipher",
2693
+ "const-oid",
2694
+ "crc24",
2695
+ "curve25519-dalek",
2696
+ "cx448",
2697
+ "derive_builder",
2698
+ "derive_more",
2699
+ "des",
2700
+ "digest",
2701
+ "dsa",
2702
+ "eax",
2703
+ "ecdsa",
2704
+ "ed25519-dalek",
2705
+ "elliptic-curve",
2706
+ "flate2",
2707
+ "generic-array",
2708
+ "hex",
2709
+ "hkdf",
2710
+ "idea",
2711
+ "k256",
2712
+ "log",
2713
+ "md-5",
2714
+ "nom",
2715
+ "num-bigint-dig",
2716
+ "num-traits",
2717
+ "num_enum",
2718
+ "ocb3",
2719
+ "p256",
2720
+ "p384",
2721
+ "p521",
2722
+ "rand 0.8.5",
2723
+ "regex",
2724
+ "replace_with",
2725
+ "ripemd",
2726
+ "rsa",
2727
+ "sha1",
2728
+ "sha1-checked",
2729
+ "sha2",
2730
+ "sha3",
2731
+ "signature",
2732
+ "smallvec",
2733
+ "snafu",
2734
+ "twofish",
2735
+ "x25519-dalek",
2736
+ "zeroize",
2737
+ ]
2738
+
1817
2739
  [[package]]
1818
2740
  name = "phf"
1819
2741
  version = "0.12.1"
@@ -1868,6 +2790,27 @@ version = "0.1.0"
1868
2790
  source = "registry+https://github.com/rust-lang/crates.io-index"
1869
2791
  checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1870
2792
 
2793
+ [[package]]
2794
+ name = "pkcs1"
2795
+ version = "0.7.5"
2796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2797
+ checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
2798
+ dependencies = [
2799
+ "der",
2800
+ "pkcs8",
2801
+ "spki",
2802
+ ]
2803
+
2804
+ [[package]]
2805
+ name = "pkcs8"
2806
+ version = "0.10.2"
2807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2808
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
2809
+ dependencies = [
2810
+ "der",
2811
+ "spki",
2812
+ ]
2813
+
1871
2814
  [[package]]
1872
2815
  name = "pkg-config"
1873
2816
  version = "0.3.32"
@@ -1880,12 +2823,33 @@ version = "0.2.3"
1880
2823
  source = "registry+https://github.com/rust-lang/crates.io-index"
1881
2824
  checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
1882
2825
 
2826
+ [[package]]
2827
+ name = "polyval"
2828
+ version = "0.6.2"
2829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2830
+ checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
2831
+ dependencies = [
2832
+ "cfg-if",
2833
+ "cpufeatures",
2834
+ "opaque-debug",
2835
+ "universal-hash",
2836
+ ]
2837
+
1883
2838
  [[package]]
1884
2839
  name = "portable-atomic"
1885
2840
  version = "1.11.1"
1886
2841
  source = "registry+https://github.com/rust-lang/crates.io-index"
1887
2842
  checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1888
2843
 
2844
+ [[package]]
2845
+ name = "portable-atomic-util"
2846
+ version = "0.2.4"
2847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2848
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
2849
+ dependencies = [
2850
+ "portable-atomic",
2851
+ ]
2852
+
1889
2853
  [[package]]
1890
2854
  name = "potential_utf"
1891
2855
  version = "0.1.4"
@@ -1947,6 +2911,15 @@ dependencies = [
1947
2911
  "yansi",
1948
2912
  ]
1949
2913
 
2914
+ [[package]]
2915
+ name = "primeorder"
2916
+ version = "0.13.6"
2917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2918
+ checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
2919
+ dependencies = [
2920
+ "elliptic-curve",
2921
+ ]
2922
+
1950
2923
  [[package]]
1951
2924
  name = "proc-macro-crate"
1952
2925
  version = "3.4.0"
@@ -1981,8 +2954,8 @@ dependencies = [
1981
2954
  "bit-vec",
1982
2955
  "bitflags",
1983
2956
  "num-traits",
1984
- "rand",
1985
- "rand_chacha",
2957
+ "rand 0.9.2",
2958
+ "rand_chacha 0.9.0",
1986
2959
  "rand_xorshift",
1987
2960
  "regex-syntax",
1988
2961
  "rusty-fork",
@@ -1992,9 +2965,9 @@ dependencies = [
1992
2965
 
1993
2966
  [[package]]
1994
2967
  name = "pyo3"
1995
- version = "0.27.1"
2968
+ version = "0.27.2"
1996
2969
  source = "registry+https://github.com/rust-lang/crates.io-index"
1997
- checksum = "37a6df7eab65fc7bee654a421404947e10a0f7085b6951bf2ea395f4659fb0cf"
2970
+ checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
1998
2971
  dependencies = [
1999
2972
  "indoc",
2000
2973
  "libc",
@@ -2009,18 +2982,18 @@ dependencies = [
2009
2982
 
2010
2983
  [[package]]
2011
2984
  name = "pyo3-build-config"
2012
- version = "0.27.1"
2985
+ version = "0.27.2"
2013
2986
  source = "registry+https://github.com/rust-lang/crates.io-index"
2014
- checksum = "f77d387774f6f6eec64a004eac0ed525aab7fa1966d94b42f743797b3e395afb"
2987
+ checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
2015
2988
  dependencies = [
2016
2989
  "target-lexicon",
2017
2990
  ]
2018
2991
 
2019
2992
  [[package]]
2020
2993
  name = "pyo3-ffi"
2021
- version = "0.27.1"
2994
+ version = "0.27.2"
2022
2995
  source = "registry+https://github.com/rust-lang/crates.io-index"
2023
- checksum = "2dd13844a4242793e02df3e2ec093f540d948299a6a77ea9ce7afd8623f542be"
2996
+ checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
2024
2997
  dependencies = [
2025
2998
  "libc",
2026
2999
  "pyo3-build-config",
@@ -2028,9 +3001,9 @@ dependencies = [
2028
3001
 
2029
3002
  [[package]]
2030
3003
  name = "pyo3-macros"
2031
- version = "0.27.1"
3004
+ version = "0.27.2"
2032
3005
  source = "registry+https://github.com/rust-lang/crates.io-index"
2033
- checksum = "eaf8f9f1108270b90d3676b8679586385430e5c0bb78bb5f043f95499c821a71"
3006
+ checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
2034
3007
  dependencies = [
2035
3008
  "proc-macro2",
2036
3009
  "pyo3-macros-backend",
@@ -2040,9 +3013,9 @@ dependencies = [
2040
3013
 
2041
3014
  [[package]]
2042
3015
  name = "pyo3-macros-backend"
2043
- version = "0.27.1"
3016
+ version = "0.27.2"
2044
3017
  source = "registry+https://github.com/rust-lang/crates.io-index"
2045
- checksum = "70a3b2274450ba5288bc9b8c1b69ff569d1d61189d4bff38f8d22e03d17f932b"
3018
+ checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
2046
3019
  dependencies = [
2047
3020
  "heck",
2048
3021
  "proc-macro2",
@@ -2053,7 +3026,7 @@ dependencies = [
2053
3026
 
2054
3027
  [[package]]
2055
3028
  name = "python-alpm"
2056
- version = "0.2.1"
3029
+ version = "0.4.0"
2057
3030
  dependencies = [
2058
3031
  "alpm-common",
2059
3032
  "alpm-srcinfo",
@@ -2098,7 +3071,7 @@ dependencies = [
2098
3071
  "bytes",
2099
3072
  "getrandom 0.3.4",
2100
3073
  "lru-slab",
2101
- "rand",
3074
+ "rand 0.9.2",
2102
3075
  "ring",
2103
3076
  "rustc-hash",
2104
3077
  "rustls",
@@ -2126,9 +3099,9 @@ dependencies = [
2126
3099
 
2127
3100
  [[package]]
2128
3101
  name = "quote"
2129
- version = "1.0.41"
3102
+ version = "1.0.42"
2130
3103
  source = "registry+https://github.com/rust-lang/crates.io-index"
2131
- checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
3104
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
2132
3105
  dependencies = [
2133
3106
  "proc-macro2",
2134
3107
  ]
@@ -2139,14 +3112,41 @@ version = "5.3.0"
2139
3112
  source = "registry+https://github.com/rust-lang/crates.io-index"
2140
3113
  checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2141
3114
 
3115
+ [[package]]
3116
+ name = "radium"
3117
+ version = "0.7.0"
3118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3119
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
3120
+
3121
+ [[package]]
3122
+ name = "rand"
3123
+ version = "0.8.5"
3124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3125
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
3126
+ dependencies = [
3127
+ "libc",
3128
+ "rand_chacha 0.3.1",
3129
+ "rand_core 0.6.4",
3130
+ ]
3131
+
2142
3132
  [[package]]
2143
3133
  name = "rand"
2144
3134
  version = "0.9.2"
2145
3135
  source = "registry+https://github.com/rust-lang/crates.io-index"
2146
3136
  checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2147
3137
  dependencies = [
2148
- "rand_chacha",
2149
- "rand_core",
3138
+ "rand_chacha 0.9.0",
3139
+ "rand_core 0.9.3",
3140
+ ]
3141
+
3142
+ [[package]]
3143
+ name = "rand_chacha"
3144
+ version = "0.3.1"
3145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3146
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
3147
+ dependencies = [
3148
+ "ppv-lite86",
3149
+ "rand_core 0.6.4",
2150
3150
  ]
2151
3151
 
2152
3152
  [[package]]
@@ -2156,7 +3156,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2156
3156
  checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2157
3157
  dependencies = [
2158
3158
  "ppv-lite86",
2159
- "rand_core",
3159
+ "rand_core 0.9.3",
3160
+ ]
3161
+
3162
+ [[package]]
3163
+ name = "rand_core"
3164
+ version = "0.6.4"
3165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3166
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
3167
+ dependencies = [
3168
+ "getrandom 0.2.16",
2160
3169
  ]
2161
3170
 
2162
3171
  [[package]]
@@ -2174,7 +3183,7 @@ version = "0.4.0"
2174
3183
  source = "registry+https://github.com/rust-lang/crates.io-index"
2175
3184
  checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
2176
3185
  dependencies = [
2177
- "rand_core",
3186
+ "rand_core 0.9.3",
2178
3187
  ]
2179
3188
 
2180
3189
  [[package]]
@@ -2199,9 +3208,9 @@ dependencies = [
2199
3208
 
2200
3209
  [[package]]
2201
3210
  name = "redox_syscall"
2202
- version = "0.5.18"
3211
+ version = "0.6.0"
2203
3212
  source = "registry+https://github.com/rust-lang/crates.io-index"
2204
- checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
3213
+ checksum = "ec96166dafa0886eb81fe1c0a388bece180fbef2135f97c1e2cf8302e74b43b5"
2205
3214
  dependencies = [
2206
3215
  "bitflags",
2207
3216
  ]
@@ -2272,11 +3281,17 @@ version = "1.9.3"
2272
3281
  source = "registry+https://github.com/rust-lang/crates.io-index"
2273
3282
  checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
2274
3283
 
3284
+ [[package]]
3285
+ name = "replace_with"
3286
+ version = "0.1.8"
3287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3288
+ checksum = "51743d3e274e2b18df81c4dc6caf8a5b8e15dbe799e0dca05c7617380094e884"
3289
+
2275
3290
  [[package]]
2276
3291
  name = "reqwest"
2277
- version = "0.12.24"
3292
+ version = "0.12.26"
2278
3293
  source = "registry+https://github.com/rust-lang/crates.io-index"
2279
- checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f"
3294
+ checksum = "3b4c14b2d9afca6a60277086b0cc6a6ae0b568f6f7916c943a8cdc79f8be240f"
2280
3295
  dependencies = [
2281
3296
  "base64",
2282
3297
  "bytes",
@@ -2315,6 +3330,16 @@ dependencies = [
2315
3330
  "webpki-roots",
2316
3331
  ]
2317
3332
 
3333
+ [[package]]
3334
+ name = "rfc6979"
3335
+ version = "0.4.0"
3336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3337
+ checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
3338
+ dependencies = [
3339
+ "hmac",
3340
+ "subtle",
3341
+ ]
3342
+
2318
3343
  [[package]]
2319
3344
  name = "ring"
2320
3345
  version = "0.17.14"
@@ -2329,6 +3354,54 @@ dependencies = [
2329
3354
  "windows-sys 0.52.0",
2330
3355
  ]
2331
3356
 
3357
+ [[package]]
3358
+ name = "ripemd"
3359
+ version = "0.1.3"
3360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3361
+ checksum = "bd124222d17ad93a644ed9d011a40f4fb64aa54275c08cc216524a9ea82fb09f"
3362
+ dependencies = [
3363
+ "digest",
3364
+ ]
3365
+
3366
+ [[package]]
3367
+ name = "rpgpie"
3368
+ version = "0.8.1"
3369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3370
+ checksum = "742ec6ed647d969a26b009bd4199d8ce763c0ac3a04e79cc608bd09ed7b0aeb9"
3371
+ dependencies = [
3372
+ "chrono",
3373
+ "hex",
3374
+ "log",
3375
+ "pgp",
3376
+ "rand 0.8.5",
3377
+ "rand_core 0.6.4",
3378
+ "rsa",
3379
+ "serde",
3380
+ "serde_json",
3381
+ "thiserror",
3382
+ "zeroize",
3383
+ ]
3384
+
3385
+ [[package]]
3386
+ name = "rsa"
3387
+ version = "0.9.9"
3388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3389
+ checksum = "40a0376c50d0358279d9d643e4bf7b7be212f1f4ff1da9070a7b54d22ef75c88"
3390
+ dependencies = [
3391
+ "const-oid",
3392
+ "digest",
3393
+ "num-bigint-dig",
3394
+ "num-integer",
3395
+ "num-traits",
3396
+ "pkcs1",
3397
+ "pkcs8",
3398
+ "rand_core 0.6.4",
3399
+ "signature",
3400
+ "spki",
3401
+ "subtle",
3402
+ "zeroize",
3403
+ ]
3404
+
2332
3405
  [[package]]
2333
3406
  name = "rstest"
2334
3407
  version = "0.26.1"
@@ -2388,9 +3461,9 @@ dependencies = [
2388
3461
 
2389
3462
  [[package]]
2390
3463
  name = "rustls"
2391
- version = "0.23.34"
3464
+ version = "0.23.35"
2392
3465
  source = "registry+https://github.com/rust-lang/crates.io-index"
2393
- checksum = "6a9586e9ee2b4f8fab52a0048ca7334d7024eef48e2cb9407e3497bb7cab7fa7"
3466
+ checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
2394
3467
  dependencies = [
2395
3468
  "once_cell",
2396
3469
  "ring",
@@ -2402,9 +3475,9 @@ dependencies = [
2402
3475
 
2403
3476
  [[package]]
2404
3477
  name = "rustls-pki-types"
2405
- version = "1.13.0"
3478
+ version = "1.13.2"
2406
3479
  source = "registry+https://github.com/rust-lang/crates.io-index"
2407
- checksum = "94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a"
3480
+ checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282"
2408
3481
  dependencies = [
2409
3482
  "web-time",
2410
3483
  "zeroize",
@@ -2468,9 +3541,9 @@ dependencies = [
2468
3541
 
2469
3542
  [[package]]
2470
3543
  name = "schemars"
2471
- version = "1.0.4"
3544
+ version = "1.1.0"
2472
3545
  source = "registry+https://github.com/rust-lang/crates.io-index"
2473
- checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0"
3546
+ checksum = "9558e172d4e8533736ba97870c4b2cd63f84b382a3d6eb063da41b91cce17289"
2474
3547
  dependencies = [
2475
3548
  "dyn-clone",
2476
3549
  "ref-cast",
@@ -2504,6 +3577,21 @@ dependencies = [
2504
3577
  "syn",
2505
3578
  ]
2506
3579
 
3580
+ [[package]]
3581
+ name = "sec1"
3582
+ version = "0.7.3"
3583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3584
+ checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
3585
+ dependencies = [
3586
+ "base16ct",
3587
+ "der",
3588
+ "generic-array",
3589
+ "pkcs8",
3590
+ "serdect 0.2.0",
3591
+ "subtle",
3592
+ "zeroize",
3593
+ ]
3594
+
2507
3595
  [[package]]
2508
3596
  name = "self_cell"
2509
3597
  version = "1.2.1"
@@ -2559,11 +3647,32 @@ dependencies = [
2559
3647
  "serde_core",
2560
3648
  ]
2561
3649
 
3650
+ [[package]]
3651
+ name = "serde_more"
3652
+ version = "0.1.4"
3653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3654
+ checksum = "f8d8966b293ec6b30e99c13f6b70e9ac8b0ee6e2f9ad073e819f47af943217aa"
3655
+ dependencies = [
3656
+ "serde",
3657
+ "serde_more_derive",
3658
+ ]
3659
+
3660
+ [[package]]
3661
+ name = "serde_more_derive"
3662
+ version = "0.1.4"
3663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3664
+ checksum = "0751bc649e9e61ce87bb5a3771e1f33a84c88b6f66fdc5c9fcbd91a5c0997a91"
3665
+ dependencies = [
3666
+ "proc-macro2",
3667
+ "quote",
3668
+ "syn",
3669
+ ]
3670
+
2562
3671
  [[package]]
2563
3672
  name = "serde_spanned"
2564
- version = "1.0.3"
3673
+ version = "1.0.4"
2565
3674
  source = "registry+https://github.com/rust-lang/crates.io-index"
2566
- checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392"
3675
+ checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
2567
3676
  dependencies = [
2568
3677
  "serde_core",
2569
3678
  ]
@@ -2582,17 +3691,17 @@ dependencies = [
2582
3691
 
2583
3692
  [[package]]
2584
3693
  name = "serde_with"
2585
- version = "3.15.1"
3694
+ version = "3.16.1"
2586
3695
  source = "registry+https://github.com/rust-lang/crates.io-index"
2587
- checksum = "aa66c845eee442168b2c8134fec70ac50dc20e760769c8ba0ad1319ca1959b04"
3696
+ checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7"
2588
3697
  dependencies = [
2589
3698
  "base64",
2590
3699
  "chrono",
2591
3700
  "hex",
2592
3701
  "indexmap 1.9.3",
2593
- "indexmap 2.12.0",
3702
+ "indexmap 2.12.1",
2594
3703
  "schemars 0.9.0",
2595
- "schemars 1.0.4",
3704
+ "schemars 1.1.0",
2596
3705
  "serde_core",
2597
3706
  "serde_json",
2598
3707
  "serde_with_macros",
@@ -2601,16 +3710,36 @@ dependencies = [
2601
3710
 
2602
3711
  [[package]]
2603
3712
  name = "serde_with_macros"
2604
- version = "3.15.1"
3713
+ version = "3.16.1"
2605
3714
  source = "registry+https://github.com/rust-lang/crates.io-index"
2606
- checksum = "b91a903660542fced4e99881aa481bdbaec1634568ee02e0b8bd57c64cb38955"
3715
+ checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c"
2607
3716
  dependencies = [
2608
- "darling",
3717
+ "darling 0.21.3",
2609
3718
  "proc-macro2",
2610
3719
  "quote",
2611
3720
  "syn",
2612
3721
  ]
2613
3722
 
3723
+ [[package]]
3724
+ name = "serdect"
3725
+ version = "0.2.0"
3726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3727
+ checksum = "a84f14a19e9a014bb9f4512488d9829a68e04ecabffb0f9904cd1ace94598177"
3728
+ dependencies = [
3729
+ "base16ct",
3730
+ "serde",
3731
+ ]
3732
+
3733
+ [[package]]
3734
+ name = "serdect"
3735
+ version = "0.3.0"
3736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3737
+ checksum = "f42f67da2385b51a5f9652db9c93d78aeaf7610bf5ec366080b6de810604af53"
3738
+ dependencies = [
3739
+ "base16ct",
3740
+ "serde",
3741
+ ]
3742
+
2614
3743
  [[package]]
2615
3744
  name = "sha1"
2616
3745
  version = "0.10.6"
@@ -2622,6 +3751,17 @@ dependencies = [
2622
3751
  "digest",
2623
3752
  ]
2624
3753
 
3754
+ [[package]]
3755
+ name = "sha1-checked"
3756
+ version = "0.10.0"
3757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3758
+ checksum = "89f599ac0c323ebb1c6082821a54962b839832b03984598375bff3975b804423"
3759
+ dependencies = [
3760
+ "digest",
3761
+ "sha1",
3762
+ "zeroize",
3763
+ ]
3764
+
2625
3765
  [[package]]
2626
3766
  name = "sha2"
2627
3767
  version = "0.10.9"
@@ -2633,17 +3773,37 @@ dependencies = [
2633
3773
  "digest",
2634
3774
  ]
2635
3775
 
3776
+ [[package]]
3777
+ name = "sha3"
3778
+ version = "0.10.8"
3779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3780
+ checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
3781
+ dependencies = [
3782
+ "digest",
3783
+ "keccak",
3784
+ ]
3785
+
2636
3786
  [[package]]
2637
3787
  name = "shlex"
2638
3788
  version = "1.3.0"
2639
3789
  source = "registry+https://github.com/rust-lang/crates.io-index"
2640
3790
  checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2641
3791
 
3792
+ [[package]]
3793
+ name = "signature"
3794
+ version = "2.2.0"
3795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3796
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
3797
+ dependencies = [
3798
+ "digest",
3799
+ "rand_core 0.6.4",
3800
+ ]
3801
+
2642
3802
  [[package]]
2643
3803
  name = "simd-adler32"
2644
- version = "0.3.7"
3804
+ version = "0.3.8"
2645
3805
  source = "registry+https://github.com/rust-lang/crates.io-index"
2646
- checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
3806
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
2647
3807
 
2648
3808
  [[package]]
2649
3809
  name = "similar"
@@ -2680,6 +3840,27 @@ version = "1.15.1"
2680
3840
  source = "registry+https://github.com/rust-lang/crates.io-index"
2681
3841
  checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2682
3842
 
3843
+ [[package]]
3844
+ name = "snafu"
3845
+ version = "0.8.9"
3846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3847
+ checksum = "6e84b3f4eacbf3a1ce05eac6763b4d629d60cbc94d632e4092c54ade71f1e1a2"
3848
+ dependencies = [
3849
+ "snafu-derive",
3850
+ ]
3851
+
3852
+ [[package]]
3853
+ name = "snafu-derive"
3854
+ version = "0.8.9"
3855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3856
+ checksum = "c1c97747dbf44bb1ca44a561ece23508e99cb592e862f22222dcf42f51d1e451"
3857
+ dependencies = [
3858
+ "heck",
3859
+ "proc-macro2",
3860
+ "quote",
3861
+ "syn",
3862
+ ]
3863
+
2683
3864
  [[package]]
2684
3865
  name = "socket2"
2685
3866
  version = "0.6.1"
@@ -2692,9 +3873,9 @@ dependencies = [
2692
3873
 
2693
3874
  [[package]]
2694
3875
  name = "spdx"
2695
- version = "0.12.0"
3876
+ version = "0.13.3"
2696
3877
  source = "registry+https://github.com/rust-lang/crates.io-index"
2697
- checksum = "41cf87c0efffc158b9dde4d6e0567a43e4383adc4c949e687a2039732db2f23a"
3878
+ checksum = "afd765179d12cdd06192e02b1d8c6b0d46bd26de9bf16ce04c881428ca2cc7ed"
2698
3879
  dependencies = [
2699
3880
  "smallvec",
2700
3881
  ]
@@ -2708,6 +3889,22 @@ dependencies = [
2708
3889
  "lock_api",
2709
3890
  ]
2710
3891
 
3892
+ [[package]]
3893
+ name = "spin"
3894
+ version = "0.10.0"
3895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3896
+ checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591"
3897
+
3898
+ [[package]]
3899
+ name = "spki"
3900
+ version = "0.7.3"
3901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3902
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
3903
+ dependencies = [
3904
+ "base64ct",
3905
+ "der",
3906
+ ]
3907
+
2711
3908
  [[package]]
2712
3909
  name = "stable_deref_trait"
2713
3910
  version = "1.2.1"
@@ -2749,9 +3946,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2749
3946
 
2750
3947
  [[package]]
2751
3948
  name = "syn"
2752
- version = "2.0.108"
3949
+ version = "2.0.111"
2753
3950
  source = "registry+https://github.com/rust-lang/crates.io-index"
2754
- checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917"
3951
+ checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
2755
3952
  dependencies = [
2756
3953
  "proc-macro2",
2757
3954
  "quote",
@@ -2787,6 +3984,12 @@ dependencies = [
2787
3984
  "libc",
2788
3985
  ]
2789
3986
 
3987
+ [[package]]
3988
+ name = "tap"
3989
+ version = "1.0.1"
3990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3991
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
3992
+
2790
3993
  [[package]]
2791
3994
  name = "tar"
2792
3995
  version = "0.4.44"
@@ -2953,9 +4156,9 @@ dependencies = [
2953
4156
 
2954
4157
  [[package]]
2955
4158
  name = "tokio-util"
2956
- version = "0.7.16"
4159
+ version = "0.7.17"
2957
4160
  source = "registry+https://github.com/rust-lang/crates.io-index"
2958
- checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
4161
+ checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594"
2959
4162
  dependencies = [
2960
4163
  "bytes",
2961
4164
  "futures-core",
@@ -2966,11 +4169,11 @@ dependencies = [
2966
4169
 
2967
4170
  [[package]]
2968
4171
  name = "toml"
2969
- version = "0.9.8"
4172
+ version = "0.9.9+spec-1.0.0"
2970
4173
  source = "registry+https://github.com/rust-lang/crates.io-index"
2971
- checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8"
4174
+ checksum = "eb5238e643fc34a1d5d7e753e1532a91912d74b63b92b3ea51fde8d1b7bc79dd"
2972
4175
  dependencies = [
2973
- "indexmap 2.12.0",
4176
+ "indexmap 2.12.1",
2974
4177
  "serde_core",
2975
4178
  "serde_spanned",
2976
4179
  "toml_datetime",
@@ -2981,20 +4184,20 @@ dependencies = [
2981
4184
 
2982
4185
  [[package]]
2983
4186
  name = "toml_datetime"
2984
- version = "0.7.3"
4187
+ version = "0.7.4+spec-1.0.0"
2985
4188
  source = "registry+https://github.com/rust-lang/crates.io-index"
2986
- checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
4189
+ checksum = "fe3cea6b2aa3b910092f6abd4053ea464fab5f9c170ba5e9a6aead16ec4af2b6"
2987
4190
  dependencies = [
2988
4191
  "serde_core",
2989
4192
  ]
2990
4193
 
2991
4194
  [[package]]
2992
4195
  name = "toml_edit"
2993
- version = "0.23.7"
4196
+ version = "0.23.10+spec-1.0.0"
2994
4197
  source = "registry+https://github.com/rust-lang/crates.io-index"
2995
- checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d"
4198
+ checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
2996
4199
  dependencies = [
2997
- "indexmap 2.12.0",
4200
+ "indexmap 2.12.1",
2998
4201
  "toml_datetime",
2999
4202
  "toml_parser",
3000
4203
  "winnow",
@@ -3002,18 +4205,18 @@ dependencies = [
3002
4205
 
3003
4206
  [[package]]
3004
4207
  name = "toml_parser"
3005
- version = "1.0.4"
4208
+ version = "1.0.5+spec-1.0.0"
3006
4209
  source = "registry+https://github.com/rust-lang/crates.io-index"
3007
- checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
4210
+ checksum = "4c03bee5ce3696f31250db0bbaff18bc43301ce0e8db2ed1f07cbb2acf89984c"
3008
4211
  dependencies = [
3009
4212
  "winnow",
3010
4213
  ]
3011
4214
 
3012
4215
  [[package]]
3013
4216
  name = "toml_writer"
3014
- version = "1.0.4"
4217
+ version = "1.0.5+spec-1.0.0"
3015
4218
  source = "registry+https://github.com/rust-lang/crates.io-index"
3016
- checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2"
4219
+ checksum = "a9cd6190959dce0994aa8970cd32ab116d1851ead27e866039acaf2524ce44fa"
3017
4220
 
3018
4221
  [[package]]
3019
4222
  name = "tower"
@@ -3032,9 +4235,9 @@ dependencies = [
3032
4235
 
3033
4236
  [[package]]
3034
4237
  name = "tower-http"
3035
- version = "0.6.6"
4238
+ version = "0.6.8"
3036
4239
  source = "registry+https://github.com/rust-lang/crates.io-index"
3037
- checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
4240
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
3038
4241
  dependencies = [
3039
4242
  "bitflags",
3040
4243
  "bytes",
@@ -3062,9 +4265,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3062
4265
 
3063
4266
  [[package]]
3064
4267
  name = "tracing"
3065
- version = "0.1.41"
4268
+ version = "0.1.43"
3066
4269
  source = "registry+https://github.com/rust-lang/crates.io-index"
3067
- checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
4270
+ checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647"
3068
4271
  dependencies = [
3069
4272
  "pin-project-lite",
3070
4273
  "tracing-core",
@@ -3072,9 +4275,9 @@ dependencies = [
3072
4275
 
3073
4276
  [[package]]
3074
4277
  name = "tracing-core"
3075
- version = "0.1.34"
4278
+ version = "0.1.35"
3076
4279
  source = "registry+https://github.com/rust-lang/crates.io-index"
3077
- checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
4280
+ checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c"
3078
4281
  dependencies = [
3079
4282
  "once_cell",
3080
4283
  ]
@@ -3085,6 +4288,15 @@ version = "0.2.5"
3085
4288
  source = "registry+https://github.com/rust-lang/crates.io-index"
3086
4289
  checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3087
4290
 
4291
+ [[package]]
4292
+ name = "twofish"
4293
+ version = "0.7.1"
4294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4295
+ checksum = "a78e83a30223c757c3947cd144a31014ff04298d8719ae10d03c31c0448c8013"
4296
+ dependencies = [
4297
+ "cipher",
4298
+ ]
4299
+
3088
4300
  [[package]]
3089
4301
  name = "type-map"
3090
4302
  version = "0.5.1"
@@ -3167,6 +4379,12 @@ version = "0.2.2"
3167
4379
  source = "registry+https://github.com/rust-lang/crates.io-index"
3168
4380
  checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3169
4381
 
4382
+ [[package]]
4383
+ name = "unicode-xid"
4384
+ version = "0.2.6"
4385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4386
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
4387
+
3170
4388
  [[package]]
3171
4389
  name = "unindent"
3172
4390
  version = "0.2.4"
@@ -3175,9 +4393,19 @@ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3175
4393
 
3176
4394
  [[package]]
3177
4395
  name = "unit-prefix"
4396
+ version = "0.5.2"
4397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4398
+ checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3"
4399
+
4400
+ [[package]]
4401
+ name = "universal-hash"
3178
4402
  version = "0.5.1"
3179
4403
  source = "registry+https://github.com/rust-lang/crates.io-index"
3180
- checksum = "323402cff2dd658f39ca17c789b502021b3f18707c91cdf22e3838e1b4023817"
4404
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
4405
+ dependencies = [
4406
+ "crypto-common",
4407
+ "subtle",
4408
+ ]
3181
4409
 
3182
4410
  [[package]]
3183
4411
  name = "untrusted"
@@ -3215,6 +4443,48 @@ version = "0.9.5"
3215
4443
  source = "registry+https://github.com/rust-lang/crates.io-index"
3216
4444
  checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3217
4445
 
4446
+ [[package]]
4447
+ name = "voa"
4448
+ version = "0.5.0"
4449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4450
+ checksum = "6ea7daef31f677b79982a7c986dc1cda887dafeb9b4e2c367e3251bd8b20397c"
4451
+ dependencies = [
4452
+ "log",
4453
+ "strum",
4454
+ "thiserror",
4455
+ "voa-core",
4456
+ "voa-openpgp",
4457
+ ]
4458
+
4459
+ [[package]]
4460
+ name = "voa-core"
4461
+ version = "0.3.0"
4462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4463
+ checksum = "f60ffbf7b0d26f124c83bd27441d60011ec2a118fbc8b7d9987a391dcea77077"
4464
+ dependencies = [
4465
+ "directories",
4466
+ "libc",
4467
+ "log",
4468
+ "strum",
4469
+ "thiserror",
4470
+ "winnow",
4471
+ "xdg",
4472
+ ]
4473
+
4474
+ [[package]]
4475
+ name = "voa-openpgp"
4476
+ version = "0.5.0"
4477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4478
+ checksum = "f449bd0e9f4a343e83b690b69eff1d5539d225c3d04cd6d0c4982189077b5fe6"
4479
+ dependencies = [
4480
+ "env_logger",
4481
+ "log",
4482
+ "pgp",
4483
+ "rpgpie",
4484
+ "thiserror",
4485
+ "voa-core",
4486
+ ]
4487
+
3218
4488
  [[package]]
3219
4489
  name = "wait-timeout"
3220
4490
  version = "0.2.1"
@@ -3260,9 +4530,9 @@ dependencies = [
3260
4530
 
3261
4531
  [[package]]
3262
4532
  name = "wasm-bindgen"
3263
- version = "0.2.105"
4533
+ version = "0.2.106"
3264
4534
  source = "registry+https://github.com/rust-lang/crates.io-index"
3265
- checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
4535
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
3266
4536
  dependencies = [
3267
4537
  "cfg-if",
3268
4538
  "once_cell",
@@ -3273,9 +4543,9 @@ dependencies = [
3273
4543
 
3274
4544
  [[package]]
3275
4545
  name = "wasm-bindgen-futures"
3276
- version = "0.4.55"
4546
+ version = "0.4.56"
3277
4547
  source = "registry+https://github.com/rust-lang/crates.io-index"
3278
- checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0"
4548
+ checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
3279
4549
  dependencies = [
3280
4550
  "cfg-if",
3281
4551
  "js-sys",
@@ -3286,9 +4556,9 @@ dependencies = [
3286
4556
 
3287
4557
  [[package]]
3288
4558
  name = "wasm-bindgen-macro"
3289
- version = "0.2.105"
4559
+ version = "0.2.106"
3290
4560
  source = "registry+https://github.com/rust-lang/crates.io-index"
3291
- checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
4561
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
3292
4562
  dependencies = [
3293
4563
  "quote",
3294
4564
  "wasm-bindgen-macro-support",
@@ -3296,9 +4566,9 @@ dependencies = [
3296
4566
 
3297
4567
  [[package]]
3298
4568
  name = "wasm-bindgen-macro-support"
3299
- version = "0.2.105"
4569
+ version = "0.2.106"
3300
4570
  source = "registry+https://github.com/rust-lang/crates.io-index"
3301
- checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
4571
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
3302
4572
  dependencies = [
3303
4573
  "bumpalo",
3304
4574
  "proc-macro2",
@@ -3309,18 +4579,18 @@ dependencies = [
3309
4579
 
3310
4580
  [[package]]
3311
4581
  name = "wasm-bindgen-shared"
3312
- version = "0.2.105"
4582
+ version = "0.2.106"
3313
4583
  source = "registry+https://github.com/rust-lang/crates.io-index"
3314
- checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
4584
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
3315
4585
  dependencies = [
3316
4586
  "unicode-ident",
3317
4587
  ]
3318
4588
 
3319
4589
  [[package]]
3320
4590
  name = "web-sys"
3321
- version = "0.3.82"
4591
+ version = "0.3.83"
3322
4592
  source = "registry+https://github.com/rust-lang/crates.io-index"
3323
- checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
4593
+ checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
3324
4594
  dependencies = [
3325
4595
  "js-sys",
3326
4596
  "wasm-bindgen",
@@ -3338,9 +4608,9 @@ dependencies = [
3338
4608
 
3339
4609
  [[package]]
3340
4610
  name = "webpki-roots"
3341
- version = "1.0.3"
4611
+ version = "1.0.4"
3342
4612
  source = "registry+https://github.com/rust-lang/crates.io-index"
3343
- checksum = "32b130c0d2d49f8b6889abc456e795e82525204f27c42cf767cf0d7734e089b8"
4613
+ checksum = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e"
3344
4614
  dependencies = [
3345
4615
  "rustls-pki-types",
3346
4616
  ]
@@ -3424,15 +4694,6 @@ dependencies = [
3424
4694
  "windows-link",
3425
4695
  ]
3426
4696
 
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
4697
  [[package]]
3437
4698
  name = "windows-sys"
3438
4699
  version = "0.52.0"
@@ -3469,21 +4730,6 @@ dependencies = [
3469
4730
  "windows-link",
3470
4731
  ]
3471
4732
 
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
4733
  [[package]]
3488
4734
  name = "windows-targets"
3489
4735
  version = "0.52.6"
@@ -3517,12 +4763,6 @@ dependencies = [
3517
4763
  "windows_x86_64_msvc 0.53.1",
3518
4764
  ]
3519
4765
 
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
4766
  [[package]]
3527
4767
  name = "windows_aarch64_gnullvm"
3528
4768
  version = "0.52.6"
@@ -3535,12 +4775,6 @@ version = "0.53.1"
3535
4775
  source = "registry+https://github.com/rust-lang/crates.io-index"
3536
4776
  checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3537
4777
 
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
4778
  [[package]]
3545
4779
  name = "windows_aarch64_msvc"
3546
4780
  version = "0.52.6"
@@ -3553,12 +4787,6 @@ version = "0.53.1"
3553
4787
  source = "registry+https://github.com/rust-lang/crates.io-index"
3554
4788
  checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3555
4789
 
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
4790
  [[package]]
3563
4791
  name = "windows_i686_gnu"
3564
4792
  version = "0.52.6"
@@ -3583,12 +4811,6 @@ version = "0.53.1"
3583
4811
  source = "registry+https://github.com/rust-lang/crates.io-index"
3584
4812
  checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3585
4813
 
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
4814
  [[package]]
3593
4815
  name = "windows_i686_msvc"
3594
4816
  version = "0.52.6"
@@ -3601,12 +4823,6 @@ version = "0.53.1"
3601
4823
  source = "registry+https://github.com/rust-lang/crates.io-index"
3602
4824
  checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3603
4825
 
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
4826
  [[package]]
3611
4827
  name = "windows_x86_64_gnu"
3612
4828
  version = "0.52.6"
@@ -3619,12 +4835,6 @@ version = "0.53.1"
3619
4835
  source = "registry+https://github.com/rust-lang/crates.io-index"
3620
4836
  checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3621
4837
 
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
4838
  [[package]]
3629
4839
  name = "windows_x86_64_gnullvm"
3630
4840
  version = "0.52.6"
@@ -3637,12 +4847,6 @@ version = "0.53.1"
3637
4847
  source = "registry+https://github.com/rust-lang/crates.io-index"
3638
4848
  checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3639
4849
 
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
4850
  [[package]]
3647
4851
  name = "windows_x86_64_msvc"
3648
4852
  version = "0.52.6"
@@ -3657,11 +4861,11 @@ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3657
4861
 
3658
4862
  [[package]]
3659
4863
  name = "winnow"
3660
- version = "0.7.13"
4864
+ version = "0.7.14"
3661
4865
  source = "registry+https://github.com/rust-lang/crates.io-index"
3662
- checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
4866
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
3663
4867
  dependencies = [
3664
- "anstream 0.3.2",
4868
+ "anstream",
3665
4869
  "anstyle",
3666
4870
  "is_terminal_polyfill",
3667
4871
  "memchr",
@@ -3686,6 +4890,27 @@ version = "0.6.2"
3686
4890
  source = "registry+https://github.com/rust-lang/crates.io-index"
3687
4891
  checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
3688
4892
 
4893
+ [[package]]
4894
+ name = "wyz"
4895
+ version = "0.5.1"
4896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4897
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
4898
+ dependencies = [
4899
+ "tap",
4900
+ ]
4901
+
4902
+ [[package]]
4903
+ name = "x25519-dalek"
4904
+ version = "2.0.1"
4905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4906
+ checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277"
4907
+ dependencies = [
4908
+ "curve25519-dalek",
4909
+ "rand_core 0.6.4",
4910
+ "serde",
4911
+ "zeroize",
4912
+ ]
4913
+
3689
4914
  [[package]]
3690
4915
  name = "xattr"
3691
4916
  version = "1.6.1"
@@ -3696,6 +4921,12 @@ dependencies = [
3696
4921
  "rustix",
3697
4922
  ]
3698
4923
 
4924
+ [[package]]
4925
+ name = "xdg"
4926
+ version = "3.0.0"
4927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4928
+ checksum = "2fb433233f2df9344722454bc7e96465c9d03bff9d77c248f9e7523fe79585b5"
4929
+
3699
4930
  [[package]]
3700
4931
  name = "yansi"
3701
4932
  version = "1.0.1"
@@ -3727,18 +4958,18 @@ dependencies = [
3727
4958
 
3728
4959
  [[package]]
3729
4960
  name = "zerocopy"
3730
- version = "0.8.27"
4961
+ version = "0.8.31"
3731
4962
  source = "registry+https://github.com/rust-lang/crates.io-index"
3732
- checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
4963
+ checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
3733
4964
  dependencies = [
3734
4965
  "zerocopy-derive",
3735
4966
  ]
3736
4967
 
3737
4968
  [[package]]
3738
4969
  name = "zerocopy-derive"
3739
- version = "0.8.27"
4970
+ version = "0.8.31"
3740
4971
  source = "registry+https://github.com/rust-lang/crates.io-index"
3741
- checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
4972
+ checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
3742
4973
  dependencies = [
3743
4974
  "proc-macro2",
3744
4975
  "quote",
@@ -3771,6 +5002,20 @@ name = "zeroize"
3771
5002
  version = "1.8.2"
3772
5003
  source = "registry+https://github.com/rust-lang/crates.io-index"
3773
5004
  checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
5005
+ dependencies = [
5006
+ "zeroize_derive",
5007
+ ]
5008
+
5009
+ [[package]]
5010
+ name = "zeroize_derive"
5011
+ version = "1.4.2"
5012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5013
+ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
5014
+ dependencies = [
5015
+ "proc-macro2",
5016
+ "quote",
5017
+ "syn",
5018
+ ]
3774
5019
 
3775
5020
  [[package]]
3776
5021
  name = "zerotrie"
@@ -3806,6 +5051,12 @@ dependencies = [
3806
5051
  "syn",
3807
5052
  ]
3808
5053
 
5054
+ [[package]]
5055
+ name = "zlib-rs"
5056
+ version = "0.5.4"
5057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5058
+ checksum = "51f936044d677be1a1168fae1d03b583a285a5dd9d8cbf7b24c23aa1fc775235"
5059
+
3809
5060
  [[package]]
3810
5061
  name = "zstd"
3811
5062
  version = "0.13.3"