python-alpm 0.4.0__tar.gz → 0.4.2__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 (291) hide show
  1. {python_alpm-0.4.0 → python_alpm-0.4.2}/Cargo.lock +761 -496
  2. {python_alpm-0.4.0 → python_alpm-0.4.2}/Cargo.toml +17 -12
  3. {python_alpm-0.4.0 → python_alpm-0.4.2}/PKG-INFO +1 -1
  4. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-pkgbuild/CHANGELOG.md +7 -0
  5. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-pkgbuild/Cargo.toml +1 -1
  6. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-pkgbuild/src/bridge/mod.rs +8 -10
  7. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-pkgbuild/src/error.rs +2 -2
  8. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/CHANGELOG.md +13 -0
  9. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/Cargo.toml +1 -1
  10. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/README.md +5 -4
  11. python_alpm-0.4.0/alpm-srcinfo/locales/en-US/pkgbuild-bridge-error.ftl → python_alpm-0.4.2/alpm-srcinfo/locales/en-US/main.ftl +33 -0
  12. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/CHANGELOG.md +20 -1
  13. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/Cargo.toml +2 -2
  14. python_alpm-0.4.0/alpm-types/locales/en-US/error.ftl → python_alpm-0.4.2/alpm-types/locales/en-US/main.ftl +4 -0
  15. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/resources/specification/alpm-install-scriptlet.5.md +1 -1
  16. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/env.rs +10 -2
  17. {python_alpm-0.4.0 → python_alpm-0.4.2}/pyproject.toml +2 -2
  18. {python_alpm-0.4.0 → python_alpm-0.4.2}/python/alpm/alpm_types.pyi +2 -2
  19. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/CHANGELOG.md +18 -0
  20. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/Cargo.toml +2 -2
  21. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/srcinfo/schema.rs +1 -1
  22. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/srcinfo/source_info/v1/merged.rs +2 -2
  23. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/srcinfo/source_info/v1/mod.rs +1 -1
  24. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/srcinfo/source_info/v1/package.rs +3 -3
  25. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/srcinfo/source_info/v1/package_base.rs +2 -2
  26. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/types/checksum.rs +2 -2
  27. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/types/env.rs +2 -2
  28. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/types/license.rs +1 -1
  29. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/types/openpgp.rs +2 -2
  30. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/types/path.rs +1 -1
  31. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/types/relation.rs +10 -8
  32. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/types/requirement.rs +2 -2
  33. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/types/source.rs +1 -1
  34. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/types/system.rs +8 -8
  35. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/types/url.rs +7 -7
  36. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/types/version.rs +6 -6
  37. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/tests/srcinfo/test_package.py +5 -1
  38. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/tests/srcinfo/test_package_base.py +5 -1
  39. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/tests/types/test_env.py +1 -0
  40. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/tests/types/test_relation.py +22 -0
  41. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/tests/types/test_system.py +2 -2
  42. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/uv.lock +20 -21
  43. python_alpm-0.4.0/alpm-srcinfo/locales/en-US/error.ftl +0 -32
  44. python_alpm-0.4.0/alpm-types/locales/en-US/package-error.ftl +0 -3
  45. python_alpm-0.4.0/python/alpm/__init__.py +0 -6
  46. python_alpm-0.4.0/python/alpm/_native.pyi +0 -4
  47. python_alpm-0.4.0/python/alpm/alpm_srcinfo/__init__.pyi +0 -20
  48. python_alpm-0.4.0/python/alpm/alpm_srcinfo/error.pyi +0 -8
  49. python_alpm-0.4.0/python/alpm/alpm_srcinfo/schema.pyi +0 -70
  50. python_alpm-0.4.0/python/alpm/alpm_srcinfo/source_info/__init__.pyi +0 -54
  51. python_alpm-0.4.0/python/alpm/alpm_srcinfo/source_info/v1/__init__.pyi +0 -102
  52. python_alpm-0.4.0/python/alpm/alpm_srcinfo/source_info/v1/merged.pyi +0 -188
  53. python_alpm-0.4.0/python/alpm/alpm_srcinfo/source_info/v1/package.pyi +0 -257
  54. python_alpm-0.4.0/python/alpm/alpm_srcinfo/source_info/v1/package_base.pyi +0 -403
  55. python_alpm-0.4.0/python/alpm/py.typed +0 -0
  56. python_alpm-0.4.0/python/alpm/type_aliases.py +0 -146
  57. python_alpm-0.4.0/python-alpm/python/alpm/alpm_types.pyi +0 -1435
  58. {python_alpm-0.4.0 → python_alpm-0.4.2}/README.md +0 -0
  59. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-common/CHANGELOG.md +0 -0
  60. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-common/Cargo.toml +0 -0
  61. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-common/README.md +0 -0
  62. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-common/locales/en-US/main.ftl +0 -0
  63. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-common/src/error.rs +0 -0
  64. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-common/src/lib.rs +0 -0
  65. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-common/src/package/input.rs +0 -0
  66. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-common/src/package/mod.rs +0 -0
  67. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-common/src/traits/metadata_file.rs +0 -0
  68. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-common/src/traits/mod.rs +0 -0
  69. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-common/src/traits/schema.rs +0 -0
  70. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-parsers/CHANGELOG.md +0 -0
  71. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-parsers/Cargo.toml +0 -0
  72. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-parsers/README.md +0 -0
  73. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-parsers/src/custom_ini/de.rs +0 -0
  74. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-parsers/src/custom_ini/mod.rs +0 -0
  75. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-parsers/src/custom_ini/parser.rs +0 -0
  76. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-parsers/src/lib.rs +0 -0
  77. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-parsers/src/macros.rs +0 -0
  78. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-parsers/tests/integration.rs +0 -0
  79. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-parsers/tests/snapshots/integration__write_ini__case_1_missing_key.snap +0 -0
  80. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-parsers/tests/snapshots/integration__write_ini__case_2_incomplete_delimiter_1.snap +0 -0
  81. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-parsers/tests/snapshots/integration__write_ini__case_3_incomplete_delimiter_2.snap +0 -0
  82. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-parsers/tests/snapshots/integration__write_ini__case_4_missing_delimiter_2.snap +0 -0
  83. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-pkgbuild/README.md +0 -0
  84. /python_alpm-0.4.0/alpm-pkgbuild/locales/en-US/error.ftl → /python_alpm-0.4.2/alpm-pkgbuild/locales/en-US/main.ftl +0 -0
  85. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-pkgbuild/src/bridge/parser.rs +0 -0
  86. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-pkgbuild/src/lib.rs +0 -0
  87. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-pkgbuild/tests/test_files/normal.pkgbuild +0 -0
  88. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-pkgbuild/tests/test_files/normal.srcinfo +0 -0
  89. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/ARCHITECTURE.md +0 -0
  90. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/resources/specification/SRCINFO.5.md +0 -0
  91. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/src/cli.rs +0 -0
  92. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/src/commands.rs +0 -0
  93. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/src/error.rs +0 -0
  94. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/src/lib.rs +0 -0
  95. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/src/main.rs +0 -0
  96. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/src/pkgbuild_bridge/error.rs +0 -0
  97. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/src/pkgbuild_bridge/mod.rs +0 -0
  98. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/src/pkgbuild_bridge/package.rs +0 -0
  99. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/src/pkgbuild_bridge/package_base.rs +0 -0
  100. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/src/schema.rs +0 -0
  101. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/src/source_info/mod.rs +0 -0
  102. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/src/source_info/parser.rs +0 -0
  103. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/src/source_info/v1/merged.rs +0 -0
  104. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/src/source_info/v1/mod.rs +0 -0
  105. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/src/source_info/v1/package.rs +0 -0
  106. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/src/source_info/v1/package_base.rs +0 -0
  107. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/src/source_info/v1/writer.rs +0 -0
  108. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct/all_cleared.pkgbuild +0 -0
  109. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct/all_cleared.srcinfo +0 -0
  110. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct/all_overrides.pkgbuild +0 -0
  111. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct/all_overrides.srcinfo +0 -0
  112. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct/custom_architecture.srcinfo +0 -0
  113. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct/full_pkgbase.pkgbuild +0 -0
  114. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct/full_pkgbase.srcinfo +0 -0
  115. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct/package_with_any_arch.pkgbuild +0 -0
  116. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct/package_with_any_arch.srcinfo +0 -0
  117. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct/pkgbase_with_any_arch.pkgbuild +0 -0
  118. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct/pkgbase_with_any_arch.srcinfo +0 -0
  119. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct/split_package.pkgbuild +0 -0
  120. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct/split_package.srcinfo +0 -0
  121. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct.rs +0 -0
  122. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct_snapshots/all_cleared_merged.snap +0 -0
  123. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct_snapshots/all_cleared_source_info.snap +0 -0
  124. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct_snapshots/all_overrides_merged.snap +0 -0
  125. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct_snapshots/all_overrides_source_info.snap +0 -0
  126. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct_snapshots/custom_architecture_merged.snap +0 -0
  127. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct_snapshots/custom_architecture_source_info.snap +0 -0
  128. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct_snapshots/full_pkgbase_merged.snap +0 -0
  129. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct_snapshots/full_pkgbase_source_info.snap +0 -0
  130. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct_snapshots/package_with_any_arch_merged.snap +0 -0
  131. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct_snapshots/package_with_any_arch_source_info.snap +0 -0
  132. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct_snapshots/pkgbase_with_any_arch_merged.snap +0 -0
  133. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct_snapshots/pkgbase_with_any_arch_source_info.snap +0 -0
  134. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct_snapshots/split_package_merged.snap +0 -0
  135. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/correct_snapshots/split_package_source_info.snap +0 -0
  136. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/generate_srcinfo.bash +0 -0
  137. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/integration.rs +0 -0
  138. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/parse_error_snapshots/invalid_checksum.snap +0 -0
  139. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/parse_error_snapshots/invalid_pkgbase_header_delimiter.snap +0 -0
  140. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/parse_error_snapshots/invalid_pkver.snap +0 -0
  141. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/parse_error_snapshots/invalid_property_delimiter.snap +0 -0
  142. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/parse_error_snapshots/missing_pkgbase.snap +0 -0
  143. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/parse_error_snapshots/missing_pkgname.snap +0 -0
  144. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/parse_error_snapshots/unexpected_pkgbase_property.snap +0 -0
  145. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/parse_error_snapshots/unexpected_pkgname_property.snap +0 -0
  146. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/parse_errors/invalid_checksum.srcinfo +0 -0
  147. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/parse_errors/invalid_pkgbase_header_delimiter.srcinfo +0 -0
  148. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/parse_errors/invalid_pkver.srcinfo +0 -0
  149. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/parse_errors/invalid_property_delimiter.srcinfo +0 -0
  150. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/parse_errors/missing_pkgbase.srcinfo +0 -0
  151. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/parse_errors/missing_pkgname.srcinfo +0 -0
  152. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/parse_errors/unexpected_pkgbase_property.srcinfo +0 -0
  153. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/parse_errors/unexpected_pkgname_property.srcinfo +0 -0
  154. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/parse_errors.rs +0 -0
  155. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/parser_whitespaces.rs +0 -0
  156. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/pkgbuild_correct/all_cleared.pkgbuild +0 -0
  157. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/pkgbuild_correct/all_overrides.pkgbuild +0 -0
  158. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/pkgbuild_correct/full_pkgbase.pkgbuild +0 -0
  159. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/pkgbuild_correct/simple.pkgbuild +0 -0
  160. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/pkgbuild_correct.rs +0 -0
  161. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/pkgbuild_correct_bridge_output/all_cleared_bridge.snap +0 -0
  162. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/pkgbuild_correct_bridge_output/all_overrides_bridge.snap +0 -0
  163. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/pkgbuild_correct_bridge_output/full_pkgbase_bridge.snap +0 -0
  164. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/pkgbuild_correct_bridge_output/simple_bridge.snap +0 -0
  165. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/pkgbuild_correct_snapshots/all_cleared_srcinfo.snap +0 -0
  166. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/pkgbuild_correct_snapshots/all_overrides_srcinfo.snap +0 -0
  167. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/pkgbuild_correct_snapshots/full_pkgbase_srcinfo.snap +0 -0
  168. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/pkgbuild_correct_snapshots/simple_srcinfo.snap +0 -0
  169. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/pkgbuild_invalid/cleared_architecture.pkgbuild +0 -0
  170. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/pkgbuild_invalid/cleared_array_on_single_value.pkgbuild +0 -0
  171. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/pkgbuild_invalid.rs +0 -0
  172. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/pkgbuild_invalid_snapshots/cleared_architecture_srcinfo.snap +0 -0
  173. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/pkgbuild_invalid_snapshots/cleared_array_on_single_value_srcinfo.snap +0 -0
  174. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/unit_test_files/normal.pkgbuild +0 -0
  175. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/unit_test_files/normal.srcinfo +0 -0
  176. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-srcinfo/tests/writer.rs +0 -0
  177. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/README.md +0 -0
  178. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/resources/specification/alpm-architecture.7.md +0 -0
  179. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/resources/specification/alpm-comparison.7.md +0 -0
  180. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/resources/specification/alpm-epoch.7.md +0 -0
  181. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/resources/specification/alpm-meta-package.7.md +0 -0
  182. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/resources/specification/alpm-package-base.7.md +0 -0
  183. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/resources/specification/alpm-package-group.7.md +0 -0
  184. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/resources/specification/alpm-package-name.7.md +0 -0
  185. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/resources/specification/alpm-package-relation.7.md +0 -0
  186. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/resources/specification/alpm-package-source-checksum.7.md +0 -0
  187. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/resources/specification/alpm-package-source.7.md +0 -0
  188. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/resources/specification/alpm-package-version.7.md +0 -0
  189. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/resources/specification/alpm-pkgrel.7.md +0 -0
  190. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/resources/specification/alpm-pkgver.7.md +0 -0
  191. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/resources/specification/alpm-soname.7.md +0 -0
  192. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/resources/specification/alpm-sonamev1.7.md +0 -0
  193. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/resources/specification/alpm-sonamev2.7.md +0 -0
  194. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/resources/specification/alpm-source-repo.7.md +0 -0
  195. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/resources/specification/alpm-split-package.7.md +0 -0
  196. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/resources/specification/alpm.7.md +0 -0
  197. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/checksum.rs +0 -0
  198. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/compression.rs +0 -0
  199. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/date.rs +0 -0
  200. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/error.rs +0 -0
  201. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/file_type.rs +0 -0
  202. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/lib.rs +0 -0
  203. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/license.rs +0 -0
  204. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/name.rs +0 -0
  205. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/openpgp.rs +0 -0
  206. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/package/contents.rs +0 -0
  207. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/package/error.rs +0 -0
  208. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/package/file_name.rs +0 -0
  209. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/package/installation.rs +0 -0
  210. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/package/mod.rs +0 -0
  211. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/package/source.rs +0 -0
  212. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/package/validation.rs +0 -0
  213. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/path.rs +0 -0
  214. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/pkg.rs +0 -0
  215. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/relation/base.rs +0 -0
  216. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/relation/composite.rs +0 -0
  217. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/relation/mod.rs +0 -0
  218. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/relation/soname.rs +0 -0
  219. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/size.rs +0 -0
  220. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/source.rs +0 -0
  221. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/system.rs +0 -0
  222. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/url.rs +0 -0
  223. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/version/base.rs +0 -0
  224. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/version/buildtool.rs +0 -0
  225. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/version/comparison.rs +0 -0
  226. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/version/mod.rs +0 -0
  227. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/version/pkg_full.rs +0 -0
  228. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/version/pkg_generic.rs +0 -0
  229. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/version/pkg_minimal.rs +0 -0
  230. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/version/requirement.rs +0 -0
  231. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/src/version/schema.rs +0 -0
  232. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/create_error_snapshots/fail_to_create_package_file_name__case_1_version_without_pkgrel.snap +0 -0
  233. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/create_error_snapshots/fail_to_create_package_file_name__case_2_version_with_epoch_without_pkgrel.snap +0 -0
  234. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/from_path_snapshots/package_file_name_from_path_fails__case_1_no_file_name.snap +0 -0
  235. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/integration.rs +0 -0
  236. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_01_no_name.snap +0 -0
  237. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_02_no_name.snap +0 -0
  238. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_03_invalid_version.snap +0 -0
  239. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_04_no_version.snap +0 -0
  240. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_05_no_version_name_with_dashes.snap +0 -0
  241. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_06_invalid_architecture.snap +0 -0
  242. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_07_no_architecture.snap +0 -0
  243. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_08_no_architecture_name_with_dashes.snap +0 -0
  244. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_09_invalid_package_marker.snap +0 -0
  245. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_10_no_package_marker.snap +0 -0
  246. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_11_no_package_marker_name_with_dashes.snap +0 -0
  247. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_11_no_tar_ending.snap +0 -0
  248. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_12_invalid_compression.snap +0 -0
  249. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_12_no_package_marker_name_with_dashes.snap +0 -0
  250. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_13_invalid_compression.snap +0 -0
  251. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_13_invalid_dashes.snap +0 -0
  252. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_14_invalid_dashes.snap +0 -0
  253. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_15_invalid_dashes.snap +0 -0
  254. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_15_no_dashes.snap +0 -0
  255. {python_alpm-0.4.0 → python_alpm-0.4.2}/alpm-types/tests/parse_error_snapshots/fail_to_parse_package_filename__case_16_no_dashes.snap +0 -0
  256. {python_alpm-0.4.0/python-alpm → python_alpm-0.4.2}/python/alpm/__init__.py +0 -0
  257. {python_alpm-0.4.0/python-alpm → python_alpm-0.4.2}/python/alpm/_native.pyi +0 -0
  258. {python_alpm-0.4.0/python-alpm → python_alpm-0.4.2}/python/alpm/alpm_srcinfo/__init__.pyi +0 -0
  259. {python_alpm-0.4.0/python-alpm → python_alpm-0.4.2}/python/alpm/alpm_srcinfo/error.pyi +0 -0
  260. {python_alpm-0.4.0/python-alpm → python_alpm-0.4.2}/python/alpm/alpm_srcinfo/schema.pyi +0 -0
  261. {python_alpm-0.4.0/python-alpm → python_alpm-0.4.2}/python/alpm/alpm_srcinfo/source_info/__init__.pyi +0 -0
  262. {python_alpm-0.4.0/python-alpm → python_alpm-0.4.2}/python/alpm/alpm_srcinfo/source_info/v1/__init__.pyi +0 -0
  263. {python_alpm-0.4.0/python-alpm → python_alpm-0.4.2}/python/alpm/alpm_srcinfo/source_info/v1/merged.pyi +0 -0
  264. {python_alpm-0.4.0/python-alpm → python_alpm-0.4.2}/python/alpm/alpm_srcinfo/source_info/v1/package.pyi +0 -0
  265. {python_alpm-0.4.0/python-alpm → python_alpm-0.4.2}/python/alpm/alpm_srcinfo/source_info/v1/package_base.pyi +0 -0
  266. {python_alpm-0.4.0/python-alpm → python_alpm-0.4.2}/python/alpm/py.typed +0 -0
  267. {python_alpm-0.4.0/python-alpm → python_alpm-0.4.2}/python/alpm/type_aliases.py +0 -0
  268. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/ARCHITECTURE.md +0 -0
  269. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/README.md +0 -0
  270. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/cliff.toml +0 -0
  271. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/lib.rs +0 -0
  272. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/macros.rs +0 -0
  273. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/srcinfo/error.rs +0 -0
  274. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/srcinfo/mod.rs +0 -0
  275. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/srcinfo/source_info/mod.rs +0 -0
  276. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/types/error.rs +0 -0
  277. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/src/types/mod.rs +0 -0
  278. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/tests/conftest.py +0 -0
  279. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/tests/srcinfo/test_alpm_srcinfo_imports.py +0 -0
  280. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/tests/srcinfo/test_schema.py +0 -0
  281. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/tests/srcinfo/test_source_info.py +0 -0
  282. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/tests/srcinfo/test_source_info_v1.py +0 -0
  283. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/tests/test_alpm_imports.py +0 -0
  284. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/tests/types/test_alpm_types_imports.py +0 -0
  285. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/tests/types/test_checksum.py +0 -0
  286. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/tests/types/test_license.py +0 -0
  287. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/tests/types/test_openpgp.py +0 -0
  288. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/tests/types/test_path.py +0 -0
  289. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/tests/types/test_requirement.py +0 -0
  290. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/tests/types/test_url.py +0 -0
  291. {python_alpm-0.4.0 → python_alpm-0.4.2}/python-alpm/tests/types/test_version.py +0 -0
@@ -2,6 +2,16 @@
2
2
  # It is not intended for manual editing.
3
3
  version = 4
4
4
 
5
+ [[package]]
6
+ name = "addr"
7
+ version = "0.15.6"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "a93b8a41dbe230ad5087cc721f8d41611de654542180586b315d9f4cf6b72bef"
10
+ dependencies = [
11
+ "psl",
12
+ "psl-types",
13
+ ]
14
+
5
15
  [[package]]
6
16
  name = "adler2"
7
17
  version = "2.0.1"
@@ -53,6 +63,19 @@ dependencies = [
53
63
  "aes",
54
64
  ]
55
65
 
66
+ [[package]]
67
+ name = "ahash"
68
+ version = "0.8.12"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
71
+ dependencies = [
72
+ "cfg-if",
73
+ "getrandom 0.3.4",
74
+ "once_cell",
75
+ "version_check",
76
+ "zerocopy",
77
+ ]
78
+
56
79
  [[package]]
57
80
  name = "aho-corasick"
58
81
  version = "1.1.4"
@@ -64,7 +87,7 @@ dependencies = [
64
87
 
65
88
  [[package]]
66
89
  name = "alpm-buildinfo"
67
- version = "0.5.1"
90
+ version = "0.5.3"
68
91
  dependencies = [
69
92
  "alpm-common",
70
93
  "alpm-parsers",
@@ -78,7 +101,7 @@ dependencies = [
78
101
  "serde_json",
79
102
  "serde_more",
80
103
  "serde_with",
81
- "strum",
104
+ "strum 0.28.0",
82
105
  "tempfile",
83
106
  "testresult",
84
107
  "thiserror",
@@ -98,7 +121,7 @@ dependencies = [
98
121
 
99
122
  [[package]]
100
123
  name = "alpm-compress"
101
- version = "0.1.2"
124
+ version = "0.1.3"
102
125
  dependencies = [
103
126
  "alpm-types",
104
127
  "bzip2",
@@ -118,7 +141,7 @@ dependencies = [
118
141
 
119
142
  [[package]]
120
143
  name = "alpm-db"
121
- version = "0.2.0"
144
+ version = "0.2.2"
122
145
  dependencies = [
123
146
  "alpm-common",
124
147
  "alpm-parsers",
@@ -132,7 +155,7 @@ dependencies = [
132
155
  "serde",
133
156
  "serde_json",
134
157
  "serde_with",
135
- "strum",
158
+ "strum 0.28.0",
136
159
  "tempfile",
137
160
  "testresult",
138
161
  "thiserror",
@@ -141,7 +164,7 @@ dependencies = [
141
164
 
142
165
  [[package]]
143
166
  name = "alpm-lint"
144
- version = "0.3.0"
167
+ version = "0.3.2"
145
168
  dependencies = [
146
169
  "alpm-buildinfo",
147
170
  "alpm-common",
@@ -161,7 +184,7 @@ dependencies = [
161
184
  "serde",
162
185
  "serde_json",
163
186
  "simplelog",
164
- "strum",
187
+ "strum 0.28.0",
165
188
  "tempfile",
166
189
  "testresult",
167
190
  "thiserror",
@@ -169,12 +192,12 @@ dependencies = [
169
192
 
170
193
  [[package]]
171
194
  name = "alpm-lint-config"
172
- version = "0.1.1"
195
+ version = "0.1.2"
173
196
  dependencies = [
174
197
  "clap",
175
198
  "fluent-i18n",
176
199
  "serde",
177
- "strum",
200
+ "strum 0.28.0",
178
201
  "tempfile",
179
202
  "testresult",
180
203
  "thiserror",
@@ -183,7 +206,7 @@ dependencies = [
183
206
 
184
207
  [[package]]
185
208
  name = "alpm-mtree"
186
- version = "0.3.1"
209
+ version = "0.3.3"
187
210
  dependencies = [
188
211
  "alpm-common",
189
212
  "alpm-parsers",
@@ -199,7 +222,7 @@ dependencies = [
199
222
  "serde",
200
223
  "serde_json",
201
224
  "simplelog",
202
- "strum",
225
+ "strum 0.28.0",
203
226
  "tempfile",
204
227
  "testresult",
205
228
  "thiserror",
@@ -209,7 +232,7 @@ dependencies = [
209
232
 
210
233
  [[package]]
211
234
  name = "alpm-package"
212
- version = "0.4.1"
235
+ version = "0.4.2"
213
236
  dependencies = [
214
237
  "alpm-buildinfo",
215
238
  "alpm-common",
@@ -241,7 +264,7 @@ dependencies = [
241
264
 
242
265
  [[package]]
243
266
  name = "alpm-pkgbuild"
244
- version = "0.2.3"
267
+ version = "0.2.4"
245
268
  dependencies = [
246
269
  "alpm-parsers",
247
270
  "alpm-types",
@@ -251,7 +274,7 @@ dependencies = [
251
274
  "log",
252
275
  "rstest",
253
276
  "serde_json",
254
- "strum",
277
+ "strum 0.28.0",
255
278
  "tempfile",
256
279
  "testresult",
257
280
  "thiserror",
@@ -261,7 +284,7 @@ dependencies = [
261
284
 
262
285
  [[package]]
263
286
  name = "alpm-pkginfo"
264
- version = "0.6.0"
287
+ version = "0.6.2"
265
288
  dependencies = [
266
289
  "alpm-common",
267
290
  "alpm-parsers",
@@ -275,7 +298,7 @@ dependencies = [
275
298
  "serde",
276
299
  "serde_json",
277
300
  "serde_with",
278
- "strum",
301
+ "strum 0.28.0",
279
302
  "tempfile",
280
303
  "testresult",
281
304
  "thiserror",
@@ -287,7 +310,7 @@ version = "0.1.0"
287
310
 
288
311
  [[package]]
289
312
  name = "alpm-repo-db"
290
- version = "0.1.0"
313
+ version = "0.1.2"
291
314
  dependencies = [
292
315
  "alpm-common",
293
316
  "alpm-parsers",
@@ -300,7 +323,7 @@ dependencies = [
300
323
  "rstest",
301
324
  "serde",
302
325
  "serde_json",
303
- "strum",
326
+ "strum 0.28.0",
304
327
  "tempfile",
305
328
  "testresult",
306
329
  "thiserror",
@@ -309,7 +332,7 @@ dependencies = [
309
332
 
310
333
  [[package]]
311
334
  name = "alpm-soname"
312
- version = "0.4.0"
335
+ version = "0.4.1"
313
336
  dependencies = [
314
337
  "alpm-compress",
315
338
  "alpm-mtree",
@@ -326,7 +349,7 @@ dependencies = [
326
349
  "serde",
327
350
  "serde_json",
328
351
  "simplelog",
329
- "strum",
352
+ "strum 0.28.0",
330
353
  "tempfile",
331
354
  "testresult",
332
355
  "thiserror",
@@ -334,7 +357,7 @@ dependencies = [
334
357
 
335
358
  [[package]]
336
359
  name = "alpm-srcinfo"
337
- version = "0.6.1"
360
+ version = "0.6.3"
338
361
  dependencies = [
339
362
  "alpm-common",
340
363
  "alpm-parsers",
@@ -348,7 +371,7 @@ dependencies = [
348
371
  "rstest",
349
372
  "serde",
350
373
  "serde_json",
351
- "strum",
374
+ "strum 0.28.0",
352
375
  "tempfile",
353
376
  "testresult",
354
377
  "thiserror",
@@ -361,7 +384,7 @@ version = "0.1.0"
361
384
 
362
385
  [[package]]
363
386
  name = "alpm-types"
364
- version = "0.11.0"
387
+ version = "0.11.2"
365
388
  dependencies = [
366
389
  "alpm-parsers",
367
390
  "base64",
@@ -383,7 +406,7 @@ dependencies = [
383
406
  "sha2",
384
407
  "simplelog",
385
408
  "spdx",
386
- "strum",
409
+ "strum 0.28.0",
387
410
  "testresult",
388
411
  "thiserror",
389
412
  "time",
@@ -407,7 +430,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
407
430
  checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
408
431
  dependencies = [
409
432
  "anstyle",
410
- "anstyle-parse",
433
+ "anstyle-parse 0.2.7",
434
+ "anstyle-query",
435
+ "anstyle-wincon",
436
+ "colorchoice",
437
+ "is_terminal_polyfill",
438
+ "utf8parse",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "anstream"
443
+ version = "1.0.0"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
446
+ dependencies = [
447
+ "anstyle",
448
+ "anstyle-parse 1.0.0",
411
449
  "anstyle-query",
412
450
  "anstyle-wincon",
413
451
  "colorchoice",
@@ -417,9 +455,9 @@ dependencies = [
417
455
 
418
456
  [[package]]
419
457
  name = "anstyle"
420
- version = "1.0.13"
458
+ version = "1.0.14"
421
459
  source = "registry+https://github.com/rust-lang/crates.io-index"
422
- checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
460
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
423
461
 
424
462
  [[package]]
425
463
  name = "anstyle-parse"
@@ -430,6 +468,15 @@ dependencies = [
430
468
  "utf8parse",
431
469
  ]
432
470
 
471
+ [[package]]
472
+ name = "anstyle-parse"
473
+ version = "1.0.0"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
476
+ dependencies = [
477
+ "utf8parse",
478
+ ]
479
+
433
480
  [[package]]
434
481
  name = "anstyle-query"
435
482
  version = "1.1.5"
@@ -450,6 +497,12 @@ dependencies = [
450
497
  "windows-sys 0.61.2",
451
498
  ]
452
499
 
500
+ [[package]]
501
+ name = "anyhow"
502
+ version = "1.0.102"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
505
+
453
506
  [[package]]
454
507
  name = "argon2"
455
508
  version = "0.5.3"
@@ -463,11 +516,17 @@ dependencies = [
463
516
  "zeroize",
464
517
  ]
465
518
 
519
+ [[package]]
520
+ name = "arraydeque"
521
+ version = "0.5.1"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236"
524
+
466
525
  [[package]]
467
526
  name = "assert_cmd"
468
- version = "2.1.1"
527
+ version = "2.2.0"
469
528
  source = "registry+https://github.com/rust-lang/crates.io-index"
470
- checksum = "bcbb6924530aa9e0432442af08bbcafdad182db80d2e560da42a6d442535bf85"
529
+ checksum = "9a686bbee5efb88a82df0621b236e74d925f470e5445d3220a5648b892ec99c9"
471
530
  dependencies = [
472
531
  "anstyle",
473
532
  "bstr",
@@ -504,9 +563,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
504
563
 
505
564
  [[package]]
506
565
  name = "base64ct"
507
- version = "1.8.1"
566
+ version = "1.8.3"
508
567
  source = "registry+https://github.com/rust-lang/crates.io-index"
509
- checksum = "0e050f626429857a27ddccb31e0aca21356bfa709c04041aefddac081a8f068a"
568
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
510
569
 
511
570
  [[package]]
512
571
  name = "bit-set"
@@ -546,9 +605,9 @@ dependencies = [
546
605
 
547
606
  [[package]]
548
607
  name = "bitflags"
549
- version = "2.10.0"
608
+ version = "2.11.0"
550
609
  source = "registry+https://github.com/rust-lang/crates.io-index"
551
- checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
610
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
552
611
 
553
612
  [[package]]
554
613
  name = "bitvec"
@@ -621,9 +680,9 @@ dependencies = [
621
680
 
622
681
  [[package]]
623
682
  name = "bumpalo"
624
- version = "3.19.1"
683
+ version = "3.20.2"
625
684
  source = "registry+https://github.com/rust-lang/crates.io-index"
626
- checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
685
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
627
686
 
628
687
  [[package]]
629
688
  name = "byteorder"
@@ -633,9 +692,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
633
692
 
634
693
  [[package]]
635
694
  name = "bytes"
636
- version = "1.11.0"
695
+ version = "1.11.1"
637
696
  source = "registry+https://github.com/rust-lang/crates.io-index"
638
- checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
697
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
639
698
 
640
699
  [[package]]
641
700
  name = "bzip2"
@@ -665,11 +724,20 @@ dependencies = [
665
724
  "cipher",
666
725
  ]
667
726
 
727
+ [[package]]
728
+ name = "castaway"
729
+ version = "0.2.4"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
732
+ dependencies = [
733
+ "rustversion",
734
+ ]
735
+
668
736
  [[package]]
669
737
  name = "cc"
670
- version = "1.2.49"
738
+ version = "1.2.57"
671
739
  source = "registry+https://github.com/rust-lang/crates.io-index"
672
- checksum = "90583009037521a116abf44494efecd645ba48b6622457080f080b85544e2215"
740
+ checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
673
741
  dependencies = [
674
742
  "find-msvc-tools",
675
743
  "jobserver",
@@ -692,17 +760,11 @@ version = "1.0.4"
692
760
  source = "registry+https://github.com/rust-lang/crates.io-index"
693
761
  checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
694
762
 
695
- [[package]]
696
- name = "cfg_aliases"
697
- version = "0.2.1"
698
- source = "registry+https://github.com/rust-lang/crates.io-index"
699
- checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
700
-
701
763
  [[package]]
702
764
  name = "chrono"
703
- version = "0.4.42"
765
+ version = "0.4.44"
704
766
  source = "registry+https://github.com/rust-lang/crates.io-index"
705
- checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
767
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
706
768
  dependencies = [
707
769
  "iana-time-zone",
708
770
  "js-sys",
@@ -724,9 +786,9 @@ dependencies = [
724
786
 
725
787
  [[package]]
726
788
  name = "clap"
727
- version = "4.5.53"
789
+ version = "4.6.0"
728
790
  source = "registry+https://github.com/rust-lang/crates.io-index"
729
- checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
791
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
730
792
  dependencies = [
731
793
  "clap_builder",
732
794
  "clap_derive",
@@ -744,11 +806,11 @@ dependencies = [
744
806
 
745
807
  [[package]]
746
808
  name = "clap_builder"
747
- version = "4.5.53"
809
+ version = "4.6.0"
748
810
  source = "registry+https://github.com/rust-lang/crates.io-index"
749
- checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
811
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
750
812
  dependencies = [
751
- "anstream",
813
+ "anstream 1.0.0",
752
814
  "anstyle",
753
815
  "clap_lex",
754
816
  "strsim",
@@ -757,9 +819,9 @@ dependencies = [
757
819
 
758
820
  [[package]]
759
821
  name = "clap_derive"
760
- version = "4.5.49"
822
+ version = "4.6.0"
761
823
  source = "registry+https://github.com/rust-lang/crates.io-index"
762
- checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
824
+ checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
763
825
  dependencies = [
764
826
  "heck",
765
827
  "proc-macro2",
@@ -769,9 +831,9 @@ dependencies = [
769
831
 
770
832
  [[package]]
771
833
  name = "clap_lex"
772
- version = "0.7.6"
834
+ version = "1.1.0"
773
835
  source = "registry+https://github.com/rust-lang/crates.io-index"
774
- checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
836
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
775
837
 
776
838
  [[package]]
777
839
  name = "cmac"
@@ -786,17 +848,31 @@ dependencies = [
786
848
 
787
849
  [[package]]
788
850
  name = "colorchoice"
789
- version = "1.0.4"
851
+ version = "1.0.5"
790
852
  source = "registry+https://github.com/rust-lang/crates.io-index"
791
- checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
853
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
792
854
 
793
855
  [[package]]
794
856
  name = "colored"
795
- version = "3.0.0"
857
+ version = "3.1.1"
796
858
  source = "registry+https://github.com/rust-lang/crates.io-index"
797
- checksum = "fde0e0ec90c9dfb3b4b1a0891a7dcd0e2bffde2f7efed5fe7c9bb00e5bfb915e"
859
+ checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
798
860
  dependencies = [
799
- "windows-sys 0.59.0",
861
+ "windows-sys 0.61.2",
862
+ ]
863
+
864
+ [[package]]
865
+ name = "compact_str"
866
+ version = "0.8.1"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "3b79c4069c6cad78e2e0cdfcbd26275770669fb39fd308a752dc110e83b9af32"
869
+ dependencies = [
870
+ "castaway",
871
+ "cfg-if",
872
+ "itoa",
873
+ "rustversion",
874
+ "ryu",
875
+ "static_assertions",
800
876
  ]
801
877
 
802
878
  [[package]]
@@ -813,17 +889,28 @@ dependencies = [
813
889
 
814
890
  [[package]]
815
891
  name = "console"
816
- version = "0.16.2"
892
+ version = "0.16.3"
817
893
  source = "registry+https://github.com/rust-lang/crates.io-index"
818
- checksum = "03e45a4a8926227e4197636ba97a9fc9b00477e9f4bd711395687c5f0734bec4"
894
+ checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
819
895
  dependencies = [
820
896
  "encode_unicode",
821
897
  "libc",
822
- "once_cell",
823
898
  "unicode-width",
824
899
  "windows-sys 0.61.2",
825
900
  ]
826
901
 
902
+ [[package]]
903
+ name = "const-hex"
904
+ version = "1.18.1"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "531185e432bb31db1ecda541e9e7ab21468d4d844ad7505e0546a49b4945d49b"
907
+ dependencies = [
908
+ "cfg-if",
909
+ "cpufeatures",
910
+ "proptest",
911
+ "serde_core",
912
+ ]
913
+
827
914
  [[package]]
828
915
  name = "const-oid"
829
916
  version = "0.9.6"
@@ -865,9 +952,9 @@ dependencies = [
865
952
 
866
953
  [[package]]
867
954
  name = "crc"
868
- version = "3.4.0"
955
+ version = "3.3.0"
869
956
  source = "registry+https://github.com/rust-lang/crates.io-index"
870
- checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
957
+ checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
871
958
  dependencies = [
872
959
  "crc-catalog",
873
960
  ]
@@ -880,9 +967,9 @@ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
880
967
 
881
968
  [[package]]
882
969
  name = "crc-fast"
883
- version = "1.8.1"
970
+ version = "1.9.0"
884
971
  source = "registry+https://github.com/rust-lang/crates.io-index"
885
- checksum = "2c15e7f62c7d6e256e6d0fc3fc1ef395348e4bc395dcf14d6990da0e5aa6e8b0"
972
+ checksum = "2fd92aca2c6001b1bf5ba0ff84ee74ec8501b52bbef0cac80bf25a6c1d87a83d"
886
973
  dependencies = [
887
974
  "crc",
888
975
  "digest",
@@ -1098,9 +1185,9 @@ dependencies = [
1098
1185
 
1099
1186
  [[package]]
1100
1187
  name = "deranged"
1101
- version = "0.5.5"
1188
+ version = "0.5.8"
1102
1189
  source = "registry+https://github.com/rust-lang/crates.io-index"
1103
- checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
1190
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
1104
1191
  dependencies = [
1105
1192
  "powerfmt",
1106
1193
  "serde_core",
@@ -1139,18 +1226,18 @@ dependencies = [
1139
1226
 
1140
1227
  [[package]]
1141
1228
  name = "derive_more"
1142
- version = "2.1.0"
1229
+ version = "2.1.1"
1143
1230
  source = "registry+https://github.com/rust-lang/crates.io-index"
1144
- checksum = "10b768e943bed7bf2cab53df09f4bc34bfd217cdb57d971e769874c9a6710618"
1231
+ checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
1145
1232
  dependencies = [
1146
1233
  "derive_more-impl",
1147
1234
  ]
1148
1235
 
1149
1236
  [[package]]
1150
1237
  name = "derive_more-impl"
1151
- version = "2.1.0"
1238
+ version = "2.1.1"
1152
1239
  source = "registry+https://github.com/rust-lang/crates.io-index"
1153
- checksum = "6d286bfdaf75e988b4a78e013ecd79c581e06399ab53fbacd2d916c2f904f30b"
1240
+ checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
1154
1241
  dependencies = [
1155
1242
  "convert_case 0.10.0",
1156
1243
  "proc-macro2",
@@ -1193,7 +1280,7 @@ dependencies = [
1193
1280
  "rstest",
1194
1281
  "serde_json",
1195
1282
  "simplelog",
1196
- "strum",
1283
+ "strum 0.28.0",
1197
1284
  "tempfile",
1198
1285
  "testresult",
1199
1286
  "thiserror",
@@ -1288,7 +1375,7 @@ dependencies = [
1288
1375
  "optfield",
1289
1376
  "proc-macro2",
1290
1377
  "quote",
1291
- "strum",
1378
+ "strum 0.27.2",
1292
1379
  "syn",
1293
1380
  ]
1294
1381
 
@@ -1422,28 +1509,31 @@ dependencies = [
1422
1509
  ]
1423
1510
 
1424
1511
  [[package]]
1425
- name = "env_filter"
1426
- version = "0.1.4"
1512
+ name = "encoding_rs_io"
1513
+ version = "0.1.7"
1427
1514
  source = "registry+https://github.com/rust-lang/crates.io-index"
1428
- checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
1515
+ checksum = "1cc3c5651fb62ab8aa3103998dade57efdd028544bd300516baa31840c252a83"
1429
1516
  dependencies = [
1430
- "log",
1431
- "regex",
1517
+ "encoding_rs",
1432
1518
  ]
1433
1519
 
1434
1520
  [[package]]
1435
- name = "env_home"
1436
- version = "0.1.0"
1521
+ name = "env_filter"
1522
+ version = "1.0.0"
1437
1523
  source = "registry+https://github.com/rust-lang/crates.io-index"
1438
- checksum = "c7f84e12ccf0a7ddc17a6c41c93326024c42920d7ee630d04950e6926645c0fe"
1524
+ checksum = "7a1c3cc8e57274ec99de65301228b537f1e4eedc1b8e0f9411c6caac8ae7308f"
1525
+ dependencies = [
1526
+ "log",
1527
+ "regex",
1528
+ ]
1439
1529
 
1440
1530
  [[package]]
1441
1531
  name = "env_logger"
1442
- version = "0.11.8"
1532
+ version = "0.11.9"
1443
1533
  source = "registry+https://github.com/rust-lang/crates.io-index"
1444
- checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
1534
+ checksum = "b2daee4ea451f429a58296525ddf28b45a3b64f1acf6587e2067437bb11e218d"
1445
1535
  dependencies = [
1446
- "anstream",
1536
+ "anstream 0.6.21",
1447
1537
  "anstyle",
1448
1538
  "env_filter",
1449
1539
  "jiff",
@@ -1491,31 +1581,30 @@ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
1491
1581
 
1492
1582
  [[package]]
1493
1583
  name = "filetime"
1494
- version = "0.2.26"
1584
+ version = "0.2.27"
1495
1585
  source = "registry+https://github.com/rust-lang/crates.io-index"
1496
- checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
1586
+ checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
1497
1587
  dependencies = [
1498
1588
  "cfg-if",
1499
1589
  "libc",
1500
1590
  "libredox",
1501
- "windows-sys 0.60.2",
1502
1591
  ]
1503
1592
 
1504
1593
  [[package]]
1505
1594
  name = "find-msvc-tools"
1506
- version = "0.1.5"
1595
+ version = "0.1.9"
1507
1596
  source = "registry+https://github.com/rust-lang/crates.io-index"
1508
- checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
1597
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
1509
1598
 
1510
1599
  [[package]]
1511
1600
  name = "flate2"
1512
- version = "1.1.5"
1601
+ version = "1.1.9"
1513
1602
  source = "registry+https://github.com/rust-lang/crates.io-index"
1514
- checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
1603
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
1515
1604
  dependencies = [
1516
1605
  "crc32fast",
1517
- "libz-rs-sys",
1518
1606
  "miniz_oxide",
1607
+ "zlib-rs",
1519
1608
  ]
1520
1609
 
1521
1610
  [[package]]
@@ -1530,7 +1619,7 @@ dependencies = [
1530
1619
  "intl_pluralrules",
1531
1620
  "rustc-hash",
1532
1621
  "self_cell",
1533
- "smallvec",
1622
+ "smallvec 1.15.1",
1534
1623
  "unic-langid",
1535
1624
  ]
1536
1625
 
@@ -1567,9 +1656,9 @@ dependencies = [
1567
1656
 
1568
1657
  [[package]]
1569
1658
  name = "fluent-template-macros"
1570
- version = "0.13.2"
1659
+ version = "0.13.3"
1571
1660
  source = "registry+https://github.com/rust-lang/crates.io-index"
1572
- checksum = "9af64f01dd293b28c19df8be230979c32c944d4b6e737a31f2ead91f8d0d46b9"
1661
+ checksum = "748050b3fb6fd97b566aedff8e9e021389c963e73d5afbeb92752c2b8d686c6c"
1573
1662
  dependencies = [
1574
1663
  "flume",
1575
1664
  "ignore",
@@ -1581,9 +1670,9 @@ dependencies = [
1581
1670
 
1582
1671
  [[package]]
1583
1672
  name = "fluent-templates"
1584
- version = "0.13.2"
1673
+ version = "0.13.3"
1585
1674
  source = "registry+https://github.com/rust-lang/crates.io-index"
1586
- checksum = "407bcb5e8c7e4625c365b1180099b43e40fb6fd6d0ba53070229297246ba6392"
1675
+ checksum = "56264446a01f404469aef9cc5fd4a4d736f68a0f52482bf6d1a54d6e9bbd9476"
1587
1676
  dependencies = [
1588
1677
  "fluent-bundle",
1589
1678
  "fluent-langneg",
@@ -1612,6 +1701,12 @@ version = "1.0.7"
1612
1701
  source = "registry+https://github.com/rust-lang/crates.io-index"
1613
1702
  checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1614
1703
 
1704
+ [[package]]
1705
+ name = "foldhash"
1706
+ version = "0.1.5"
1707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1708
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1709
+
1615
1710
  [[package]]
1616
1711
  name = "form_urlencoded"
1617
1712
  version = "1.2.2"
@@ -1629,9 +1724,9 @@ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
1629
1724
 
1630
1725
  [[package]]
1631
1726
  name = "futures-channel"
1632
- version = "0.3.31"
1727
+ version = "0.3.32"
1633
1728
  source = "registry+https://github.com/rust-lang/crates.io-index"
1634
- checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
1729
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
1635
1730
  dependencies = [
1636
1731
  "futures-core",
1637
1732
  "futures-sink",
@@ -1639,21 +1734,21 @@ dependencies = [
1639
1734
 
1640
1735
  [[package]]
1641
1736
  name = "futures-core"
1642
- version = "0.3.31"
1737
+ version = "0.3.32"
1643
1738
  source = "registry+https://github.com/rust-lang/crates.io-index"
1644
- checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
1739
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
1645
1740
 
1646
1741
  [[package]]
1647
1742
  name = "futures-io"
1648
- version = "0.3.31"
1743
+ version = "0.3.32"
1649
1744
  source = "registry+https://github.com/rust-lang/crates.io-index"
1650
- checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
1745
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
1651
1746
 
1652
1747
  [[package]]
1653
1748
  name = "futures-macro"
1654
- version = "0.3.31"
1749
+ version = "0.3.32"
1655
1750
  source = "registry+https://github.com/rust-lang/crates.io-index"
1656
- checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
1751
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
1657
1752
  dependencies = [
1658
1753
  "proc-macro2",
1659
1754
  "quote",
@@ -1662,15 +1757,15 @@ dependencies = [
1662
1757
 
1663
1758
  [[package]]
1664
1759
  name = "futures-sink"
1665
- version = "0.3.31"
1760
+ version = "0.3.32"
1666
1761
  source = "registry+https://github.com/rust-lang/crates.io-index"
1667
- checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
1762
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
1668
1763
 
1669
1764
  [[package]]
1670
1765
  name = "futures-task"
1671
- version = "0.3.31"
1766
+ version = "0.3.32"
1672
1767
  source = "registry+https://github.com/rust-lang/crates.io-index"
1673
- checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
1768
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1674
1769
 
1675
1770
  [[package]]
1676
1771
  name = "futures-timer"
@@ -1680,9 +1775,9 @@ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
1680
1775
 
1681
1776
  [[package]]
1682
1777
  name = "futures-util"
1683
- version = "0.3.31"
1778
+ version = "0.3.32"
1684
1779
  source = "registry+https://github.com/rust-lang/crates.io-index"
1685
- checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
1780
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1686
1781
  dependencies = [
1687
1782
  "futures-core",
1688
1783
  "futures-io",
@@ -1691,10 +1786,31 @@ dependencies = [
1691
1786
  "futures-task",
1692
1787
  "memchr",
1693
1788
  "pin-project-lite",
1694
- "pin-utils",
1695
1789
  "slab",
1696
1790
  ]
1697
1791
 
1792
+ [[package]]
1793
+ name = "garde"
1794
+ version = "0.22.1"
1795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1796
+ checksum = "3a74b56a4039a46e8c91cc9d84e8a7df4e1f8b24239ca57d1304b3263cb599b9"
1797
+ dependencies = [
1798
+ "compact_str",
1799
+ "garde_derive",
1800
+ "smallvec 1.15.1",
1801
+ ]
1802
+
1803
+ [[package]]
1804
+ name = "garde_derive"
1805
+ version = "0.22.1"
1806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1807
+ checksum = "7224c08ec489e2840af29ed882b47f7f6ac8f4ce15c275d9fc0d6d1b94578ae6"
1808
+ dependencies = [
1809
+ "proc-macro2",
1810
+ "quote",
1811
+ "syn",
1812
+ ]
1813
+
1698
1814
  [[package]]
1699
1815
  name = "generic-array"
1700
1816
  version = "0.14.7"
@@ -1708,15 +1824,13 @@ dependencies = [
1708
1824
 
1709
1825
  [[package]]
1710
1826
  name = "getrandom"
1711
- version = "0.2.16"
1827
+ version = "0.2.17"
1712
1828
  source = "registry+https://github.com/rust-lang/crates.io-index"
1713
- checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
1829
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1714
1830
  dependencies = [
1715
1831
  "cfg-if",
1716
- "js-sys",
1717
1832
  "libc",
1718
1833
  "wasi",
1719
- "wasm-bindgen",
1720
1834
  ]
1721
1835
 
1722
1836
  [[package]]
@@ -1726,11 +1840,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1726
1840
  checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1727
1841
  dependencies = [
1728
1842
  "cfg-if",
1729
- "js-sys",
1730
1843
  "libc",
1731
- "r-efi",
1844
+ "r-efi 5.3.0",
1732
1845
  "wasip2",
1733
- "wasm-bindgen",
1846
+ ]
1847
+
1848
+ [[package]]
1849
+ name = "getrandom"
1850
+ version = "0.4.2"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
1853
+ dependencies = [
1854
+ "cfg-if",
1855
+ "libc",
1856
+ "r-efi 6.0.0",
1857
+ "wasip2",
1858
+ "wasip3",
1734
1859
  ]
1735
1860
 
1736
1861
  [[package]]
@@ -1764,9 +1889,9 @@ dependencies = [
1764
1889
 
1765
1890
  [[package]]
1766
1891
  name = "goblin"
1767
- version = "0.10.4"
1892
+ version = "0.10.5"
1768
1893
  source = "registry+https://github.com/rust-lang/crates.io-index"
1769
- checksum = "4db6758c546e6f81f265638c980e5e84dfbda80cfd8e89e02f83454c8e8124bd"
1894
+ checksum = "983a6aafb3b12d4c41ea78d39e189af4298ce747353945ff5105b54a056e5cd9"
1770
1895
  dependencies = [
1771
1896
  "log",
1772
1897
  "plain",
@@ -1786,9 +1911,9 @@ dependencies = [
1786
1911
 
1787
1912
  [[package]]
1788
1913
  name = "h2"
1789
- version = "0.4.12"
1914
+ version = "0.4.13"
1790
1915
  source = "registry+https://github.com/rust-lang/crates.io-index"
1791
- checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
1916
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
1792
1917
  dependencies = [
1793
1918
  "atomic-waker",
1794
1919
  "bytes",
@@ -1796,7 +1921,7 @@ dependencies = [
1796
1921
  "futures-core",
1797
1922
  "futures-sink",
1798
1923
  "http",
1799
- "indexmap 2.12.1",
1924
+ "indexmap 2.13.0",
1800
1925
  "slab",
1801
1926
  "tokio",
1802
1927
  "tokio-util",
@@ -1809,12 +1934,30 @@ version = "0.12.3"
1809
1934
  source = "registry+https://github.com/rust-lang/crates.io-index"
1810
1935
  checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1811
1936
 
1937
+ [[package]]
1938
+ name = "hashbrown"
1939
+ version = "0.15.5"
1940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1941
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1942
+ dependencies = [
1943
+ "foldhash",
1944
+ ]
1945
+
1812
1946
  [[package]]
1813
1947
  name = "hashbrown"
1814
1948
  version = "0.16.1"
1815
1949
  source = "registry+https://github.com/rust-lang/crates.io-index"
1816
1950
  checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1817
1951
 
1952
+ [[package]]
1953
+ name = "hashlink"
1954
+ version = "0.10.0"
1955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1956
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
1957
+ dependencies = [
1958
+ "hashbrown 0.15.5",
1959
+ ]
1960
+
1818
1961
  [[package]]
1819
1962
  name = "heck"
1820
1963
  version = "0.5.0"
@@ -1907,7 +2050,7 @@ dependencies = [
1907
2050
  "itoa",
1908
2051
  "pin-project-lite",
1909
2052
  "pin-utils",
1910
- "smallvec",
2053
+ "smallvec 1.15.1",
1911
2054
  "tokio",
1912
2055
  "want",
1913
2056
  ]
@@ -1926,19 +2069,17 @@ dependencies = [
1926
2069
  "tokio",
1927
2070
  "tokio-rustls",
1928
2071
  "tower-service",
1929
- "webpki-roots",
1930
2072
  ]
1931
2073
 
1932
2074
  [[package]]
1933
2075
  name = "hyper-util"
1934
- version = "0.1.19"
2076
+ version = "0.1.20"
1935
2077
  source = "registry+https://github.com/rust-lang/crates.io-index"
1936
- checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
2078
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1937
2079
  dependencies = [
1938
2080
  "base64",
1939
2081
  "bytes",
1940
2082
  "futures-channel",
1941
- "futures-core",
1942
2083
  "futures-util",
1943
2084
  "http",
1944
2085
  "http-body",
@@ -1955,9 +2096,9 @@ dependencies = [
1955
2096
 
1956
2097
  [[package]]
1957
2098
  name = "iana-time-zone"
1958
- version = "0.1.64"
2099
+ version = "0.1.65"
1959
2100
  source = "registry+https://github.com/rust-lang/crates.io-index"
1960
- checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
2101
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1961
2102
  dependencies = [
1962
2103
  "android_system_properties",
1963
2104
  "core-foundation-sys",
@@ -2013,7 +2154,7 @@ dependencies = [
2013
2154
  "icu_normalizer_data",
2014
2155
  "icu_properties",
2015
2156
  "icu_provider",
2016
- "smallvec",
2157
+ "smallvec 1.15.1",
2017
2158
  "zerovec",
2018
2159
  ]
2019
2160
 
@@ -2058,6 +2199,12 @@ dependencies = [
2058
2199
  "zerovec",
2059
2200
  ]
2060
2201
 
2202
+ [[package]]
2203
+ name = "id-arena"
2204
+ version = "2.3.0"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
2207
+
2061
2208
  [[package]]
2062
2209
  name = "idea"
2063
2210
  version = "0.5.1"
@@ -2080,7 +2227,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2080
2227
  checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
2081
2228
  dependencies = [
2082
2229
  "idna_adapter",
2083
- "smallvec",
2230
+ "smallvec 1.15.1",
2084
2231
  "utf8_iter",
2085
2232
  ]
2086
2233
 
@@ -2123,9 +2270,9 @@ dependencies = [
2123
2270
 
2124
2271
  [[package]]
2125
2272
  name = "indexmap"
2126
- version = "2.12.1"
2273
+ version = "2.13.0"
2127
2274
  source = "registry+https://github.com/rust-lang/crates.io-index"
2128
- checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
2275
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
2129
2276
  dependencies = [
2130
2277
  "equivalent",
2131
2278
  "hashbrown 0.16.1",
@@ -2135,26 +2282,17 @@ dependencies = [
2135
2282
 
2136
2283
  [[package]]
2137
2284
  name = "indicatif"
2138
- version = "0.18.3"
2285
+ version = "0.18.4"
2139
2286
  source = "registry+https://github.com/rust-lang/crates.io-index"
2140
- checksum = "9375e112e4b463ec1b1c6c011953545c65a30164fbab5b581df32b3abf0dcb88"
2287
+ checksum = "25470f23803092da7d239834776d653104d551bc4d7eacaf31e6837854b8e9eb"
2141
2288
  dependencies = [
2142
- "console 0.16.2",
2289
+ "console 0.16.3",
2143
2290
  "portable-atomic",
2144
2291
  "unicode-width",
2145
2292
  "unit-prefix",
2146
2293
  "web-time",
2147
2294
  ]
2148
2295
 
2149
- [[package]]
2150
- name = "indoc"
2151
- version = "2.0.7"
2152
- source = "registry+https://github.com/rust-lang/crates.io-index"
2153
- checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
2154
- dependencies = [
2155
- "rustversion",
2156
- ]
2157
-
2158
2296
  [[package]]
2159
2297
  name = "inout"
2160
2298
  version = "0.1.4"
@@ -2166,14 +2304,15 @@ dependencies = [
2166
2304
 
2167
2305
  [[package]]
2168
2306
  name = "insta"
2169
- version = "1.44.3"
2307
+ version = "1.46.3"
2170
2308
  source = "registry+https://github.com/rust-lang/crates.io-index"
2171
- checksum = "b5c943d4415edd8153251b6f197de5eb1640e56d84e8d9159bea190421c73698"
2309
+ checksum = "e82db8c87c7f1ccecb34ce0c24399b8a73081427f3c7c50a5d597925356115e4"
2172
2310
  dependencies = [
2173
2311
  "console 0.15.11",
2174
2312
  "once_cell",
2175
2313
  "regex",
2176
2314
  "similar",
2315
+ "tempfile",
2177
2316
  ]
2178
2317
 
2179
2318
  [[package]]
@@ -2197,15 +2336,15 @@ dependencies = [
2197
2336
 
2198
2337
  [[package]]
2199
2338
  name = "ipnet"
2200
- version = "2.11.0"
2339
+ version = "2.12.0"
2201
2340
  source = "registry+https://github.com/rust-lang/crates.io-index"
2202
- checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
2341
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
2203
2342
 
2204
2343
  [[package]]
2205
2344
  name = "iri-string"
2206
- version = "0.7.9"
2345
+ version = "0.7.10"
2207
2346
  source = "registry+https://github.com/rust-lang/crates.io-index"
2208
- checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397"
2347
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
2209
2348
  dependencies = [
2210
2349
  "memchr",
2211
2350
  "serde",
@@ -2228,15 +2367,15 @@ dependencies = [
2228
2367
 
2229
2368
  [[package]]
2230
2369
  name = "itoa"
2231
- version = "1.0.15"
2370
+ version = "1.0.17"
2232
2371
  source = "registry+https://github.com/rust-lang/crates.io-index"
2233
- checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
2372
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
2234
2373
 
2235
2374
  [[package]]
2236
2375
  name = "jiff"
2237
- version = "0.2.16"
2376
+ version = "0.2.23"
2238
2377
  source = "registry+https://github.com/rust-lang/crates.io-index"
2239
- checksum = "49cce2b81f2098e7e3efc35bc2e0a6b7abec9d34128283d7a26fa8f32a6dbb35"
2378
+ checksum = "1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359"
2240
2379
  dependencies = [
2241
2380
  "jiff-static",
2242
2381
  "log",
@@ -2247,9 +2386,9 @@ dependencies = [
2247
2386
 
2248
2387
  [[package]]
2249
2388
  name = "jiff-static"
2250
- version = "0.2.16"
2389
+ version = "0.2.23"
2251
2390
  source = "registry+https://github.com/rust-lang/crates.io-index"
2252
- checksum = "980af8b43c3ad5d8d349ace167ec8170839f753a42d233ba19e08afe1850fa69"
2391
+ checksum = "2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4"
2253
2392
  dependencies = [
2254
2393
  "proc-macro2",
2255
2394
  "quote",
@@ -2268,9 +2407,9 @@ dependencies = [
2268
2407
 
2269
2408
  [[package]]
2270
2409
  name = "js-sys"
2271
- version = "0.3.83"
2410
+ version = "0.3.91"
2272
2411
  source = "registry+https://github.com/rust-lang/crates.io-index"
2273
- checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
2412
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
2274
2413
  dependencies = [
2275
2414
  "once_cell",
2276
2415
  "wasm-bindgen",
@@ -2292,9 +2431,9 @@ dependencies = [
2292
2431
 
2293
2432
  [[package]]
2294
2433
  name = "keccak"
2295
- version = "0.1.5"
2434
+ version = "0.1.6"
2296
2435
  source = "registry+https://github.com/rust-lang/crates.io-index"
2297
- checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654"
2436
+ checksum = "cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653"
2298
2437
  dependencies = [
2299
2438
  "cpufeatures",
2300
2439
  ]
@@ -2308,6 +2447,12 @@ dependencies = [
2308
2447
  "spin 0.9.8",
2309
2448
  ]
2310
2449
 
2450
+ [[package]]
2451
+ name = "leb128fmt"
2452
+ version = "0.1.0"
2453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2454
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
2455
+
2311
2456
  [[package]]
2312
2457
  name = "libbz2-rs-sys"
2313
2458
  version = "0.2.2"
@@ -2316,15 +2461,15 @@ checksum = "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7"
2316
2461
 
2317
2462
  [[package]]
2318
2463
  name = "libc"
2319
- version = "0.2.178"
2464
+ version = "0.2.183"
2320
2465
  source = "registry+https://github.com/rust-lang/crates.io-index"
2321
- checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
2466
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
2322
2467
 
2323
2468
  [[package]]
2324
2469
  name = "liblzma"
2325
- version = "0.4.5"
2470
+ version = "0.4.6"
2326
2471
  source = "registry+https://github.com/rust-lang/crates.io-index"
2327
- checksum = "73c36d08cad03a3fbe2c4e7bb3a9e84c57e4ee4135ed0b065cade3d98480c648"
2472
+ checksum = "b6033b77c21d1f56deeae8014eb9fbe7bdf1765185a6c508b5ca82eeaed7f899"
2328
2473
  dependencies = [
2329
2474
  "liblzma-sys",
2330
2475
  "num_cpus",
@@ -2332,9 +2477,9 @@ dependencies = [
2332
2477
 
2333
2478
  [[package]]
2334
2479
  name = "liblzma-sys"
2335
- version = "0.4.4"
2480
+ version = "0.4.5"
2336
2481
  source = "registry+https://github.com/rust-lang/crates.io-index"
2337
- checksum = "01b9596486f6d60c3bbe644c0e1be1aa6ccc472ad630fe8927b456973d7cb736"
2482
+ checksum = "9f2db66f3268487b5033077f266da6777d057949b8f93c8ad82e441df25e6186"
2338
2483
  dependencies = [
2339
2484
  "cc",
2340
2485
  "libc",
@@ -2343,35 +2488,27 @@ dependencies = [
2343
2488
 
2344
2489
  [[package]]
2345
2490
  name = "libm"
2346
- version = "0.2.15"
2491
+ version = "0.2.16"
2347
2492
  source = "registry+https://github.com/rust-lang/crates.io-index"
2348
- checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
2493
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
2349
2494
 
2350
2495
  [[package]]
2351
2496
  name = "libredox"
2352
- version = "0.1.11"
2497
+ version = "0.1.14"
2353
2498
  source = "registry+https://github.com/rust-lang/crates.io-index"
2354
- checksum = "df15f6eac291ed1cf25865b1ee60399f57e7c227e7f51bdbd4c5270396a9ed50"
2499
+ checksum = "1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a"
2355
2500
  dependencies = [
2356
2501
  "bitflags",
2357
2502
  "libc",
2503
+ "plain",
2358
2504
  "redox_syscall",
2359
2505
  ]
2360
2506
 
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
-
2370
2507
  [[package]]
2371
2508
  name = "linux-raw-sys"
2372
- version = "0.11.0"
2509
+ version = "0.12.1"
2373
2510
  source = "registry+https://github.com/rust-lang/crates.io-index"
2374
- checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
2511
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
2375
2512
 
2376
2513
  [[package]]
2377
2514
  name = "litemap"
@@ -2394,12 +2531,6 @@ version = "0.4.29"
2394
2531
  source = "registry+https://github.com/rust-lang/crates.io-index"
2395
2532
  checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
2396
2533
 
2397
- [[package]]
2398
- name = "lru-slab"
2399
- version = "0.1.2"
2400
- source = "registry+https://github.com/rust-lang/crates.io-index"
2401
- checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
2402
-
2403
2534
  [[package]]
2404
2535
  name = "md-5"
2405
2536
  version = "0.10.6"
@@ -2412,18 +2543,9 @@ dependencies = [
2412
2543
 
2413
2544
  [[package]]
2414
2545
  name = "memchr"
2415
- version = "2.7.6"
2416
- source = "registry+https://github.com/rust-lang/crates.io-index"
2417
- checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
2418
-
2419
- [[package]]
2420
- name = "memoffset"
2421
- version = "0.9.1"
2546
+ version = "2.8.0"
2422
2547
  source = "registry+https://github.com/rust-lang/crates.io-index"
2423
- checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
2424
- dependencies = [
2425
- "autocfg",
2426
- ]
2548
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
2427
2549
 
2428
2550
  [[package]]
2429
2551
  name = "mime"
@@ -2452,6 +2574,12 @@ dependencies = [
2452
2574
  "windows-sys 0.61.2",
2453
2575
  ]
2454
2576
 
2577
+ [[package]]
2578
+ name = "nohash-hasher"
2579
+ version = "0.2.0"
2580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2581
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
2582
+
2455
2583
  [[package]]
2456
2584
  name = "nom"
2457
2585
  version = "8.0.0"
@@ -2474,15 +2602,15 @@ dependencies = [
2474
2602
  "num-traits",
2475
2603
  "rand 0.8.5",
2476
2604
  "serde",
2477
- "smallvec",
2605
+ "smallvec 1.15.1",
2478
2606
  "zeroize",
2479
2607
  ]
2480
2608
 
2481
2609
  [[package]]
2482
2610
  name = "num-conv"
2483
- version = "0.1.0"
2611
+ version = "0.2.0"
2484
2612
  source = "registry+https://github.com/rust-lang/crates.io-index"
2485
- checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2613
+ checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
2486
2614
 
2487
2615
  [[package]]
2488
2616
  name = "num-integer"
@@ -2526,9 +2654,9 @@ dependencies = [
2526
2654
 
2527
2655
  [[package]]
2528
2656
  name = "num_enum"
2529
- version = "0.7.5"
2657
+ version = "0.7.6"
2530
2658
  source = "registry+https://github.com/rust-lang/crates.io-index"
2531
- checksum = "b1207a7e20ad57b847bbddc6776b968420d38292bbfe2089accff5e19e82454c"
2659
+ checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26"
2532
2660
  dependencies = [
2533
2661
  "num_enum_derive",
2534
2662
  "rustversion",
@@ -2536,9 +2664,9 @@ dependencies = [
2536
2664
 
2537
2665
  [[package]]
2538
2666
  name = "num_enum_derive"
2539
- version = "0.7.5"
2667
+ version = "0.7.6"
2540
2668
  source = "registry+https://github.com/rust-lang/crates.io-index"
2541
- checksum = "ff32365de1b6743cb203b710788263c44a03de03802daf96092f2da4fe6ba4d7"
2669
+ checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8"
2542
2670
  dependencies = [
2543
2671
  "proc-macro-crate",
2544
2672
  "proc-macro2",
@@ -2569,9 +2697,9 @@ dependencies = [
2569
2697
 
2570
2698
  [[package]]
2571
2699
  name = "once_cell"
2572
- version = "1.21.3"
2700
+ version = "1.21.4"
2573
2701
  source = "registry+https://github.com/rust-lang/crates.io-index"
2574
- checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2702
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
2575
2703
 
2576
2704
  [[package]]
2577
2705
  name = "once_cell_polyfill"
@@ -2729,7 +2857,7 @@ dependencies = [
2729
2857
  "sha2",
2730
2858
  "sha3",
2731
2859
  "signature",
2732
- "smallvec",
2860
+ "smallvec 1.15.1",
2733
2861
  "snafu",
2734
2862
  "twofish",
2735
2863
  "x25519-dalek",
@@ -2780,9 +2908,9 @@ dependencies = [
2780
2908
 
2781
2909
  [[package]]
2782
2910
  name = "pin-project-lite"
2783
- version = "0.2.16"
2911
+ version = "0.2.17"
2784
2912
  source = "registry+https://github.com/rust-lang/crates.io-index"
2785
- checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2913
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
2786
2914
 
2787
2915
  [[package]]
2788
2916
  name = "pin-utils"
@@ -2837,15 +2965,15 @@ dependencies = [
2837
2965
 
2838
2966
  [[package]]
2839
2967
  name = "portable-atomic"
2840
- version = "1.11.1"
2968
+ version = "1.13.1"
2841
2969
  source = "registry+https://github.com/rust-lang/crates.io-index"
2842
- checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
2970
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2843
2971
 
2844
2972
  [[package]]
2845
2973
  name = "portable-atomic-util"
2846
- version = "0.2.4"
2974
+ version = "0.2.6"
2847
2975
  source = "registry+https://github.com/rust-lang/crates.io-index"
2848
- checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
2976
+ checksum = "091397be61a01d4be58e7841595bd4bfedb15f1cd54977d79b8271e94ed799a3"
2849
2977
  dependencies = [
2850
2978
  "portable-atomic",
2851
2979
  ]
@@ -2876,9 +3004,9 @@ dependencies = [
2876
3004
 
2877
3005
  [[package]]
2878
3006
  name = "predicates"
2879
- version = "3.1.3"
3007
+ version = "3.1.4"
2880
3008
  source = "registry+https://github.com/rust-lang/crates.io-index"
2881
- checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
3009
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
2882
3010
  dependencies = [
2883
3011
  "anstyle",
2884
3012
  "difflib",
@@ -2887,15 +3015,15 @@ dependencies = [
2887
3015
 
2888
3016
  [[package]]
2889
3017
  name = "predicates-core"
2890
- version = "1.0.9"
3018
+ version = "1.0.10"
2891
3019
  source = "registry+https://github.com/rust-lang/crates.io-index"
2892
- checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
3020
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
2893
3021
 
2894
3022
  [[package]]
2895
3023
  name = "predicates-tree"
2896
- version = "1.0.12"
3024
+ version = "1.0.13"
2897
3025
  source = "registry+https://github.com/rust-lang/crates.io-index"
2898
- checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
3026
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
2899
3027
  dependencies = [
2900
3028
  "predicates-core",
2901
3029
  "termtree",
@@ -2911,6 +3039,16 @@ dependencies = [
2911
3039
  "yansi",
2912
3040
  ]
2913
3041
 
3042
+ [[package]]
3043
+ name = "prettyplease"
3044
+ version = "0.2.37"
3045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3046
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
3047
+ dependencies = [
3048
+ "proc-macro2",
3049
+ "syn",
3050
+ ]
3051
+
2914
3052
  [[package]]
2915
3053
  name = "primeorder"
2916
3054
  version = "0.13.6"
@@ -2922,9 +3060,9 @@ dependencies = [
2922
3060
 
2923
3061
  [[package]]
2924
3062
  name = "proc-macro-crate"
2925
- version = "3.4.0"
3063
+ version = "3.5.0"
2926
3064
  source = "registry+https://github.com/rust-lang/crates.io-index"
2927
- checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
3065
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
2928
3066
  dependencies = [
2929
3067
  "toml_edit",
2930
3068
  ]
@@ -2937,18 +3075,18 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
2937
3075
 
2938
3076
  [[package]]
2939
3077
  name = "proc-macro2"
2940
- version = "1.0.103"
3078
+ version = "1.0.106"
2941
3079
  source = "registry+https://github.com/rust-lang/crates.io-index"
2942
- checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
3080
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2943
3081
  dependencies = [
2944
3082
  "unicode-ident",
2945
3083
  ]
2946
3084
 
2947
3085
  [[package]]
2948
3086
  name = "proptest"
2949
- version = "1.9.0"
3087
+ version = "1.10.0"
2950
3088
  source = "registry+https://github.com/rust-lang/crates.io-index"
2951
- checksum = "bee689443a2bd0a16ab0348b52ee43e3b2d1b1f931c8aa5c9f8de4c86fbe8c40"
3089
+ checksum = "37566cb3fdacef14c0737f9546df7cfeadbfbc9fef10991038bf5015d0c80532"
2952
3090
  dependencies = [
2953
3091
  "bit-set",
2954
3092
  "bit-vec",
@@ -2963,37 +3101,49 @@ dependencies = [
2963
3101
  "unarray",
2964
3102
  ]
2965
3103
 
3104
+ [[package]]
3105
+ name = "psl"
3106
+ version = "2.1.198"
3107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3108
+ checksum = "8cc151a7aba9221a5413baff8677aa98f450621cf7bd45ad17ca81d57a7f26ac"
3109
+ dependencies = [
3110
+ "psl-types",
3111
+ ]
3112
+
3113
+ [[package]]
3114
+ name = "psl-types"
3115
+ version = "2.0.11"
3116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3117
+ checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
3118
+
2966
3119
  [[package]]
2967
3120
  name = "pyo3"
2968
- version = "0.27.2"
3121
+ version = "0.28.2"
2969
3122
  source = "registry+https://github.com/rust-lang/crates.io-index"
2970
- checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
3123
+ checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
2971
3124
  dependencies = [
2972
- "indoc",
2973
3125
  "libc",
2974
- "memoffset",
2975
3126
  "once_cell",
2976
3127
  "portable-atomic",
2977
3128
  "pyo3-build-config",
2978
3129
  "pyo3-ffi",
2979
3130
  "pyo3-macros",
2980
- "unindent",
2981
3131
  ]
2982
3132
 
2983
3133
  [[package]]
2984
3134
  name = "pyo3-build-config"
2985
- version = "0.27.2"
3135
+ version = "0.28.2"
2986
3136
  source = "registry+https://github.com/rust-lang/crates.io-index"
2987
- checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
3137
+ checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
2988
3138
  dependencies = [
2989
3139
  "target-lexicon",
2990
3140
  ]
2991
3141
 
2992
3142
  [[package]]
2993
3143
  name = "pyo3-ffi"
2994
- version = "0.27.2"
3144
+ version = "0.28.2"
2995
3145
  source = "registry+https://github.com/rust-lang/crates.io-index"
2996
- checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
3146
+ checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
2997
3147
  dependencies = [
2998
3148
  "libc",
2999
3149
  "pyo3-build-config",
@@ -3001,9 +3151,9 @@ dependencies = [
3001
3151
 
3002
3152
  [[package]]
3003
3153
  name = "pyo3-macros"
3004
- version = "0.27.2"
3154
+ version = "0.28.2"
3005
3155
  source = "registry+https://github.com/rust-lang/crates.io-index"
3006
- checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
3156
+ checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
3007
3157
  dependencies = [
3008
3158
  "proc-macro2",
3009
3159
  "pyo3-macros-backend",
@@ -3013,9 +3163,9 @@ dependencies = [
3013
3163
 
3014
3164
  [[package]]
3015
3165
  name = "pyo3-macros-backend"
3016
- version = "0.27.2"
3166
+ version = "0.28.2"
3017
3167
  source = "registry+https://github.com/rust-lang/crates.io-index"
3018
- checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
3168
+ checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
3019
3169
  dependencies = [
3020
3170
  "heck",
3021
3171
  "proc-macro2",
@@ -3026,14 +3176,14 @@ dependencies = [
3026
3176
 
3027
3177
  [[package]]
3028
3178
  name = "python-alpm"
3029
- version = "0.4.0"
3179
+ version = "0.4.2"
3030
3180
  dependencies = [
3031
3181
  "alpm-common",
3032
3182
  "alpm-srcinfo",
3033
3183
  "alpm-types",
3034
3184
  "pyo3",
3035
3185
  "semver",
3036
- "strum",
3186
+ "strum 0.28.0",
3037
3187
  ]
3038
3188
 
3039
3189
  [[package]]
@@ -3042,66 +3192,11 @@ version = "1.2.3"
3042
3192
  source = "registry+https://github.com/rust-lang/crates.io-index"
3043
3193
  checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
3044
3194
 
3045
- [[package]]
3046
- name = "quinn"
3047
- version = "0.11.9"
3048
- source = "registry+https://github.com/rust-lang/crates.io-index"
3049
- checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
3050
- dependencies = [
3051
- "bytes",
3052
- "cfg_aliases",
3053
- "pin-project-lite",
3054
- "quinn-proto",
3055
- "quinn-udp",
3056
- "rustc-hash",
3057
- "rustls",
3058
- "socket2",
3059
- "thiserror",
3060
- "tokio",
3061
- "tracing",
3062
- "web-time",
3063
- ]
3064
-
3065
- [[package]]
3066
- name = "quinn-proto"
3067
- version = "0.11.13"
3068
- source = "registry+https://github.com/rust-lang/crates.io-index"
3069
- checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
3070
- dependencies = [
3071
- "bytes",
3072
- "getrandom 0.3.4",
3073
- "lru-slab",
3074
- "rand 0.9.2",
3075
- "ring",
3076
- "rustc-hash",
3077
- "rustls",
3078
- "rustls-pki-types",
3079
- "slab",
3080
- "thiserror",
3081
- "tinyvec",
3082
- "tracing",
3083
- "web-time",
3084
- ]
3085
-
3086
- [[package]]
3087
- name = "quinn-udp"
3088
- version = "0.5.14"
3089
- source = "registry+https://github.com/rust-lang/crates.io-index"
3090
- checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
3091
- dependencies = [
3092
- "cfg_aliases",
3093
- "libc",
3094
- "once_cell",
3095
- "socket2",
3096
- "tracing",
3097
- "windows-sys 0.60.2",
3098
- ]
3099
-
3100
3195
  [[package]]
3101
3196
  name = "quote"
3102
- version = "1.0.42"
3197
+ version = "1.0.45"
3103
3198
  source = "registry+https://github.com/rust-lang/crates.io-index"
3104
- checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
3199
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
3105
3200
  dependencies = [
3106
3201
  "proc-macro2",
3107
3202
  ]
@@ -3112,6 +3207,12 @@ version = "5.3.0"
3112
3207
  source = "registry+https://github.com/rust-lang/crates.io-index"
3113
3208
  checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
3114
3209
 
3210
+ [[package]]
3211
+ name = "r-efi"
3212
+ version = "6.0.0"
3213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3214
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
3215
+
3115
3216
  [[package]]
3116
3217
  name = "radium"
3117
3218
  version = "0.7.0"
@@ -3136,7 +3237,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3136
3237
  checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
3137
3238
  dependencies = [
3138
3239
  "rand_chacha 0.9.0",
3139
- "rand_core 0.9.3",
3240
+ "rand_core 0.9.5",
3140
3241
  ]
3141
3242
 
3142
3243
  [[package]]
@@ -3156,7 +3257,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3156
3257
  checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
3157
3258
  dependencies = [
3158
3259
  "ppv-lite86",
3159
- "rand_core 0.9.3",
3260
+ "rand_core 0.9.5",
3160
3261
  ]
3161
3262
 
3162
3263
  [[package]]
@@ -3165,14 +3266,14 @@ version = "0.6.4"
3165
3266
  source = "registry+https://github.com/rust-lang/crates.io-index"
3166
3267
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
3167
3268
  dependencies = [
3168
- "getrandom 0.2.16",
3269
+ "getrandom 0.2.17",
3169
3270
  ]
3170
3271
 
3171
3272
  [[package]]
3172
3273
  name = "rand_core"
3173
- version = "0.9.3"
3274
+ version = "0.9.5"
3174
3275
  source = "registry+https://github.com/rust-lang/crates.io-index"
3175
- checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
3276
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
3176
3277
  dependencies = [
3177
3278
  "getrandom 0.3.4",
3178
3279
  ]
@@ -3183,7 +3284,7 @@ version = "0.4.0"
3183
3284
  source = "registry+https://github.com/rust-lang/crates.io-index"
3184
3285
  checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
3185
3286
  dependencies = [
3186
- "rand_core 0.9.3",
3287
+ "rand_core 0.9.5",
3187
3288
  ]
3188
3289
 
3189
3290
  [[package]]
@@ -3208,9 +3309,9 @@ dependencies = [
3208
3309
 
3209
3310
  [[package]]
3210
3311
  name = "redox_syscall"
3211
- version = "0.6.0"
3312
+ version = "0.7.3"
3212
3313
  source = "registry+https://github.com/rust-lang/crates.io-index"
3213
- checksum = "ec96166dafa0886eb81fe1c0a388bece180fbef2135f97c1e2cf8302e74b43b5"
3314
+ checksum = "6ce70a74e890531977d37e532c34d45e9055d2409ed08ddba14529471ed0be16"
3214
3315
  dependencies = [
3215
3316
  "bitflags",
3216
3317
  ]
@@ -3221,7 +3322,7 @@ version = "0.5.2"
3221
3322
  source = "registry+https://github.com/rust-lang/crates.io-index"
3222
3323
  checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
3223
3324
  dependencies = [
3224
- "getrandom 0.2.16",
3325
+ "getrandom 0.2.17",
3225
3326
  "libredox",
3226
3327
  "thiserror",
3227
3328
  ]
@@ -3248,9 +3349,9 @@ dependencies = [
3248
3349
 
3249
3350
  [[package]]
3250
3351
  name = "regex"
3251
- version = "1.12.2"
3352
+ version = "1.12.3"
3252
3353
  source = "registry+https://github.com/rust-lang/crates.io-index"
3253
- checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
3354
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
3254
3355
  dependencies = [
3255
3356
  "aho-corasick",
3256
3357
  "memchr",
@@ -3260,9 +3361,9 @@ dependencies = [
3260
3361
 
3261
3362
  [[package]]
3262
3363
  name = "regex-automata"
3263
- version = "0.4.13"
3364
+ version = "0.4.14"
3264
3365
  source = "registry+https://github.com/rust-lang/crates.io-index"
3265
- checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
3366
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
3266
3367
  dependencies = [
3267
3368
  "aho-corasick",
3268
3369
  "memchr",
@@ -3271,9 +3372,9 @@ dependencies = [
3271
3372
 
3272
3373
  [[package]]
3273
3374
  name = "regex-syntax"
3274
- version = "0.8.8"
3375
+ version = "0.8.10"
3275
3376
  source = "registry+https://github.com/rust-lang/crates.io-index"
3276
- checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
3377
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
3277
3378
 
3278
3379
  [[package]]
3279
3380
  name = "relative-path"
@@ -3289,9 +3390,9 @@ checksum = "51743d3e274e2b18df81c4dc6caf8a5b8e15dbe799e0dca05c7617380094e884"
3289
3390
 
3290
3391
  [[package]]
3291
3392
  name = "reqwest"
3292
- version = "0.12.26"
3393
+ version = "0.13.2"
3293
3394
  source = "registry+https://github.com/rust-lang/crates.io-index"
3294
- checksum = "3b4c14b2d9afca6a60277086b0cc6a6ae0b568f6f7916c943a8cdc79f8be240f"
3395
+ checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801"
3295
3396
  dependencies = [
3296
3397
  "base64",
3297
3398
  "bytes",
@@ -3311,15 +3412,10 @@ dependencies = [
3311
3412
  "mime",
3312
3413
  "percent-encoding",
3313
3414
  "pin-project-lite",
3314
- "quinn",
3315
- "rustls",
3316
- "rustls-pki-types",
3317
3415
  "serde",
3318
3416
  "serde_json",
3319
- "serde_urlencoded",
3320
3417
  "sync_wrapper",
3321
3418
  "tokio",
3322
- "tokio-rustls",
3323
3419
  "tower",
3324
3420
  "tower-http",
3325
3421
  "tower-service",
@@ -3327,7 +3423,6 @@ dependencies = [
3327
3423
  "wasm-bindgen",
3328
3424
  "wasm-bindgen-futures",
3329
3425
  "web-sys",
3330
- "webpki-roots",
3331
3426
  ]
3332
3427
 
3333
3428
  [[package]]
@@ -3348,7 +3443,7 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
3348
3443
  dependencies = [
3349
3444
  "cc",
3350
3445
  "cfg-if",
3351
- "getrandom 0.2.16",
3446
+ "getrandom 0.2.17",
3352
3447
  "libc",
3353
3448
  "untrusted",
3354
3449
  "windows-sys 0.52.0",
@@ -3365,9 +3460,9 @@ dependencies = [
3365
3460
 
3366
3461
  [[package]]
3367
3462
  name = "rpgpie"
3368
- version = "0.8.1"
3463
+ version = "0.8.2"
3369
3464
  source = "registry+https://github.com/rust-lang/crates.io-index"
3370
- checksum = "742ec6ed647d969a26b009bd4199d8ce763c0ac3a04e79cc608bd09ed7b0aeb9"
3465
+ checksum = "2c9b462402b484f3127dcb91186f85170fd79a363bc84c55d765de837e0c8ee1"
3371
3466
  dependencies = [
3372
3467
  "chrono",
3373
3468
  "hex",
@@ -3384,9 +3479,9 @@ dependencies = [
3384
3479
 
3385
3480
  [[package]]
3386
3481
  name = "rsa"
3387
- version = "0.9.9"
3482
+ version = "0.9.10"
3388
3483
  source = "registry+https://github.com/rust-lang/crates.io-index"
3389
- checksum = "40a0376c50d0358279d9d643e4bf7b7be212f1f4ff1da9070a7b54d22ef75c88"
3484
+ checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
3390
3485
  dependencies = [
3391
3486
  "const-oid",
3392
3487
  "digest",
@@ -3448,9 +3543,9 @@ dependencies = [
3448
3543
 
3449
3544
  [[package]]
3450
3545
  name = "rustix"
3451
- version = "1.1.2"
3546
+ version = "1.1.4"
3452
3547
  source = "registry+https://github.com/rust-lang/crates.io-index"
3453
- checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
3548
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
3454
3549
  dependencies = [
3455
3550
  "bitflags",
3456
3551
  "errno",
@@ -3461,12 +3556,11 @@ dependencies = [
3461
3556
 
3462
3557
  [[package]]
3463
3558
  name = "rustls"
3464
- version = "0.23.35"
3559
+ version = "0.23.37"
3465
3560
  source = "registry+https://github.com/rust-lang/crates.io-index"
3466
- checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
3561
+ checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
3467
3562
  dependencies = [
3468
3563
  "once_cell",
3469
- "ring",
3470
3564
  "rustls-pki-types",
3471
3565
  "rustls-webpki",
3472
3566
  "subtle",
@@ -3475,19 +3569,18 @@ dependencies = [
3475
3569
 
3476
3570
  [[package]]
3477
3571
  name = "rustls-pki-types"
3478
- version = "1.13.2"
3572
+ version = "1.14.0"
3479
3573
  source = "registry+https://github.com/rust-lang/crates.io-index"
3480
- checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282"
3574
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
3481
3575
  dependencies = [
3482
- "web-time",
3483
3576
  "zeroize",
3484
3577
  ]
3485
3578
 
3486
3579
  [[package]]
3487
3580
  name = "rustls-webpki"
3488
- version = "0.103.8"
3581
+ version = "0.103.9"
3489
3582
  source = "registry+https://github.com/rust-lang/crates.io-index"
3490
- checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
3583
+ checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
3491
3584
  dependencies = [
3492
3585
  "ring",
3493
3586
  "rustls-pki-types",
@@ -3514,9 +3607,9 @@ dependencies = [
3514
3607
 
3515
3608
  [[package]]
3516
3609
  name = "ryu"
3517
- version = "1.0.20"
3610
+ version = "1.0.23"
3518
3611
  source = "registry+https://github.com/rust-lang/crates.io-index"
3519
- checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
3612
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
3520
3613
 
3521
3614
  [[package]]
3522
3615
  name = "same-file"
@@ -3527,6 +3620,16 @@ dependencies = [
3527
3620
  "winapi-util",
3528
3621
  ]
3529
3622
 
3623
+ [[package]]
3624
+ name = "saphyr-parser"
3625
+ version = "0.0.6"
3626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3627
+ checksum = "4fb771b59f6b1985d1406325ec28f97cfb14256abcec4fdfb37b36a1766d6af7"
3628
+ dependencies = [
3629
+ "arraydeque",
3630
+ "hashlink",
3631
+ ]
3632
+
3530
3633
  [[package]]
3531
3634
  name = "schemars"
3532
3635
  version = "0.9.0"
@@ -3541,9 +3644,9 @@ dependencies = [
3541
3644
 
3542
3645
  [[package]]
3543
3646
  name = "schemars"
3544
- version = "1.1.0"
3647
+ version = "1.2.1"
3545
3648
  source = "registry+https://github.com/rust-lang/crates.io-index"
3546
- checksum = "9558e172d4e8533736ba97870c4b2cd63f84b382a3d6eb063da41b91cce17289"
3649
+ checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
3547
3650
  dependencies = [
3548
3651
  "dyn-clone",
3549
3652
  "ref-cast",
@@ -3594,9 +3697,9 @@ dependencies = [
3594
3697
 
3595
3698
  [[package]]
3596
3699
  name = "self_cell"
3597
- version = "1.2.1"
3700
+ version = "1.2.2"
3598
3701
  source = "registry+https://github.com/rust-lang/crates.io-index"
3599
- checksum = "16c2f82143577edb4921b71ede051dac62ca3c16084e918bf7b40c96ae10eb33"
3702
+ checksum = "b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89"
3600
3703
 
3601
3704
  [[package]]
3602
3705
  name = "semver"
@@ -3614,6 +3717,24 @@ dependencies = [
3614
3717
  "serde_derive",
3615
3718
  ]
3616
3719
 
3720
+ [[package]]
3721
+ name = "serde-saphyr"
3722
+ version = "0.0.10"
3723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3724
+ checksum = "9b9e06cddad47cc6214c0c456cf209b99a58b54223e7af2f6d4b88a5a9968499"
3725
+ dependencies = [
3726
+ "ahash",
3727
+ "base64",
3728
+ "encoding_rs_io",
3729
+ "nohash-hasher",
3730
+ "num-traits",
3731
+ "ryu",
3732
+ "saphyr-parser",
3733
+ "serde",
3734
+ "serde_json",
3735
+ "smallvec 2.0.0-alpha.12",
3736
+ ]
3737
+
3617
3738
  [[package]]
3618
3739
  name = "serde_core"
3619
3740
  version = "1.0.228"
@@ -3636,15 +3757,15 @@ dependencies = [
3636
3757
 
3637
3758
  [[package]]
3638
3759
  name = "serde_json"
3639
- version = "1.0.145"
3760
+ version = "1.0.149"
3640
3761
  source = "registry+https://github.com/rust-lang/crates.io-index"
3641
- checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
3762
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
3642
3763
  dependencies = [
3643
3764
  "itoa",
3644
3765
  "memchr",
3645
- "ryu",
3646
3766
  "serde",
3647
3767
  "serde_core",
3768
+ "zmij",
3648
3769
  ]
3649
3770
 
3650
3771
  [[package]]
@@ -3677,31 +3798,19 @@ dependencies = [
3677
3798
  "serde_core",
3678
3799
  ]
3679
3800
 
3680
- [[package]]
3681
- name = "serde_urlencoded"
3682
- version = "0.7.1"
3683
- source = "registry+https://github.com/rust-lang/crates.io-index"
3684
- checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3685
- dependencies = [
3686
- "form_urlencoded",
3687
- "itoa",
3688
- "ryu",
3689
- "serde",
3690
- ]
3691
-
3692
3801
  [[package]]
3693
3802
  name = "serde_with"
3694
- version = "3.16.1"
3803
+ version = "3.17.0"
3695
3804
  source = "registry+https://github.com/rust-lang/crates.io-index"
3696
- checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7"
3805
+ checksum = "381b283ce7bc6b476d903296fb59d0d36633652b633b27f64db4fb46dcbfc3b9"
3697
3806
  dependencies = [
3698
3807
  "base64",
3699
3808
  "chrono",
3700
3809
  "hex",
3701
3810
  "indexmap 1.9.3",
3702
- "indexmap 2.12.1",
3811
+ "indexmap 2.13.0",
3703
3812
  "schemars 0.9.0",
3704
- "schemars 1.1.0",
3813
+ "schemars 1.2.1",
3705
3814
  "serde_core",
3706
3815
  "serde_json",
3707
3816
  "serde_with_macros",
@@ -3710,9 +3819,9 @@ dependencies = [
3710
3819
 
3711
3820
  [[package]]
3712
3821
  name = "serde_with_macros"
3713
- version = "3.16.1"
3822
+ version = "3.17.0"
3714
3823
  source = "registry+https://github.com/rust-lang/crates.io-index"
3715
- checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c"
3824
+ checksum = "a6d4e30573c8cb306ed6ab1dca8423eec9a463ea0e155f45399455e0368b27e0"
3716
3825
  dependencies = [
3717
3826
  "darling 0.21.3",
3718
3827
  "proc-macro2",
@@ -3824,15 +3933,15 @@ dependencies = [
3824
3933
 
3825
3934
  [[package]]
3826
3935
  name = "siphasher"
3827
- version = "1.0.1"
3936
+ version = "1.0.2"
3828
3937
  source = "registry+https://github.com/rust-lang/crates.io-index"
3829
- checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
3938
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
3830
3939
 
3831
3940
  [[package]]
3832
3941
  name = "slab"
3833
- version = "0.4.11"
3942
+ version = "0.4.12"
3834
3943
  source = "registry+https://github.com/rust-lang/crates.io-index"
3835
- checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
3944
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
3836
3945
 
3837
3946
  [[package]]
3838
3947
  name = "smallvec"
@@ -3840,6 +3949,12 @@ version = "1.15.1"
3840
3949
  source = "registry+https://github.com/rust-lang/crates.io-index"
3841
3950
  checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3842
3951
 
3952
+ [[package]]
3953
+ name = "smallvec"
3954
+ version = "2.0.0-alpha.12"
3955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3956
+ checksum = "ef784004ca8777809dcdad6ac37629f0a97caee4c685fcea805278d81dd8b857"
3957
+
3843
3958
  [[package]]
3844
3959
  name = "snafu"
3845
3960
  version = "0.8.9"
@@ -3863,21 +3978,21 @@ dependencies = [
3863
3978
 
3864
3979
  [[package]]
3865
3980
  name = "socket2"
3866
- version = "0.6.1"
3981
+ version = "0.6.3"
3867
3982
  source = "registry+https://github.com/rust-lang/crates.io-index"
3868
- checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
3983
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
3869
3984
  dependencies = [
3870
3985
  "libc",
3871
- "windows-sys 0.60.2",
3986
+ "windows-sys 0.61.2",
3872
3987
  ]
3873
3988
 
3874
3989
  [[package]]
3875
3990
  name = "spdx"
3876
- version = "0.13.3"
3991
+ version = "0.13.4"
3877
3992
  source = "registry+https://github.com/rust-lang/crates.io-index"
3878
- checksum = "afd765179d12cdd06192e02b1d8c6b0d46bd26de9bf16ce04c881428ca2cc7ed"
3993
+ checksum = "a8da593e30beb790fc9424502eb898320b44e5eb30367dbda1c1edde8e2f32d7"
3879
3994
  dependencies = [
3880
- "smallvec",
3995
+ "smallvec 1.15.1",
3881
3996
  ]
3882
3997
 
3883
3998
  [[package]]
@@ -3911,6 +4026,12 @@ version = "1.2.1"
3911
4026
  source = "registry+https://github.com/rust-lang/crates.io-index"
3912
4027
  checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3913
4028
 
4029
+ [[package]]
4030
+ name = "static_assertions"
4031
+ version = "1.1.0"
4032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4033
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
4034
+
3914
4035
  [[package]]
3915
4036
  name = "strsim"
3916
4037
  version = "0.11.1"
@@ -3923,7 +4044,16 @@ version = "0.27.2"
3923
4044
  source = "registry+https://github.com/rust-lang/crates.io-index"
3924
4045
  checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
3925
4046
  dependencies = [
3926
- "strum_macros",
4047
+ "strum_macros 0.27.2",
4048
+ ]
4049
+
4050
+ [[package]]
4051
+ name = "strum"
4052
+ version = "0.28.0"
4053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4054
+ checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
4055
+ dependencies = [
4056
+ "strum_macros 0.28.0",
3927
4057
  ]
3928
4058
 
3929
4059
  [[package]]
@@ -3938,6 +4068,18 @@ dependencies = [
3938
4068
  "syn",
3939
4069
  ]
3940
4070
 
4071
+ [[package]]
4072
+ name = "strum_macros"
4073
+ version = "0.28.0"
4074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4075
+ checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
4076
+ dependencies = [
4077
+ "heck",
4078
+ "proc-macro2",
4079
+ "quote",
4080
+ "syn",
4081
+ ]
4082
+
3941
4083
  [[package]]
3942
4084
  name = "subtle"
3943
4085
  version = "2.6.1"
@@ -3946,9 +4088,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3946
4088
 
3947
4089
  [[package]]
3948
4090
  name = "syn"
3949
- version = "2.0.111"
4091
+ version = "2.0.117"
3950
4092
  source = "registry+https://github.com/rust-lang/crates.io-index"
3951
- checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
4093
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
3952
4094
  dependencies = [
3953
4095
  "proc-macro2",
3954
4096
  "quote",
@@ -4003,18 +4145,18 @@ dependencies = [
4003
4145
 
4004
4146
  [[package]]
4005
4147
  name = "target-lexicon"
4006
- version = "0.13.3"
4148
+ version = "0.13.5"
4007
4149
  source = "registry+https://github.com/rust-lang/crates.io-index"
4008
- checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
4150
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
4009
4151
 
4010
4152
  [[package]]
4011
4153
  name = "tempfile"
4012
- version = "3.23.0"
4154
+ version = "3.27.0"
4013
4155
  source = "registry+https://github.com/rust-lang/crates.io-index"
4014
- checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
4156
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
4015
4157
  dependencies = [
4016
4158
  "fastrand",
4017
- "getrandom 0.3.4",
4159
+ "getrandom 0.4.2",
4018
4160
  "once_cell",
4019
4161
  "rustix",
4020
4162
  "windows-sys 0.61.2",
@@ -4053,18 +4195,18 @@ checksum = "614b328ff036a4ef882c61570f72918f7e9c5bee1da33f8e7f91e01daee7e56c"
4053
4195
 
4054
4196
  [[package]]
4055
4197
  name = "thiserror"
4056
- version = "2.0.17"
4198
+ version = "2.0.18"
4057
4199
  source = "registry+https://github.com/rust-lang/crates.io-index"
4058
- checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
4200
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
4059
4201
  dependencies = [
4060
4202
  "thiserror-impl",
4061
4203
  ]
4062
4204
 
4063
4205
  [[package]]
4064
4206
  name = "thiserror-impl"
4065
- version = "2.0.17"
4207
+ version = "2.0.18"
4066
4208
  source = "registry+https://github.com/rust-lang/crates.io-index"
4067
- checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
4209
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
4068
4210
  dependencies = [
4069
4211
  "proc-macro2",
4070
4212
  "quote",
@@ -4073,9 +4215,9 @@ dependencies = [
4073
4215
 
4074
4216
  [[package]]
4075
4217
  name = "time"
4076
- version = "0.3.44"
4218
+ version = "0.3.47"
4077
4219
  source = "registry+https://github.com/rust-lang/crates.io-index"
4078
- checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
4220
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
4079
4221
  dependencies = [
4080
4222
  "deranged",
4081
4223
  "itoa",
@@ -4083,22 +4225,22 @@ dependencies = [
4083
4225
  "num-conv",
4084
4226
  "num_threads",
4085
4227
  "powerfmt",
4086
- "serde",
4228
+ "serde_core",
4087
4229
  "time-core",
4088
4230
  "time-macros",
4089
4231
  ]
4090
4232
 
4091
4233
  [[package]]
4092
4234
  name = "time-core"
4093
- version = "0.1.6"
4235
+ version = "0.1.8"
4094
4236
  source = "registry+https://github.com/rust-lang/crates.io-index"
4095
- checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
4237
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
4096
4238
 
4097
4239
  [[package]]
4098
4240
  name = "time-macros"
4099
- version = "0.2.24"
4241
+ version = "0.2.27"
4100
4242
  source = "registry+https://github.com/rust-lang/crates.io-index"
4101
- checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
4243
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
4102
4244
  dependencies = [
4103
4245
  "num-conv",
4104
4246
  "time-core",
@@ -4115,26 +4257,11 @@ dependencies = [
4115
4257
  "zerovec",
4116
4258
  ]
4117
4259
 
4118
- [[package]]
4119
- name = "tinyvec"
4120
- version = "1.10.0"
4121
- source = "registry+https://github.com/rust-lang/crates.io-index"
4122
- checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
4123
- dependencies = [
4124
- "tinyvec_macros",
4125
- ]
4126
-
4127
- [[package]]
4128
- name = "tinyvec_macros"
4129
- version = "0.1.1"
4130
- source = "registry+https://github.com/rust-lang/crates.io-index"
4131
- checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
4132
-
4133
4260
  [[package]]
4134
4261
  name = "tokio"
4135
- version = "1.48.0"
4262
+ version = "1.50.0"
4136
4263
  source = "registry+https://github.com/rust-lang/crates.io-index"
4137
- checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
4264
+ checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
4138
4265
  dependencies = [
4139
4266
  "bytes",
4140
4267
  "libc",
@@ -4156,9 +4283,9 @@ dependencies = [
4156
4283
 
4157
4284
  [[package]]
4158
4285
  name = "tokio-util"
4159
- version = "0.7.17"
4286
+ version = "0.7.18"
4160
4287
  source = "registry+https://github.com/rust-lang/crates.io-index"
4161
- checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594"
4288
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
4162
4289
  dependencies = [
4163
4290
  "bytes",
4164
4291
  "futures-core",
@@ -4169,11 +4296,11 @@ dependencies = [
4169
4296
 
4170
4297
  [[package]]
4171
4298
  name = "toml"
4172
- version = "0.9.9+spec-1.0.0"
4299
+ version = "1.0.6+spec-1.1.0"
4173
4300
  source = "registry+https://github.com/rust-lang/crates.io-index"
4174
- checksum = "eb5238e643fc34a1d5d7e753e1532a91912d74b63b92b3ea51fde8d1b7bc79dd"
4301
+ checksum = "399b1124a3c9e16766831c6bba21e50192572cdd98706ea114f9502509686ffc"
4175
4302
  dependencies = [
4176
- "indexmap 2.12.1",
4303
+ "indexmap 2.13.0",
4177
4304
  "serde_core",
4178
4305
  "serde_spanned",
4179
4306
  "toml_datetime",
@@ -4184,20 +4311,20 @@ dependencies = [
4184
4311
 
4185
4312
  [[package]]
4186
4313
  name = "toml_datetime"
4187
- version = "0.7.4+spec-1.0.0"
4314
+ version = "1.0.0+spec-1.1.0"
4188
4315
  source = "registry+https://github.com/rust-lang/crates.io-index"
4189
- checksum = "fe3cea6b2aa3b910092f6abd4053ea464fab5f9c170ba5e9a6aead16ec4af2b6"
4316
+ checksum = "32c2555c699578a4f59f0cc68e5116c8d7cabbd45e1409b989d4be085b53f13e"
4190
4317
  dependencies = [
4191
4318
  "serde_core",
4192
4319
  ]
4193
4320
 
4194
4321
  [[package]]
4195
4322
  name = "toml_edit"
4196
- version = "0.23.10+spec-1.0.0"
4323
+ version = "0.25.4+spec-1.1.0"
4197
4324
  source = "registry+https://github.com/rust-lang/crates.io-index"
4198
- checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
4325
+ checksum = "7193cbd0ce53dc966037f54351dbbcf0d5a642c7f0038c382ef9e677ce8c13f2"
4199
4326
  dependencies = [
4200
- "indexmap 2.12.1",
4327
+ "indexmap 2.13.0",
4201
4328
  "toml_datetime",
4202
4329
  "toml_parser",
4203
4330
  "winnow",
@@ -4205,24 +4332,24 @@ dependencies = [
4205
4332
 
4206
4333
  [[package]]
4207
4334
  name = "toml_parser"
4208
- version = "1.0.5+spec-1.0.0"
4335
+ version = "1.0.9+spec-1.1.0"
4209
4336
  source = "registry+https://github.com/rust-lang/crates.io-index"
4210
- checksum = "4c03bee5ce3696f31250db0bbaff18bc43301ce0e8db2ed1f07cbb2acf89984c"
4337
+ checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4"
4211
4338
  dependencies = [
4212
4339
  "winnow",
4213
4340
  ]
4214
4341
 
4215
4342
  [[package]]
4216
4343
  name = "toml_writer"
4217
- version = "1.0.5+spec-1.0.0"
4344
+ version = "1.0.6+spec-1.1.0"
4218
4345
  source = "registry+https://github.com/rust-lang/crates.io-index"
4219
- checksum = "a9cd6190959dce0994aa8970cd32ab116d1851ead27e866039acaf2524ce44fa"
4346
+ checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
4220
4347
 
4221
4348
  [[package]]
4222
4349
  name = "tower"
4223
- version = "0.5.2"
4350
+ version = "0.5.3"
4224
4351
  source = "registry+https://github.com/rust-lang/crates.io-index"
4225
- checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
4352
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
4226
4353
  dependencies = [
4227
4354
  "futures-core",
4228
4355
  "futures-util",
@@ -4265,9 +4392,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
4265
4392
 
4266
4393
  [[package]]
4267
4394
  name = "tracing"
4268
- version = "0.1.43"
4395
+ version = "0.1.44"
4269
4396
  source = "registry+https://github.com/rust-lang/crates.io-index"
4270
- checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647"
4397
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
4271
4398
  dependencies = [
4272
4399
  "pin-project-lite",
4273
4400
  "tracing-core",
@@ -4275,9 +4402,9 @@ dependencies = [
4275
4402
 
4276
4403
  [[package]]
4277
4404
  name = "tracing-core"
4278
- version = "0.1.35"
4405
+ version = "0.1.36"
4279
4406
  source = "registry+https://github.com/rust-lang/crates.io-index"
4280
- checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c"
4407
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
4281
4408
  dependencies = [
4282
4409
  "once_cell",
4283
4410
  ]
@@ -4363,9 +4490,9 @@ dependencies = [
4363
4490
 
4364
4491
  [[package]]
4365
4492
  name = "unicode-ident"
4366
- version = "1.0.22"
4493
+ version = "1.0.24"
4367
4494
  source = "registry+https://github.com/rust-lang/crates.io-index"
4368
- checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
4495
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
4369
4496
 
4370
4497
  [[package]]
4371
4498
  name = "unicode-segmentation"
@@ -4385,12 +4512,6 @@ version = "0.2.6"
4385
4512
  source = "registry+https://github.com/rust-lang/crates.io-index"
4386
4513
  checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
4387
4514
 
4388
- [[package]]
4389
- name = "unindent"
4390
- version = "0.2.4"
4391
- source = "registry+https://github.com/rust-lang/crates.io-index"
4392
- checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
4393
-
4394
4515
  [[package]]
4395
4516
  name = "unit-prefix"
4396
4517
  version = "0.5.2"
@@ -4415,14 +4536,15 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
4415
4536
 
4416
4537
  [[package]]
4417
4538
  name = "url"
4418
- version = "2.5.7"
4539
+ version = "2.5.8"
4419
4540
  source = "registry+https://github.com/rust-lang/crates.io-index"
4420
- checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
4541
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
4421
4542
  dependencies = [
4422
4543
  "form_urlencoded",
4423
4544
  "idna",
4424
4545
  "percent-encoding",
4425
4546
  "serde",
4547
+ "serde_derive",
4426
4548
  ]
4427
4549
 
4428
4550
  [[package]]
@@ -4445,27 +4567,48 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
4445
4567
 
4446
4568
  [[package]]
4447
4569
  name = "voa"
4448
- version = "0.5.0"
4570
+ version = "0.7.0"
4449
4571
  source = "registry+https://github.com/rust-lang/crates.io-index"
4450
- checksum = "6ea7daef31f677b79982a7c986dc1cda887dafeb9b4e2c367e3251bd8b20397c"
4572
+ checksum = "4a2ddf6dd65894ac03753772b18fb92daf3e42bdc3f448a2ec29b52b81fcd3f0"
4451
4573
  dependencies = [
4452
4574
  "log",
4453
- "strum",
4575
+ "strum 0.27.2",
4454
4576
  "thiserror",
4577
+ "voa-config",
4455
4578
  "voa-core",
4456
4579
  "voa-openpgp",
4457
4580
  ]
4458
4581
 
4582
+ [[package]]
4583
+ name = "voa-config"
4584
+ version = "0.1.1"
4585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4586
+ checksum = "929b55bf23d7a6ef4fb22af875b4d69461e7b09649aed4edd35b818f498f7b6e"
4587
+ dependencies = [
4588
+ "addr",
4589
+ "const-hex",
4590
+ "directories",
4591
+ "garde",
4592
+ "libc",
4593
+ "log",
4594
+ "serde",
4595
+ "serde-saphyr",
4596
+ "thiserror",
4597
+ "voa-core",
4598
+ "xdg",
4599
+ ]
4600
+
4459
4601
  [[package]]
4460
4602
  name = "voa-core"
4461
- version = "0.3.0"
4603
+ version = "0.3.2"
4462
4604
  source = "registry+https://github.com/rust-lang/crates.io-index"
4463
- checksum = "f60ffbf7b0d26f124c83bd27441d60011ec2a118fbc8b7d9987a391dcea77077"
4605
+ checksum = "ba3b68e9628525bfc4cdb93588042659485bda007965f514b5ed8181f4a38d87"
4464
4606
  dependencies = [
4465
4607
  "directories",
4466
4608
  "libc",
4467
4609
  "log",
4468
- "strum",
4610
+ "serde",
4611
+ "strum 0.27.2",
4469
4612
  "thiserror",
4470
4613
  "winnow",
4471
4614
  "xdg",
@@ -4473,15 +4616,16 @@ dependencies = [
4473
4616
 
4474
4617
  [[package]]
4475
4618
  name = "voa-openpgp"
4476
- version = "0.5.0"
4619
+ version = "0.6.0"
4477
4620
  source = "registry+https://github.com/rust-lang/crates.io-index"
4478
- checksum = "f449bd0e9f4a343e83b690b69eff1d5539d225c3d04cd6d0c4982189077b5fe6"
4621
+ checksum = "07b964bdd0240d060cb4771a4570479193e4f4fe6b5e80a9d5a084749a81fc55"
4479
4622
  dependencies = [
4480
4623
  "env_logger",
4481
4624
  "log",
4482
4625
  "pgp",
4483
4626
  "rpgpie",
4484
4627
  "thiserror",
4628
+ "voa-config",
4485
4629
  "voa-core",
4486
4630
  ]
4487
4631
 
@@ -4525,14 +4669,23 @@ version = "1.0.1+wasi-0.2.4"
4525
4669
  source = "registry+https://github.com/rust-lang/crates.io-index"
4526
4670
  checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
4527
4671
  dependencies = [
4528
- "wit-bindgen",
4672
+ "wit-bindgen 0.46.0",
4673
+ ]
4674
+
4675
+ [[package]]
4676
+ name = "wasip3"
4677
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
4678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4679
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
4680
+ dependencies = [
4681
+ "wit-bindgen 0.51.0",
4529
4682
  ]
4530
4683
 
4531
4684
  [[package]]
4532
4685
  name = "wasm-bindgen"
4533
- version = "0.2.106"
4686
+ version = "0.2.114"
4534
4687
  source = "registry+https://github.com/rust-lang/crates.io-index"
4535
- checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
4688
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
4536
4689
  dependencies = [
4537
4690
  "cfg-if",
4538
4691
  "once_cell",
@@ -4543,11 +4696,12 @@ dependencies = [
4543
4696
 
4544
4697
  [[package]]
4545
4698
  name = "wasm-bindgen-futures"
4546
- version = "0.4.56"
4699
+ version = "0.4.64"
4547
4700
  source = "registry+https://github.com/rust-lang/crates.io-index"
4548
- checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
4701
+ checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
4549
4702
  dependencies = [
4550
4703
  "cfg-if",
4704
+ "futures-util",
4551
4705
  "js-sys",
4552
4706
  "once_cell",
4553
4707
  "wasm-bindgen",
@@ -4556,9 +4710,9 @@ dependencies = [
4556
4710
 
4557
4711
  [[package]]
4558
4712
  name = "wasm-bindgen-macro"
4559
- version = "0.2.106"
4713
+ version = "0.2.114"
4560
4714
  source = "registry+https://github.com/rust-lang/crates.io-index"
4561
- checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
4715
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
4562
4716
  dependencies = [
4563
4717
  "quote",
4564
4718
  "wasm-bindgen-macro-support",
@@ -4566,9 +4720,9 @@ dependencies = [
4566
4720
 
4567
4721
  [[package]]
4568
4722
  name = "wasm-bindgen-macro-support"
4569
- version = "0.2.106"
4723
+ version = "0.2.114"
4570
4724
  source = "registry+https://github.com/rust-lang/crates.io-index"
4571
- checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
4725
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
4572
4726
  dependencies = [
4573
4727
  "bumpalo",
4574
4728
  "proc-macro2",
@@ -4579,18 +4733,52 @@ dependencies = [
4579
4733
 
4580
4734
  [[package]]
4581
4735
  name = "wasm-bindgen-shared"
4582
- version = "0.2.106"
4736
+ version = "0.2.114"
4583
4737
  source = "registry+https://github.com/rust-lang/crates.io-index"
4584
- checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
4738
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
4585
4739
  dependencies = [
4586
4740
  "unicode-ident",
4587
4741
  ]
4588
4742
 
4743
+ [[package]]
4744
+ name = "wasm-encoder"
4745
+ version = "0.244.0"
4746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4747
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
4748
+ dependencies = [
4749
+ "leb128fmt",
4750
+ "wasmparser",
4751
+ ]
4752
+
4753
+ [[package]]
4754
+ name = "wasm-metadata"
4755
+ version = "0.244.0"
4756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4757
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
4758
+ dependencies = [
4759
+ "anyhow",
4760
+ "indexmap 2.13.0",
4761
+ "wasm-encoder",
4762
+ "wasmparser",
4763
+ ]
4764
+
4765
+ [[package]]
4766
+ name = "wasmparser"
4767
+ version = "0.244.0"
4768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4769
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
4770
+ dependencies = [
4771
+ "bitflags",
4772
+ "hashbrown 0.15.5",
4773
+ "indexmap 2.13.0",
4774
+ "semver",
4775
+ ]
4776
+
4589
4777
  [[package]]
4590
4778
  name = "web-sys"
4591
- version = "0.3.83"
4779
+ version = "0.3.91"
4592
4780
  source = "registry+https://github.com/rust-lang/crates.io-index"
4593
- checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
4781
+ checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
4594
4782
  dependencies = [
4595
4783
  "js-sys",
4596
4784
  "wasm-bindgen",
@@ -4606,24 +4794,13 @@ dependencies = [
4606
4794
  "wasm-bindgen",
4607
4795
  ]
4608
4796
 
4609
- [[package]]
4610
- name = "webpki-roots"
4611
- version = "1.0.4"
4612
- source = "registry+https://github.com/rust-lang/crates.io-index"
4613
- checksum = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e"
4614
- dependencies = [
4615
- "rustls-pki-types",
4616
- ]
4617
-
4618
4797
  [[package]]
4619
4798
  name = "which"
4620
- version = "8.0.0"
4799
+ version = "8.0.2"
4621
4800
  source = "registry+https://github.com/rust-lang/crates.io-index"
4622
- checksum = "d3fabb953106c3c8eea8306e4393700d7657561cb43122571b172bbfb7c7ba1d"
4801
+ checksum = "81995fafaaaf6ae47a7d0cc83c67caf92aeb7e5331650ae6ff856f7c0c60c459"
4623
4802
  dependencies = [
4624
- "env_home",
4625
- "rustix",
4626
- "winsafe",
4803
+ "libc",
4627
4804
  ]
4628
4805
 
4629
4806
  [[package]]
@@ -4861,11 +5038,11 @@ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4861
5038
 
4862
5039
  [[package]]
4863
5040
  name = "winnow"
4864
- version = "0.7.14"
5041
+ version = "0.7.15"
4865
5042
  source = "registry+https://github.com/rust-lang/crates.io-index"
4866
- checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
5043
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
4867
5044
  dependencies = [
4868
- "anstream",
5045
+ "anstream 0.6.21",
4869
5046
  "anstyle",
4870
5047
  "is_terminal_polyfill",
4871
5048
  "memchr",
@@ -4873,16 +5050,98 @@ dependencies = [
4873
5050
  ]
4874
5051
 
4875
5052
  [[package]]
4876
- name = "winsafe"
4877
- version = "0.0.19"
5053
+ name = "wit-bindgen"
5054
+ version = "0.46.0"
4878
5055
  source = "registry+https://github.com/rust-lang/crates.io-index"
4879
- checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904"
5056
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
4880
5057
 
4881
5058
  [[package]]
4882
5059
  name = "wit-bindgen"
4883
- version = "0.46.0"
5060
+ version = "0.51.0"
4884
5061
  source = "registry+https://github.com/rust-lang/crates.io-index"
4885
- checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
5062
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
5063
+ dependencies = [
5064
+ "wit-bindgen-rust-macro",
5065
+ ]
5066
+
5067
+ [[package]]
5068
+ name = "wit-bindgen-core"
5069
+ version = "0.51.0"
5070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5071
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
5072
+ dependencies = [
5073
+ "anyhow",
5074
+ "heck",
5075
+ "wit-parser",
5076
+ ]
5077
+
5078
+ [[package]]
5079
+ name = "wit-bindgen-rust"
5080
+ version = "0.51.0"
5081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5082
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
5083
+ dependencies = [
5084
+ "anyhow",
5085
+ "heck",
5086
+ "indexmap 2.13.0",
5087
+ "prettyplease",
5088
+ "syn",
5089
+ "wasm-metadata",
5090
+ "wit-bindgen-core",
5091
+ "wit-component",
5092
+ ]
5093
+
5094
+ [[package]]
5095
+ name = "wit-bindgen-rust-macro"
5096
+ version = "0.51.0"
5097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5098
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
5099
+ dependencies = [
5100
+ "anyhow",
5101
+ "prettyplease",
5102
+ "proc-macro2",
5103
+ "quote",
5104
+ "syn",
5105
+ "wit-bindgen-core",
5106
+ "wit-bindgen-rust",
5107
+ ]
5108
+
5109
+ [[package]]
5110
+ name = "wit-component"
5111
+ version = "0.244.0"
5112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5113
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
5114
+ dependencies = [
5115
+ "anyhow",
5116
+ "bitflags",
5117
+ "indexmap 2.13.0",
5118
+ "log",
5119
+ "serde",
5120
+ "serde_derive",
5121
+ "serde_json",
5122
+ "wasm-encoder",
5123
+ "wasm-metadata",
5124
+ "wasmparser",
5125
+ "wit-parser",
5126
+ ]
5127
+
5128
+ [[package]]
5129
+ name = "wit-parser"
5130
+ version = "0.244.0"
5131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5132
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
5133
+ dependencies = [
5134
+ "anyhow",
5135
+ "id-arena",
5136
+ "indexmap 2.13.0",
5137
+ "log",
5138
+ "semver",
5139
+ "serde",
5140
+ "serde_derive",
5141
+ "serde_json",
5142
+ "unicode-xid",
5143
+ "wasmparser",
5144
+ ]
4886
5145
 
4887
5146
  [[package]]
4888
5147
  name = "writeable"
@@ -4958,18 +5217,18 @@ dependencies = [
4958
5217
 
4959
5218
  [[package]]
4960
5219
  name = "zerocopy"
4961
- version = "0.8.31"
5220
+ version = "0.8.42"
4962
5221
  source = "registry+https://github.com/rust-lang/crates.io-index"
4963
- checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
5222
+ checksum = "f2578b716f8a7a858b7f02d5bd870c14bf4ddbbcf3a4c05414ba6503640505e3"
4964
5223
  dependencies = [
4965
5224
  "zerocopy-derive",
4966
5225
  ]
4967
5226
 
4968
5227
  [[package]]
4969
5228
  name = "zerocopy-derive"
4970
- version = "0.8.31"
5229
+ version = "0.8.42"
4971
5230
  source = "registry+https://github.com/rust-lang/crates.io-index"
4972
- checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
5231
+ checksum = "7e6cc098ea4d3bd6246687de65af3f920c430e236bee1e3bf2e441463f08a02f"
4973
5232
  dependencies = [
4974
5233
  "proc-macro2",
4975
5234
  "quote",
@@ -5008,9 +5267,9 @@ dependencies = [
5008
5267
 
5009
5268
  [[package]]
5010
5269
  name = "zeroize_derive"
5011
- version = "1.4.2"
5270
+ version = "1.4.3"
5012
5271
  source = "registry+https://github.com/rust-lang/crates.io-index"
5013
- checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
5272
+ checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
5014
5273
  dependencies = [
5015
5274
  "proc-macro2",
5016
5275
  "quote",
@@ -5053,9 +5312,15 @@ dependencies = [
5053
5312
 
5054
5313
  [[package]]
5055
5314
  name = "zlib-rs"
5056
- version = "0.5.4"
5315
+ version = "0.6.3"
5316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5317
+ checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
5318
+
5319
+ [[package]]
5320
+ name = "zmij"
5321
+ version = "1.0.21"
5057
5322
  source = "registry+https://github.com/rust-lang/crates.io-index"
5058
- checksum = "51f936044d677be1a1168fae1d03b583a285a5dd9d8cbf7b24c23aa1fc775235"
5323
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
5059
5324
 
5060
5325
  [[package]]
5061
5326
  name = "zstd"